mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-18 22:52:11 +01:00
711f2cc4f2
Commit adds the following changes: * Adds support of OpenTelemetry logs for Victoria Logs with protobuf encoded messages * json encoding is not supported for the following reasons: - It brings a lot of fragile code, which works inefficiently. - json encoding is impossible to use with language SDK. * splits metrics and logs structures at lib/protoparser/opentelemetry/pb package. * adds docs with examples for opentelemetry logs. --- Related issue: https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4839 Co-authored-by: AndrewChubatiuk <andrew.chubatiuk@gmail.com> Co-authored-by: f41gh7 <nik@victoriametrics.com>
25 lines
449 B
YAML
25 lines
449 B
YAML
exporters:
|
|
syslog:
|
|
network: tcp
|
|
endpoint: victorialogs
|
|
port: 5410
|
|
tls:
|
|
insecure: true
|
|
debug:
|
|
verbosity: detailed
|
|
processors:
|
|
transform:
|
|
log_statements:
|
|
- context: log
|
|
statements:
|
|
- set(attributes["message"], body)
|
|
receivers:
|
|
filelog:
|
|
include: [/tmp/logs/*.log]
|
|
service:
|
|
pipelines:
|
|
logs:
|
|
receivers: [filelog]
|
|
exporters: [syslog, debug]
|
|
processors: [transform]
|