Sinks Options & Parameters
- Sinks URIs should be provided to pgwatch via the
--sink
flag, which can be used more than once, see CLI & Envs.
PostgreSQL
The PostgreSQL sink URI format is the standard PostgreSQL connection string, e.g.
All standard environment variables are supported as well.
Prometheus
The Prometheus sink URI format is
If you omit host, e.g. --sink=prometheus://:9187
, server listens on all interfaces and supplied port.
If you omit namespace, default is pgwatch
.
JSON file
The JSON file sink URI format is
It should be a valid file path where the JSON data will be written. If the file does not exist, it will be created.
gRPC
The gRPC sink URI format is
The gRPC sink supports optional authentication and TLS encryption over the RPC channel.
For authentication, credentials can be provided using the username:password
format in the URI string,
e.g. --sink=grpc://user:pwd@localhost:5000/
.
If omitted, defaults to empty string for both username and password.
The values are then forwarded to the gRPC server under the "username"
and "password"
fields in the metadata.
Enable TLS by specifying a custom Certificate Authority (CA) file via the sslrootca
URI parameter, e.g.
--sink=grpc://localhost:5000/?sslrootca=/home/user/ca.crt
If omitted, encryption is not used.