{% 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 object %}
Plugin Output
{{ object.plugin_output }} |
{{ object.long_plugin_output }}
|
{% if results %}
Performance Data
label |
value |
warning |
critical |
unit |
min value |
max value |
status |
{% for i in results %}
{{ i.label }} |
{{ i.value }} |
{{ i.warn }} |
{{ i.crit }} |
{{ i.uom }} |
{{ i.min }} |
{{ i.max }} |
|
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}
{% block header %} {{ block.super }} {% endblock %}
{% block sidebar %}
{% if objects %}
services |
{% for i in objects %}
{% 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.host_name }}/{{ i.service_description }}
|
{% endfor %}
{% endif %}
{% endblock %}
{% block footer %} {{ block.super }} {% endblock %}