From fcb55a2aa2a742346e875126a5e0d1cec6663645 Mon Sep 17 00:00:00 2001 From: Tristan Partin Date: Tue, 22 Oct 2024 14:34:26 -0600 Subject: [PATCH] Fix copy-paste error in checkpoints_timed metric Importing the wrong metric. Sigh... Signed-off-by: Tristan Partin --- compute/etc/sql_exporter/checkpoints_timed.libsonnet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compute/etc/sql_exporter/checkpoints_timed.libsonnet b/compute/etc/sql_exporter/checkpoints_timed.libsonnet index 0ba0080188..ebe2ddc9f2 100644 --- a/compute/etc/sql_exporter/checkpoints_timed.libsonnet +++ b/compute/etc/sql_exporter/checkpoints_timed.libsonnet @@ -1,7 +1,7 @@ local neon = import 'neon.libsonnet'; -local pg_stat_bgwriter = importstr 'sql_exporter/checkpoints_req.sql'; -local pg_stat_checkpointer = importstr 'sql_exporter/checkpoints_req.17.sql'; +local pg_stat_bgwriter = importstr 'sql_exporter/checkpoints_timed.sql'; +local pg_stat_checkpointer = importstr 'sql_exporter/checkpoints_timed.17.sql'; { metric_name: 'checkpoints_timed',