X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fpostgresql_default.conf;h=507990136200b1a02774eae614e1b6ab31fd0f50;hp=9827b982162a7e6da782658fc43b31b9fcbf0920;hb=19b51c4abd9dbff16fb69d7eb84422f31c6130bc;hpb=0b350ce8049e8c5db34751340e015c7a7937664e diff --git a/src/postgresql_default.conf b/src/postgresql_default.conf index 9827b982..50799013 100644 --- a/src/postgresql_default.conf +++ b/src/postgresql_default.conf @@ -1,4 +1,9 @@ # Pre-defined queries of collectd's postgresql plugin. +# +# Do not edit this file. If you want to change any of the query definitions, +# overwrite them in collectd.conf instead. +# +# This file is distributed under the same terms as collectd itself. Statement "SELECT count(*) AS count \ @@ -33,9 +38,9 @@ - Statement "SELECT sum(n_tup_ins) AS ins, \ - sum(n_tup_upd) AS upd, \ - sum(n_tup_del) AS del \ + Statement "SELECT coalesce(sum(n_tup_ins), 0) AS ins, \ + coalesce(sum(n_tup_upd), 0) AS upd, \ + coalesce(sum(n_tup_del), 0) AS del \ FROM pg_stat_user_tables;" @@ -54,14 +59,14 @@ ValuesFrom "del" - MaxPGVersion 80299 + MaxVersion 80299 - Statement "SELECT sum(n_tup_ins) AS ins, \ - sum(n_tup_upd) AS upd, \ - sum(n_tup_del) AS del, \ - sum(n_tup_hot_upd) AS hot_upd \ + Statement "SELECT coalesce(sum(n_tup_ins), 0) AS ins, \ + coalesce(sum(n_tup_upd), 0) AS upd, \ + coalesce(sum(n_tup_del), 0) AS del, \ + coalesce(sum(n_tup_hot_upd), 0) AS hot_upd \ FROM pg_stat_user_tables;" @@ -85,14 +90,79 @@ ValuesFrom "hot_upd" - MinPGVersion 80300 + MinVersion 80300 + + + + Statement "SELECT schemaname, relname, \ + n_tup_ins AS ins, \ + n_tup_upd AS upd, \ + n_tup_del AS del \ + FROM pg_stat_user_tables;" + + + Type "pg_n_tup_c" + InstancePrefix "ins" + InstancesFrom "schemaname" "relname" + ValuesFrom "ins" + + + Type "pg_n_tup_c" + InstancePrefix "upd" + InstancesFrom "schemaname" "relname" + ValuesFrom "upd" + + + Type "pg_n_tup_c" + InstancePrefix "del" + InstancesFrom "schemaname" "relname" + ValuesFrom "del" + + + MaxVersion 80299 + + + + Statement "SELECT schemaname, relname, \ + n_tup_ins AS ins, \ + n_tup_upd AS upd, \ + n_tup_del AS del, \ + n_tup_hot_upd AS hot_upd \ + FROM pg_stat_user_tables;" + + + Type "pg_n_tup_c" + InstancePrefix "ins" + InstancesFrom "schemaname" "relname" + ValuesFrom "ins" + + + Type "pg_n_tup_c" + InstancePrefix "upd" + InstancesFrom "schemaname" "relname" + ValuesFrom "upd" + + + Type "pg_n_tup_c" + InstancePrefix "del" + InstancesFrom "schemaname" "relname" + ValuesFrom "del" + + + Type "pg_n_tup_c" + InstancePrefix "hot_upd" + InstancesFrom "schemaname" "relname" + ValuesFrom "hot_upd" + + + MinVersion 80300 - Statement "SELECT sum(seq_scan) AS seq, \ - sum(seq_tup_read) AS seq_tup_read, \ - sum(idx_scan) AS idx, \ - sum(idx_tup_fetch) AS idx_tup_fetch \ + Statement "SELECT coalesce(sum(seq_scan), 0) AS seq, \ + coalesce(sum(seq_tup_read), 0) AS seq_tup_read, \ + coalesce(sum(idx_scan), 0) AS idx, \ + coalesce(sum(idx_tup_fetch), 0) AS idx_tup_fetch \ FROM pg_stat_user_tables;" @@ -118,72 +188,190 @@ - Statement "SELECT sum(n_live_tup) AS live, sum(n_dead_tup) AS dead \ + Statement "SELECT coalesce(sum(n_live_tup), 0) AS live, \ + coalesce(sum(n_dead_tup), 0) AS dead \ + FROM pg_stat_user_tables;" + + + Type "pg_n_tup_g" + InstancePrefix "live" + ValuesFrom "live" + + + Type "pg_n_tup_g" + InstancePrefix "dead" + ValuesFrom "dead" + + + MinVersion 80300 + + + + Statement "SELECT schemaname, relname, \ + coalesce(seq_scan, 0) AS seq, \ + coalesce(seq_tup_read, 0) AS seq_tup_read, \ + coalesce(idx_scan, 0) AS idx, \ + coalesce(idx_tup_fetch, 0) AS idx_tup_fetch \ + FROM pg_stat_user_tables;" + + + Type "pg_scan" + InstancePrefix "seq" + InstancesFrom "schemaname" "relname" + ValuesFrom "seq" + + + Type "pg_scan" + InstancePrefix "seq_tup_read" + InstancesFrom "schemaname" "relname" + ValuesFrom "seq_tup_read" + + + Type "pg_scan" + InstancePrefix "idx" + InstancesFrom "schemaname" "relname" + ValuesFrom "idx" + + + Type "pg_scan" + InstancePrefix "idx_tup_fetch" + InstancesFrom "schemaname" "relname" + ValuesFrom "idx_tup_fetch" + + + + + Statement "SELECT schemaname, relname, \ + n_live_tup AS live, n_dead_tup AS dead \ FROM pg_stat_user_tables;" Type "pg_n_tup_g" InstancePrefix "live" + InstancesFrom "schemaname" "relname" ValuesFrom "live" Type "pg_n_tup_g" InstancePrefix "dead" + InstancesFrom "schemaname" "relname" ValuesFrom "dead" - MinPGVersion 80300 + MinVersion 80300 - Statement "SELECT sum(heap_blks_read) AS heap_read, \ - sum(heap_blks_hit) AS heap_hit, \ - sum(idx_blks_read) AS idx_read, \ - sum(idx_blks_hit) AS idx_hit, \ - sum(toast_blks_read) AS toast_read, \ - sum(toast_blks_hit) AS toast_hit, \ - sum(tidx_blks_read) AS tidx_read, \ - sum(tidx_blks_hit) AS tidx_hit \ + Statement "SELECT coalesce(sum(heap_blks_read), 0) AS heap_read, \ + coalesce(sum(heap_blks_hit), 0) AS heap_hit, \ + coalesce(sum(idx_blks_read), 0) AS idx_read, \ + coalesce(sum(idx_blks_hit), 0) AS idx_hit, \ + coalesce(sum(toast_blks_read), 0) AS toast_read, \ + coalesce(sum(toast_blks_hit), 0) AS toast_hit, \ + coalesce(sum(tidx_blks_read), 0) AS tidx_read, \ + coalesce(sum(tidx_blks_hit), 0) AS tidx_hit \ + FROM pg_statio_user_tables;" + + + Type "pg_blks" + InstancePrefix "heap_read" + ValuesFrom "heap_read" + + + Type "pg_blks" + InstancePrefix "heap_hit" + ValuesFrom "heap_hit" + + + Type "pg_blks" + InstancePrefix "idx_read" + ValuesFrom "idx_read" + + + Type "pg_blks" + InstancePrefix "idx_hit" + ValuesFrom "idx_hit" + + + Type "pg_blks" + InstancePrefix "toast_read" + ValuesFrom "toast_read" + + + Type "pg_blks" + InstancePrefix "toast_hit" + ValuesFrom "toast_hit" + + + Type "pg_blks" + InstancePrefix "tidx_read" + ValuesFrom "tidx_read" + + + Type "pg_blks" + InstancePrefix "tidx_hit" + ValuesFrom "tidx_hit" + + + + + Statement "SELECT schemaname, relname, \ + coalesce(heap_blks_read, 0) AS heap_read, \ + coalesce(heap_blks_hit, 0) AS heap_hit, \ + coalesce(idx_blks_read, 0) AS idx_read, \ + coalesce(idx_blks_hit, 0) AS idx_hit, \ + coalesce(toast_blks_read, 0) AS toast_read, \ + coalesce(toast_blks_hit, 0) AS toast_hit, \ + coalesce(tidx_blks_read, 0) AS tidx_read, \ + coalesce(tidx_blks_hit, 0) AS tidx_hit \ FROM pg_statio_user_tables;" Type "pg_blks" InstancePrefix "heap_read" + InstancesFrom "schemaname" "relname" ValuesFrom "heap_read" Type "pg_blks" InstancePrefix "heap_hit" + InstancesFrom "schemaname" "relname" ValuesFrom "heap_hit" Type "pg_blks" InstancePrefix "idx_read" + InstancesFrom "schemaname" "relname" ValuesFrom "idx_read" Type "pg_blks" InstancePrefix "idx_hit" + InstancesFrom "schemaname" "relname" ValuesFrom "idx_hit" Type "pg_blks" InstancePrefix "toast_read" + InstancesFrom "schemaname" "relname" ValuesFrom "toast_read" Type "pg_blks" InstancePrefix "toast_hit" + InstancesFrom "schemaname" "relname" ValuesFrom "toast_hit" Type "pg_blks" InstancePrefix "tidx_read" + InstancesFrom "schemaname" "relname" ValuesFrom "tidx_read" Type "pg_blks" InstancePrefix "tidx_hit" + InstancesFrom "schemaname" "relname" ValuesFrom "tidx_hit"