No commit activity in last 3 years
No release in over 3 years
Dumps records to InfluxDB.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 0.7.4
>= 10.0
>= 0

Runtime

 Project Readme

InfluxDB output plugin for Embulk

Overview

  • Plugin type: output
  • Load all or nothing: no
  • Resume supported: no
  • Cleanup supported: yes
  • Dynamic Database creating: yes
  • Dynamic Series creating: yes

Configuration

  • host: hostname (string, default: localhost)
  • port: port number (integer, default: 8086)
  • username: username (string, default: 'root')
  • password: password (string, default: 'root')
  • database: database name (string, required)
  • series: series name (string, required) (can use column value placeholder. see example)
  • mode: "insert", or "replace". See bellow. (string, default: insert)
  • timestamp_column: timestamp column (string, default: nil)
  • ignore_columns: ignore column names (array[string], default: [])
  • tag_columns: tag column names (array[string], default: [])
  • default_timezone: default timezone for column (string, default: 'UTC')
  • time_precision: time precision (string, default: 's')

Modes

  • insert:
    • Behavior: This mode inserts rows simplly.
  • replace:
    • Behavior: Same with insert mode excepting that it drops the target series first.

Example

out:
  type: influxdb
  username: root
  password: root
  database: dbname
  series: ${key_name}_series
  tag_columns: [name]
  timestamp_column: day
  mode: replace
  ignore_columns:
    - key_name

ToDo

  • column_options support

Build

$ rake