mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 03:15:53 +08:00
fix: update the md file for integrations config (#4677)
This commit is contained in:
parent
d0d10daa44
commit
a4d5774ae3
@ -4,7 +4,7 @@
|
||||
|
||||
Save the following collector config in a file named `mongo-collector-config.yaml`
|
||||
|
||||
```
|
||||
```bash
|
||||
receivers:
|
||||
mongodb:
|
||||
# - For standalone MongoDB deployments this is the hostname and port of the mongod instance
|
||||
|
@ -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.
|
||||
|
||||
```
|
||||
```bash
|
||||
use admin
|
||||
db.createUser(
|
||||
{
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
Save the following collector config in a file named `postgres-collector-config.yaml`
|
||||
|
||||
```
|
||||
```bash
|
||||
receivers:
|
||||
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
|
||||
|
@ -8,7 +8,7 @@ This receiver supports PostgreSQL versions 9.6+
|
||||
|
||||
For PostgreSQL versions 10+, run:
|
||||
|
||||
```
|
||||
```bash
|
||||
create user monitoring with password '<PASSWORD>';
|
||||
grant pg_monitor 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:
|
||||
|
||||
```
|
||||
```bash
|
||||
create user monitoring with password '<PASSWORD>';
|
||||
grant SELECT ON pg_stat_database to monitoring;
|
||||
```
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
Save the following collector config in a file named `redis-collector-config.yaml`
|
||||
|
||||
```
|
||||
```bash
|
||||
receivers:
|
||||
redis:
|
||||
# The hostname and port of the Redis instance, separated by a colon.
|
||||
|
Loading…
x
Reference in New Issue
Block a user