From cb84ea5c6d7c404db10650e7d82e962859369fe0 Mon Sep 17 00:00:00 2001 From: Samuel Masuy Date: Wed, 12 Nov 2025 11:00:33 -0500 Subject: [PATCH] docs(prometheus): fix metric names to include aws_ prefix for error metrics --- docs/guide/metrics/prometheus/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide/metrics/prometheus/index.md b/docs/guide/metrics/prometheus/index.md index e88ef349c..1eaadd106 100644 --- a/docs/guide/metrics/prometheus/index.md +++ b/docs/guide/metrics/prometheus/index.md @@ -44,10 +44,10 @@ Following metrics are added: | aws_api_call_call_retries | Counter | Number of times the SDK retried requests to AWS services for SDK API calls | | aws_api_requests_total | Counter | Total number of HTTP requests that the SDK made | | aws_request_duration_seconds | Histogram | Latency of an individual HTTP request to the service endpoint | -| api_call_permission_errors_total | Counter | Number of failed AWS API calls due to auth or authorization failures | -| api_call_service_limit_exceeded_errors_total | Counter | Number of failed AWS API calls due to exceeding service limit | -| api_call_throttled_errors_total | Counter | Number of failed AWS API calls due to throttling error | -| api_call_validation_errors_total | Counter | Number of failed AWS API calls due to validation error | +| aws_api_call_permission_errors_total | Counter | Number of failed AWS API calls due to auth or authorization failures | +| aws_api_call_service_limit_exceeded_errors_total | Counter | Number of failed AWS API calls due to exceeding service limit | +| aws_api_call_throttled_errors_total | Counter | Number of failed AWS API calls due to throttling error | +| aws_api_call_validation_errors_total | Counter | Number of failed AWS API calls due to validation error | | aws_target_group_info | Gauge | Information about target group | | awslbc_readiness_gate_ready_seconds | Histogram | Time to flip a readiness gate to true | | awslbc_reconcile_stage_duration | Histogram | Latency of different reconcile stages |