influxdbのメモ
はじめに InfluxDBは大量の時系列データを扱うことに長けたデータベースです。 InfluxDBは、CLIで操作する方法とHTTP APIで操作する方法が用意されている。 インストール 今回はUbuntuにインストールするため、こちらを参照します。 # Ubuntu and Debian # Add the InfluxData key to verify downloads and add the repository curl –silent –location -O \ https://repos.influxdata.com/influxdata-archive.key echo "943666881a1b8d9b849b74caebf02d3465d6beb716510d86a39f6c8e8dac7515 influxdata-archive.key" \ sha256sum –check – && cat influxdata-archive.key \ gpg –dearmor \ tee /etc/apt/trusted.gpg.d/influxdata-archive.gpg > /dev/null \ && echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.gpg] https://repos.influxdata.com/debian […]
2024/11/02 09:00