{% extends "base.html" %} {% block title %}Agents - MySQL to Sheets Sync{% endblock %} {% block page_title %}Hybrid Agents{% endblock %} {% block page_subtitle %}

Monitor your fleet of sync agents

{% endblock %} {% block content %}
{{ stats.total }}
Total Agents
{{ stats.online + stats.busy }}
Online
{{ stats.offline }}
Offline
{{ stats.jobs_completed }}
Jobs Completed
{{ stats.jobs_failed }}
Jobs Failed

Agent Fleet

{% if agents %} {% for agent in agents %} {% endfor %}
Status Agent ID Hostname Version Jobs Completed Jobs Failed Last Seen Actions
{% if agent.status == 'online' %} Online {% elif agent.status == 'busy' %} Busy {% else %} Offline {% endif %} {{ agent.agent_id }} {{ agent.hostname }} {{ agent.version }} {{ agent.jobs_completed }} {{ agent.jobs_failed }} {% if agent.last_seen_at %} {{ agent.last_seen_at.strftime('%Y-%m-%d %H:%M:%S') if agent.last_seen_at else 'Never' }} {% else %} Never {% endif %} View Details
{% else %}

No Agents Registered

Deploy a Hybrid Agent to sync data from databases within your network.

View Documentation
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}