From 5d26b43bdc6bf6bed3c401cb6a80dfef378f4e46 Mon Sep 17 00:00:00 2001 From: Dhrubajyoti Sadhu Date: Tue, 3 Sep 2024 16:07:18 +0100 Subject: [PATCH] feat: added more metrics --- variables.tf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 21dcae1..c13aa17 100644 --- a/variables.tf +++ b/variables.tf @@ -592,7 +592,7 @@ variable "beekeeper_scheduler_apiary_metrics" { description = "Beekeeper metrics to be sent to Datadog." type = list(string) default = [ - "path_cleanup_job_seconds_sum*" + "paths_scheduled_seconds_count*" ] } @@ -603,3 +603,11 @@ variable "beekeeper_path_cleanup_metrics" { "path_cleanup_job_seconds_sum*" ] } + +variable "beekeeper_perf_scheduler_apiary_metrics" { + description = "Beekeeper metrics to be sent to Datadog." + type = list(string) + default = [ + "metadata_scheduled_seconds_count*" + ] +}