Skip to content
New issue

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

Replace syslog exporter with syslog exporter from opentelemetry-collector-contrib #1200

Closed
kkujawa-sumo opened this issue Jul 24, 2023 · 2 comments · Fixed by #1341
Closed

Comments

@kkujawa-sumo
Copy link
Contributor

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:

@kkujawa-sumo
Copy link
Contributor Author

kkujawa-sumo commented Nov 7, 2023

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 key with networkkey
  • format key with protocol key

ref: open-telemetry/opentelemetry-collector-contrib#19647 (comment)

@kkujawa-sumo
Copy link
Contributor Author

Syslog exporter will be available in v0.89 release of opentelemetry-collector-contrib, related pull request: open-telemetry/opentelemetry-collector-contrib#28902

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant