Skip to content

Commit b217150

Browse files
committed
rename graph for unverified snapshots
1 parent 848988a commit b217150

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

agent_based/proxmox_bs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def proxmox_bs_checks(item, params, section):
151151
yield Metric('verify_ok', ok)
152152
yield Metric('verify_failed', len(nok))
153153
yield Metric('verify_unknown', len(np))
154-
yield Metric('not_verified_yet', nr,
154+
yield Metric('verify_none', nr,
155155
levels=(group_count, group_count*2)
156156
)
157157
yield Result(state=State.OK, summary=(

web/plugins/metrics/proxmox_bs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
'unit' : 'count',
4141
'color': indexed_color(5, 6),
4242
}
43-
metric_info['not_verified_yet'] = {
43+
metric_info['verify_none'] = {
4444
'title': _('Snapshots yet to be verified'),
4545
'unit' : 'count',
4646
'color': indexed_color(6, 6),
@@ -52,13 +52,13 @@
5252
('verify_ok', 'stack', metric_info['verify_ok']['title']),
5353
('verify_failed', 'stack', metric_info['verify_failed']['title']),
5454
('verify_unknown', 'stack', metric_info['verify_unknown']['title']),
55-
('not_verified_yet', 'stack', metric_info['not_verified_yet']['title']),
55+
('verify_none', 'stack', metric_info['verify_none']['title']),
5656
],
5757
'optional_metrics': [
5858
'verify_ok',
5959
'verify_failed',
6060
'verify_unknown',
61-
'not_verified_yet',
61+
'verify_none',
6262
],
6363
}
6464

0 commit comments

Comments
 (0)