Treasure Data

The Treasure Data (TD) output plugin lets you flush your records into the Treasure Data cloud service.

Configuration parameters

The plugin supports the following configuration parameters:

Key
Description
Default

API

The Treasure Data API key. To obtain it, log into the Console and in the API keys box, copy the API key hash.

none

Database

Specify the name of your target database.

none

Table

Specify the name of your target table where the records will be stored.

none

Region

Set the service region. Allowed values: US, JP.

US

Workers

The number of workers to perform flush operations for this output.

0

Get started

To start inserting records into Treasure Data, run the plugin from the command line or through the configuration file.

Command line

You can run the plugin from the command line, but it exposes your API key. Using a configuration file is recommended.

fluent-bit -i cpu -o td -p API="abc" -p Database="fluentbit" -p Table="cpu_samples"

Configuration file

In your main configuration file append the following:

pipeline:
  inputs:
    - name: cpu
      tag: my_cpu

  outputs:
    - name: td
      match: '*'
      api: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
      database: fluentbit
      table: cpu_samples

Last updated

Was this helpful?