Skip to content

Commit

Permalink
Fix copy-paste error in checkpoints_timed metric
Browse files Browse the repository at this point in the history
Importing the wrong metric. Sigh...

Signed-off-by: Tristan Partin <[email protected]>
  • Loading branch information
tristan957 authored Oct 22, 2024
1 parent f36cf3f commit fcb55a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compute/etc/sql_exporter/checkpoints_timed.libsonnet
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

1 comment on commit fcb55a2

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5229 tests run: 5014 passed, 1 failed, 214 skipped (full report)


Failures on Postgres 17

  • test_sharding_split_compaction[compact-shard-ancestors-enqueued]: debug-x86-64
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_sharding_split_compaction[debug-pg17-compact-shard-ancestors-enqueued]"
Flaky tests (2)

Postgres 17

Test coverage report is not available

The comment gets automatically updated with the latest test results
fcb55a2 at 2024-10-22T21:23:36.006Z :recycle:

Please sign in to comment.