mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-15 21:05:52 +08:00
chore: integration instructions: add typical log file locations on macOS (#4779)
This commit is contained in:
parent
cff20f88cd
commit
39e0ef68ca
@ -97,7 +97,9 @@ Set the following environment variables in your otel-collector environment:
|
||||
```bash
|
||||
|
||||
# path of MongoDB server log file. must be accessible by the otel collector
|
||||
export MONGODB_LOG_FILE=/var/log/mongodb.log
|
||||
# typically found in /usr/local/var/log/mongodb on macOS
|
||||
# mongod.conf file can also be checked for finding log file location
|
||||
export MONGODB_LOG_FILE=/var/log/mongodb/mongodb.log
|
||||
|
||||
# region specific SigNoz cloud ingestion endpoint
|
||||
export OTLP_DESTINATION_ENDPOINT="ingest.us.signoz.cloud:443"
|
||||
|
@ -117,9 +117,11 @@ Set the following environment variables in your otel-collector environment:
|
||||
```bash
|
||||
|
||||
# path of Nginx access log file. must be accessible by the otel collector
|
||||
export NGINX_ACCESS_LOG_FILE=/var/log/nginx/access.log;
|
||||
# typically found at /usr/local/var/log/nginx/access.log on macOS
|
||||
export NGINX_ACCESS_LOG_FILE=/var/log/nginx/access.log
|
||||
|
||||
# path of Nginx error log file. must be accessible by the otel collector
|
||||
# typically found at /usr/local/var/log/nginx/error.log on macOS
|
||||
export NGINX_ERROR_LOG_FILE=/var/log/nginx/error.log
|
||||
|
||||
# region specific SigNoz cloud ingestion endpoint
|
||||
|
@ -91,7 +91,9 @@ Set the following environment variables in your otel-collector environment:
|
||||
```bash
|
||||
|
||||
# path of Postgres server log file. must be accessible by the otel collector
|
||||
export POSTGRESQL_LOG_FILE=/usr/local/var/log/postgres.log
|
||||
# typically found in /usr/local/var/log/postgresql on macOS
|
||||
# running `SELECT pg_current_logfile();` can also give you the location of postgresql log file
|
||||
export POSTGRESQL_LOG_FILE=/var/log/postgresql/postgresql.log
|
||||
|
||||
# region specific SigNoz cloud ingestion endpoint
|
||||
export OTLP_DESTINATION_ENDPOINT="ingest.us.signoz.cloud:443"
|
||||
|
@ -82,7 +82,9 @@ Set the following environment variables in your otel-collector environment:
|
||||
```bash
|
||||
|
||||
# path of Redis server log file. must be accessible by the otel collector
|
||||
export REDIS_LOG_FILE=/var/log/redis.log
|
||||
# typically found in /usr/local/var/log/redis on macOS
|
||||
# log file location can also be found in the output of `redis-cli CONFIG GET : *`
|
||||
export REDIS_LOG_FILE=/var/log/redis/redis-server.log
|
||||
|
||||
# region specific SigNoz cloud ingestion endpoint
|
||||
export OTLP_DESTINATION_ENDPOINT="ingest.us.signoz.cloud:443"
|
||||
|
Loading…
x
Reference in New Issue
Block a user