From 738fc286d81b2c1f36446fa2f96013792f3cf8b4 Mon Sep 17 00:00:00 2001 From: yugo-horie Date: Sun, 28 Jan 2024 15:38:51 +0900 Subject: [PATCH] Fix typo --- nginx/changelog.d/16717.fixed | 1 + nginx/datadog_checks/nginx/metrics.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 nginx/changelog.d/16717.fixed diff --git a/nginx/changelog.d/16717.fixed b/nginx/changelog.d/16717.fixed new file mode 100644 index 0000000000000..c6bbe62e70c10 --- /dev/null +++ b/nginx/changelog.d/16717.fixed @@ -0,0 +1 @@ +Fix typo diff --git a/nginx/datadog_checks/nginx/metrics.py b/nginx/datadog_checks/nginx/metrics.py index 4514ac99e486a..9346c8778b4f7 100644 --- a/nginx/datadog_checks/nginx/metrics.py +++ b/nginx/datadog_checks/nginx/metrics.py @@ -34,7 +34,7 @@ 'nginx.upstream.down': 'nginx.upstream.peers.health_checks.last_passed', } -# NGNINX Plus metrics that are sent as both a count and gauge for backwards compatibility +# NGINX Plus metrics that are sent as both a count and gauge for backwards compatibility # The count metrics will have _count appended to their names METRICS_SEND_AS_COUNT = [ 'nginx.upstream.peers.responses.1xx', @@ -112,11 +112,11 @@ 'nginx.upstream.peers.unavail', ] -# NGNINX Plus metrics that are sent as both a histogram and gauge for backwards compatibility +# NGINX Plus metrics that are sent as both a histogram and gauge for backwards compatibility # The histogram metrics will have _histogram appended to their names METRICS_SEND_AS_HISTOGRAM = {'nginx.upstream.peers.response_time', 'nginx.stream.upstream.peers.response_time'} -# NGNINX Plus metrics that are sent as only a count. +# NGINX Plus metrics that are sent as only a count. # These metrics will not have _count appended to their names COUNT_METRICS = [ 'nginx.location_zone.responses.total',