fix: update the md file for integrations config (#4677)

This commit is contained in:
Vikrant Gupta 2024-03-11 11:48:36 +05:30 committed by GitHub
parent d0d10daa44
commit a4d5774ae3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
Save the following collector config in a file named `mongo-collector-config.yaml` Save the following collector config in a file named `mongo-collector-config.yaml`
``` ```bash
receivers: receivers:
mongodb: mongodb:
# - For standalone MongoDB deployments this is the hostname and port of the mongod instance # - For standalone MongoDB deployments this is the hostname and port of the mongod instance

View File

@ -8,7 +8,7 @@ Mongodb recommends to set up a least privilege user (LPU) with a `clusterMonitor
Run the following command to create a user with the necessary permissions. Run the following command to create a user with the necessary permissions.
``` ```bash
use admin use admin
db.createUser( db.createUser(
{ {

View File

@ -4,7 +4,7 @@
Save the following collector config in a file named `postgres-collector-config.yaml` Save the following collector config in a file named `postgres-collector-config.yaml`
``` ```bash
receivers: receivers:
postgresql: postgresql:
# The endpoint of the postgresql server. Whether using TCP or Unix sockets, this value should be host:port. If transport is set to unix, the endpoint will internally be translated from host:port to /host.s.PGSQL.port # The endpoint of the postgresql server. Whether using TCP or Unix sockets, this value should be host:port. If transport is set to unix, the endpoint will internally be translated from host:port to /host.s.PGSQL.port

View File

@ -8,7 +8,7 @@ This receiver supports PostgreSQL versions 9.6+
For PostgreSQL versions 10+, run: For PostgreSQL versions 10+, run:
``` ```bash
create user monitoring with password '<PASSWORD>'; create user monitoring with password '<PASSWORD>';
grant pg_monitor to monitoring; grant pg_monitor to monitoring;
grant SELECT ON pg_stat_database to monitoring; grant SELECT ON pg_stat_database to monitoring;
@ -16,7 +16,7 @@ grant SELECT ON pg_stat_database to monitoring;
For PostgreSQL versions >= 9.6 and <10, run: For PostgreSQL versions >= 9.6 and <10, run:
``` ```bash
create user monitoring with password '<PASSWORD>'; create user monitoring with password '<PASSWORD>';
grant SELECT ON pg_stat_database to monitoring; grant SELECT ON pg_stat_database to monitoring;
``` ```

View File

@ -4,7 +4,7 @@
Save the following collector config in a file named `redis-collector-config.yaml` Save the following collector config in a file named `redis-collector-config.yaml`
``` ```bash
receivers: receivers:
redis: redis:
# The hostname and port of the Redis instance, separated by a colon. # The hostname and port of the Redis instance, separated by a colon.