pmm-admin doesn’t seem to have the ability to enable specific exporter flags (like the ones disabled by default), for example: from how can one enable collector.database_wraparound ?
List running process there (for example ps aux | grep postgres or use different command)
You should see something like:
So in my case postgres_exporter running under ID 16741.
Use kill ID (from previous command)
Now just run this binary again manually, but add one more flag to it and it is: collector.database_wraparound
So in my case it would be:
As you can see I just copy it out with all flags and added collector.database_wraparound to the end.
Now it should run again with all provided flags. After while PMM should start scraping as usual and you should see collector enabled between flags of running PG exporter and also in output of PG exporter endpoint. Like this you should be able to customise (add/remove) all flags you need.
pmm-admin doesn’t seem to have the ability to enable specific exporter flags (like the ones disabled by default), for example: from how can one enable collector.
database_wraparound
?