Skip to content

Commit

Permalink
PMM-13111 Custom build with disabled user tables collectors.
Browse files Browse the repository at this point in the history
  • Loading branch information
BupycHuk committed Jun 6, 2024
1 parent 04645da commit 3baf922
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion collector/pg_stat_user_tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
const userTableSubsystem = "stat_user_tables"

func init() {
registerCollector(userTableSubsystem, defaultEnabled, NewPGStatUserTablesCollector)
registerCollector(userTableSubsystem, defaultDisabled, NewPGStatUserTablesCollector)
}

type PGStatUserTablesCollector struct {
Expand Down
2 changes: 1 addition & 1 deletion collector/pg_statio_user_tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
const statioUserTableSubsystem = "statio_user_tables"

func init() {
registerCollector(statioUserTableSubsystem, defaultEnabled, NewPGStatIOUserTablesCollector)
registerCollector(statioUserTableSubsystem, defaultDisabled, NewPGStatIOUserTablesCollector)
}

type PGStatIOUserTablesCollector struct {
Expand Down

0 comments on commit 3baf922

Please sign in to comment.