Include client key in disabled probe list email
This commit is contained in:
parent
aa98257448
commit
ab38143039
|
@ -137,6 +137,7 @@ class tempmon_disabled_probes(Email):
|
|||
tempmon.Client(config_key='foo', hostname='foo.example.com'),
|
||||
],
|
||||
'disabled_probes': [
|
||||
tempmon.Probe(description="north wall of walk-in cooler"),
|
||||
tempmon.Probe(description="north wall of walk-in cooler",
|
||||
client=tempmon.Client(config_key='bar')),
|
||||
],
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<h3>Disabled Probes</h3>
|
||||
<ul>
|
||||
% for probe in disabled_probes:
|
||||
<li>${probe}</li>
|
||||
<li>${probe} (for client: ${probe.client.config_key})</li>
|
||||
% endfor
|
||||
</ul>
|
||||
% endif
|
||||
|
|
Loading…
Reference in a new issue