mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-15 13:06:03 +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`
|
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
|
||||||
|
@ -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(
|
||||||
{
|
{
|
||||||
|
@ -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
|
||||||
|
@ -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;
|
||||||
```
|
```
|
||||||
|
@ -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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user