Joe Adams
Joe Adams
If the stat_statements collector fails for some reason, there should be an error in the log for the "stat_statements" collector. https://github.com/prometheus-community/postgres_exporter/blob/cb0bac60e13efdcb9cfbad3c6de283e3ef8e23be/collector/collector.go#L203-L208
Are you able to post a minimal example of running postgres in this way so that we can investigate and test a fix? A docker example is easiest for me....
I'm not sure that I understand the question. Can you please expand and provide some context? What is the problem or question that your are trying to solve/answer?
I believe that this is a bug based on adding the host name as a label. If there are 2 instances running on the same host, this will cause a...
There are now collectors enabled/disabled individually via their flags (i.e. `--collector.database` or the option to turn it off `--no-collector.database`). Some of the collectors are enabled by default while others are...
I think it's time to rework the dashboard. I started a similar process for the postgres_exporter here: https://github.com/prometheus-community/postgres_exporter/pull/911 If anyone wants to work on a PR, I'd be happy to...
I started skaffolding out the work to rework the dashboards and alerts: https://github.com/prometheus-community/elasticsearch_exporter/pull/885
There is a new dashboard now
#1033 adds pprof profiling. This should allow pulling the memory breakdown from the running process. If you're running a build with that commit (currently only the master branch), you should...
The query that is ran to pull the metric is this: ```sql SELECT SPLIT_PART(query, '.', 2) AS relname, EXTRACT(EPOCH FROM xact_start) AS timestamp_seconds FROM pg_catalog.pg_stat_activity WHERE query LIKE 'autovacuum:%' ```...