{% extends "base_status.html" %}
{% block title %}Edit Check Command{% endblock %}
{% block smallheader %}edit{% endblock %}
{% block largeheader %}Check Command{% endblock %}
{% block nav1 %}misc{% endblock %}
{% block toolbar %}
{% endblock %}
{% block content %}
{% if form %}
{% if form.results %}
Parsed Plugin Output
Click here for a new paste
Plugin Summary |
{{ form.results.summary }} |
Long Output |
{{ form.results.long_output }} |
Parsed Performance Data |
{% if form.results.parsed_perfdata.metrics %}
|
label |
value |
warn |
crit |
unit |
min |
max |
pnp |
{% for i in form.results.parsed_perfdata.metrics %}
|
{{ i.label }} |
{{ i.value }} |
{{ i.warn }} |
{{ i.crit }} |
{{ i.uom }} |
{{ i.min }} |
{{ i.max }} |
|
{% endfor %}
{% else %}
No valid performance data found in this plugin.
{% endif %}
|
Raw Performance Data |
{{ form.results.perfdata }} |
{% else %}
{% endif %}
{% endif %}
{% endblock %}
{% block footer %}
{{ block.super }}
{% endblock %}