Skip to content

Releases: r0mdau/fluentforwardexporter

v0.3.1

22 Jan 02:58
636a579
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.3.1

v0.3.0

07 Jan 17:02
76f24a3
Compare
Choose a tag to compare

What's Changed

  • Add all attributes in the exported log record by @r0mdau in #11

Breaking change 1

Add by default all otel attributes into the log record.

If some attributes are not wanted, you must use the processor/attributesprocessor, example to remove the hostname attribute

processors:
  attributes:
    actions:
      - key: hostname
        action: delete

Breaking change 2

The default_labels_enabled property act upon standard fields required by a Fluent endpoint and the OpenTelemetry logs/data-model definition.

This property allows to include or exclude the 3 fields timestamp, level and message.

Best practice, keep them all. To disable one, set to false.

  default_labels_enabled:
    timestamp: true
    level: true
    message: true

Breaking change 3

In the exported log record, the field severity is now labeled level as it is usual to see level in ElasticSearch usage.

Full Changelog: v0.2.0...v0.3.0

v0.2.0

07 Dec 19:50
7d3a39c
Compare
Choose a tag to compare

What's Changed

  • Add TCP address resolution validation at startup by @csatib02 in #9
  • Update to opentelemetry v0.115.0 by @r0mdau in #10

Breaking change

Configuration change from:

exporters:
  fluentforward:
    endpoint: localhost:24224

To this minimal working configuration:

exporters:
  fluentforward:
    endpoint: 
      tcp_addr: localhost:24224

Full Changelog: v0.1.5...v0.2.0

v0.1.5

02 Nov 17:48
2893947
Compare
Choose a tag to compare

What's Changed

  • chore: opentelemetry v0.112.0 follow-up by @csatib02 in #6

New Contributors

Full Changelog: v0.1.4...v0.1.5

v0.1.4

21 Aug 02:17
fd1153c
Compare
Choose a tag to compare

What's Changed

  • Update to opentelemetry v0.107.0 by @r0mdau in #4

Full Changelog: v0.1.3...v0.1.4

v0.1.3

26 Jul 00:37
09cdbd5
Compare
Choose a tag to compare

What's Changed

  • Update to opentelemetry v0.105.0 by @r0mdau in #3

Full Changelog: v0.1.2...v0.1.3

v0.1.2

28 Nov 03:40
9756913
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.1...v0.1.2

v0.1.1

21 Nov 03:01
c3a6536
Compare
Choose a tag to compare

What's Changed

  • Exit connectForward if conn error by @r0mdau in #1

New Contributors

  • @r0mdau made their first contribution in #1

Full Changelog: v0.1.0...v0.1.1

v0.1.0

20 Nov 04:12
Compare
Choose a tag to compare

This is the first testable version of the OpenTelemetry Fluent Forward exporter.

It is not tested in a live production environment.

Features :