From 8853c7e5c6d5169884b813899cbebe8671df8fea Mon Sep 17 00:00:00 2001 From: zachjsh Date: Mon, 18 Nov 2024 20:58:00 -0500 Subject: [PATCH] Add `ingest/notices/queueSize` and `ingest/pause/time` to statsd emitter (#17487) * SQL syntax error should target USER persona * * revert change to queryHandler and related tests, based on review comments * * add test * * add `ingest/notices/queueSize` and `ingest/pause/time` to statsd emitter * * add taskStatus dimension to `service/heartbeat` metric * Revert "* add taskStatus dimension to `service/heartbeat` metric" This reverts commit cfb02a2813b24243ea0703def7a0dddd948bee00. --- .../src/main/resources/defaultMetricDimensions.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extensions-contrib/statsd-emitter/src/main/resources/defaultMetricDimensions.json b/extensions-contrib/statsd-emitter/src/main/resources/defaultMetricDimensions.json index 91a74707e4f0..a83aeb1bc7e1 100644 --- a/extensions-contrib/statsd-emitter/src/main/resources/defaultMetricDimensions.json +++ b/extensions-contrib/statsd-emitter/src/main/resources/defaultMetricDimensions.json @@ -66,6 +66,9 @@ "ingest/kinesis/partitionLag/time" : { "dimensions" : ["dataSource", "stream", "partition"], "type" : "gauge" }, "ingest/notices/time" : { "dimensions" : ["dataSource", "noticeType"], "type" : "timer" }, + "ingest/notices/queueSize" : { "dimensions" : ["dataSource"], "type" : "gauge" }, + + "ingest/pause/time" : { "dimensions" : ["dataSource", "taskId"], "type" : "timer" }, "task/success/count" : { "dimensions" : ["dataSource"], "type" : "count" }, "task/failed/count" : { "dimensions" : ["dataSource"], "type" : "count" },