{% extends "base_misc.html" %}
{% block title %}{{ block.super }}{% endblock %}
{% block smallheader %}{{ block.super }}{% endblock %}
{% block largeheader %}Perfdata Analyzer{% endblock %}
{% block nav1 %}{{ block.super }}{% endblock %}
{% block adagios_hausinn %}{{ block.super }}{% endblock %}
{% block content %}
{% if host %}
Host Status:
host_name: |
{{ host.host_name }} |
status: |
{{ host.plugin_output }} |
|
{{ host.long_plugin_output }}
|
{% if service %}
Service Status
service_description |
{{ service_description }} |
status |
{{ service.plugin_output }} |
|
{{ service.long_plugin_output }}
|
Performance Data
{% if perfdata %}
label |
value |
warning |
critical |
unit |
min value |
max value |
status |
{% for i in perfdata %}
{{ i.label }} |
{{ i.value }} |
{{ i.warn }} |
{{ i.crit }} |
{{ i.uom }} |
{{ i.min }} |
{{ i.max }} |
|
{% endfor %}
{% else %}
No Perfdata available.
{% endif %}
{% endif %}
{% endif %}
{% endblock %}
{% block header %} {{ block.super }} {% endblock %}
{% block sidebar %}
{% if services %}
Services
{% for i in services %}
{% if i.current_state == "0" %}
{% endif %}
{% if i.current_state == "1" %}
|
{% endif %}
{% if i.current_state == "2" %}
|
{% endif %}
{% if i.current_state == "3" %}
|
{% endif %}
{{ i.service_description }}
|
{% endfor %}
{% endif %}
See also
{% endblock %}
{% block footer %} {{ block.super }} {% endblock %}