X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fpostgresql_default.conf;h=0aac41e296cb5c87681e3ce41372afbaeea9617d;hb=217ec252adf547f2dd048489e2498bc31e8f70db;hp=9827b982162a7e6da782658fc43b31b9fcbf0920;hpb=6e419a825c50f9c97471aba7d50521bfc7e19828;p=collectd.git diff --git a/src/postgresql_default.conf b/src/postgresql_default.conf index 9827b982..0aac41e2 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 \ @@ -54,7 +59,7 @@ ValuesFrom "del" - MaxPGVersion 80299 + MaxVersion 80299 @@ -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;" @@ -132,58 +202,175 @@ ValuesFrom "dead" - MinPGVersion 80300 + 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" + + + 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"