Seeking Assistance for Pgwatch3 Custom Setup and Missing Features #696
-
Hello all, Now, to my questions. I'm trying to set up Pgwatch3 as a custom installation (unfortunately, using Docker is not possible for me). I'm missing features like HTTPS for the web UI (https://pgwat.ch/v3.0/concept/web_ui.html). I tried to use a similar configuration as in Pgwatch2, but it doesn't work: Environment="PW_WEBSSL=true" Also, I'm unable to set up/access Gatherer health check (for Docker installation mentioned here https://pgwat.ch/v3.0/tutorial/docker_installation.html#available-docker-images it seems more likely for Pgwatch2). On Pgwatch2, it was enabled on the pgwatch2 daemon. Is this JSON accessible via the web UI on Pgwatch3? If yes, on what link? I've found /, /sources, /metrics, /presets, and /logs in the documentation and in the source on GitHub. It would be nice to have those features in Pgwatch3. Thank you. Best regards, Michal |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi Michal.
Thanks for your kind words. We don't have SSL implementation yet. But I think it's not the hardest thing to implement.
Oh, yes. My fault. I forgot to update that part of the documentation. So we have two REST API endpoints on the web UI port:
|
Beta Was this translation helpful? Give feedback.
Hi Michal.
Thanks for your kind words. We don't have SSL implementation yet. But I think it's not the hardest thing to implement.
Oh, yes. My fault. I forgot to update that part of the documentation. So we have two REST API endpoints on the web UI port:
/liveness
/rediness
/liveness
will return200 OK
is pgwatch is started, and/readiness
will return200 OK
when pgwatch finished initialization and ready to fetch metrics.