mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
7e60afb6fc
This commit allows to ingest logs with journald format. https://www.freedesktop.org/software/systemd/man/latest/systemd-journal-remote.service.html related issue: https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4618
17 lines
299 B
Nginx Configuration File
17 lines
299 B
Nginx Configuration File
events {
|
|
worker_connections 2000;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 0.0.0.0;
|
|
server_name _;
|
|
location /opentelemetry/api/v1/push {
|
|
proxy_pass http://victoriametrics:8428;
|
|
}
|
|
location /insert/opentelemetry/v1/logs {
|
|
proxy_pass http://victorialogs:9428;
|
|
}
|
|
}
|
|
}
|