All General information
- Agent version
- {{ agent_version }}
- Platform
- {{ platform }}
- Python version
- {{ python_version }}
- Logger
- {{ logger_info }}
Collector
- Status date
- {{ collector['status_date'] }}
- Pid
- {{ collector['pid'] }}
- Path to conf.d
- {{ collector['confd_path'] }}
- Path to checks.d
- {{ collector['checksd_path'] }}
Clocks
- NTP offset:
- {{ collector['ntp_offset'] }}
- System UTC time:
- {{ collector['utc_time'] }}
Hostnames
{% if collector['hostnames'] %}
{% for key, host in collector['hostnames'].iteritems() %}
- {{ key }}
- {{ host }}
{% end %}
{% else %}
No host information available yet.
{% end %}
Checks
{% if collector['checks'] %}
{% for name, check in collector['checks'].iteritems() %}
{{ name }}
{% if check['init_failed'] %}
- Initialization error: {{check['traceback']}}
{% else %}
{% for id, instance in check['instances'].iteritems() %}
-
- Instance #{{ id }}
- {{ instance['status'] }}
{% if instance['has_error'] %}
- Error
- {{ instance['error'] }}
{% end %}
{% if instance['has_warnings'] %}
- Warnings
-
{% if len(instance['warnings']) > 1 %}
{% end %}
{% for warning in instance['warnings'] %}
{{warning}}
{% end %}
{% end %}
{% end %}
- Collected {{ check['metric_count'] }} metrics, {{ check['event_count'] }} events and {{ check['service_check_count'] }} service check
{% end %}
{% end %}
{% else %}
No checks have run yet.
{% end %}
Emitter
{% if collector['emitter'] %}
{% for status in collector['emitter'] %}
- {{ status['name'] }}
-
{{ status['status'] }}
{% if status['has_error'] %}
Error: {{ status['error'] }}
{% end %}
{% end %}
{% else %}
No emitters have run yet.
{% end %}
Forwarder
- Status date
- {{ forwarder['status_date'] }}
- Pid
- {{ forwarder['pid'] }}
- Flush count
- {{ forwarder['flush_count'] }}
- Queue size
- {{ forwarder['queue_size'] }} bytes
- Queue length
- {{ forwarder['queue_length'] }}
{% if forwarder['proxy_data'] %}
Proxy
- Host
- {{ forwarder['proxy_data']['host'] }}
- Port
- {{ forwarder['proxy_data']['port'] }}
{% if forwarder.get('hidden_username') %}
- Username
- {{ forwarder['hidden_username'] }}
- Password
- {{ forwarder['hidden_password'] }}
{% end %}
{% end %}
Statsd
- Status date
- {{ statsd['status_date'] }}
- Pid
- {{ statsd['pid'] }}
- Flush count
- {{ statsd['flush_count'] }}
- Packet count
- {{ statsd['packet_count'] }}
- Packets per second
- {{ statsd['packets_per_second'] }}
- Metric count
- {{ statsd['metric_count'] }}
- Event count
- {{ statsd['event_count'] }}