Skip to content

StudistCorporation/fluent-plugin-timestream

Repository files navigation

fluent-plugin-timestream

Status

Fluentd output plugin for Amazon Timestream.

Installation

You can install it as follows:

$ fluent-gem install fluent-plugin-timestream

Configuration

Please refer to the sample config file

Note

The plugin ignores dimension when it has null or empty string value.
e.g. {dimension1: null, dimension2: "value", dimension3: ""} => {dimension2: "value"}

The plugin ignores record when it has no dimensions.
e.g. {dimension1: null, dimension2: "", measure: "value"} => ignores this record

The plugin ignores record when measure specified in the config has null or empty value.
e.g. {dimension1: "value", measure: ""} => ignores this record

Configuring multiple MeasureNames is not supported.