Skip to content

escalate/influxdb-csv-importer

Repository files navigation

Test

InfluxDB CSV Importer

Import CSV files into InfluxDB v1.x

Installation

Tested with Python 3.12.x on Ubuntu 22.04

If you encounter issues with 3.12.x patch versions of Python, please open a Github issue.

Requirements

Install needed requirements via pip

Production

$ pip install -r requirements.txt

Development

$ pip install -r dev-requirements.txt

Run

Run tool from commandline

$ ./csvimporter.py

Usage

$ ./csvimporter.py --help

Usage: csvimporter.py [OPTIONS] CSVFILE

    Commandline interface for InfluxDB / CSV Importer

Options:
    --delimiter TEXT                Delimiter of .csv file (Default: ,)
    --server TEXT                   Server address (Default: localhost)
    --port TEXT                     Server port (Default: 8086)
    --ssl                           Use ssl for connection to InfluxDB
    --user TEXT                     User for authentication
    --password TEXT                 Pasword for authentication
    --database TEXT                 Database name
    --measurement TEXT              Measurement name
    --tags-columns TEXT             Columns that should be tags
                                    e.g. col1,col2,col3
    --timestamp-column TEXT         Name of the column to use as timestamp;
                                    if option is not set, the current timestamp
                                    is used
    --timestamp-format [epoch|datetime|raw]
                                    Format of the timestamp column used
                                    to parse all timestamp
                                    (Default: epoch timestamp);
                                    epoch = epoch / unix timestamp
                                    datetime = normal date and/or time notation
                                    raw = raw epoch timestamp, do not convert
    --timestamp-timezone TEXT       Timezone of the timestamp column
    --locale TEXT                   Locale for ctype, numeric and monetary
                                    values e.g. de_DE.UTF-8
    --date-filter TEXT              Select only rows with a specific date
                                    in the timestamp column for import
                                    e.g. 2020-01-01
    --column-ignorelist TEXT        Ignore a list of columns for import
                                    e.g. col1,col2,col3
    --convert-int-to-float          Convert integer values to float
    --print-columns                 Print all column names in pretty json format
    --print-rows                    Print all rows in pretty json format
    --write-data                    Write data into InfluxDB
    --verbose                       Enable verbose logging output
    --help                          Show this message and exit.

Docker

Build Docker image

$ docker build \
    --tag=csvimporter \
    .

Run Docker container from built image to print help

$ docker run \
    csvimporter

Usage: csvimporter.py [OPTIONS] CSVFILE

    Commandline interface for CsvImporter

Options:
...

Run Docker container from built image with additional arguments

$ docker run \
    csvimporter \
    file.csv \
    --print-columns \
    --verbose

Dependencies

Other Projects

Contribute

Please note the separate contributing guide.

License

MIT