We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syslog exporter which is in this repository should be replaced with syslog exporter from opentelemetry-collector-contrib.
Configuration options in syslog exporter from opentelemetry-collector-contrib are different and slightly different code.
syslog exporter from opentelemetry-collector-contrib has development stability, to move this exporter to alpha following tasks needs to be done:
development
The text was updated successfully, but these errors were encountered:
Example configuration for sumologic version of syslog exporter:
syslog: protocol: tcp port: 514 endpoint: 127.0.0.1 format: rfc5424 tls: ca_file: ca.pem cert_file: cert.pem key_file: key.pem
Example configuration for upstream version of syslog exporter:
syslog: network: tcp port: 514 endpoint: 127.0.0.1 protocol: rfc5424 tls: ca_file: ca.pem cert_file: cert.pem key_file: key.pem
so to switch to upstream version of syslog exporter it is necessary to replace:
protocol
network
format
ref: open-telemetry/opentelemetry-collector-contrib#19647 (comment)
Sorry, something went wrong.
Syslog exporter will be available in v0.89 release of opentelemetry-collector-contrib, related pull request: open-telemetry/opentelemetry-collector-contrib#28902
Successfully merging a pull request may close this issue.
Syslog exporter which is in this repository should be replaced with syslog exporter from opentelemetry-collector-contrib.
Configuration options in syslog exporter from opentelemetry-collector-contrib are different and slightly different code.
syslog exporter from opentelemetry-collector-contrib has
development
stability, to move this exporter to alpha following tasks needs to be done:The text was updated successfully, but these errors were encountered: