Skip to content

Commit 4927172

Browse files
committed
Fix mismatched resource total names
1 parent ca32dc9 commit 4927172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbooks/boxcutter_chef/files/metrics/chef_metrics_collector.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ chef_client_run_last_success_timestamp_seconds${tags} ${last_success_unix_epoch}
4545
chef_client_run_duration_seconds${tags} ${elapsed_seconds}
4646
# HELP chef_client_run_resources_total Total resources in the last Chef run.
4747
# TYPE chef_client_run_resources_total gauge
48-
chef_client_resources_total${tags} ${all_resources_count}
48+
chef_client_run_resources_total${tags} ${all_resources_count}
4949
# HELP chef_client_run_updated_resources_total Updated resources in the last Chef run.
5050
# TYPE chef_client_run_updated_resources_total gauge
51-
chef_client_updated_resources_total${tags} ${updated_resources_count}
51+
chef_client_run_updated_resources_total${tags} ${updated_resources_count}
5252
EOF
5353

5454
# Rename the temporary file atomically.

0 commit comments

Comments
 (0)