Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plugins/postgres_querylength_: do not treat replication as "long query" #1466

Open
wants to merge 1 commit into
base: stable-2.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/node.d/postgres_querylength_.in
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ my $pg = Munin::Plugin::Pgsql->new(
info => 'Most long-running queries and transactions',
vlabel => 'Age (seconds)',
basequery => [
"SELECT 'query',COALESCE(max(extract(epoch FROM CURRENT_TIMESTAMP-query_start)),0) FROM pg_stat_activity WHERE (state NOT LIKE 'idle%' AND xact_start IS NOT NULL) %%FILTER%%
"SELECT 'query',COALESCE(max(extract(epoch FROM CURRENT_TIMESTAMP-query_start)),0) FROM pg_stat_activity WHERE (backend_type = 'client backend' AND state NOT LIKE 'idle%' AND xact_start IS NOT NULL) %%FILTER%%
UNION ALL
SELECT 'transaction',COALESCE(max(extract(epoch FROM CURRENT_TIMESTAMP-xact_start)),0) FROM pg_stat_activity WHERE 1=1 %%FILTER%%",
[
Expand Down