EdisonでInfluxDBを使う
前提
- ubilinux (Debian Wheezy 7.8)
- InfluxDB 0.8.8
InfluxDBのインストール
公式サイトのインストール手順にi386 (i686)版が無いので探した。公式なファイルは見つけられなかったので、チケットの情報を頼りにS3に置いてあるファイルを直接ダウンロードしてインストール。インストール時もpackage architecture (i686) does not match system (i386)
というエラーが出るので --force-architecture
を付与。
wget https://s3.amazonaws.com/influxdb/influxdb_0.8.8_i686.deb
dpkg -i --force-architecture influxdb_0.8.8_i686.deb
InfluxDBをスタートする。
/etc/init.d/influxdb start
InfluxDBは8083番ポートをバインドするのでブラウザからアクセス。
Pythonから書き込んでみる
InfluxDBが公開している公式のinfluxdb-pythonモジュールを使用する。
pip install influxdb
influxdb_test.py
# 先ほどインストールした32bit環境用のInfluxDBは0.8.8なので、
# influxdb08モジュールのクライアントを使用する。
from influxdb.influxdb08 import InfluxDBClient
json_body = [
{
"name": "cpu_load_short",
"columns": ["time", "value"],
"points": [
[1382819388, 0.64]
]
}
]
# 接続先を決めて書き込み
client = InfluxDBClient('127.0.0.1', 8086, 'root', 'root', 'example')
client.write_points(json_body)
# 読み込んで表示
result = client.query('select value from cpu_load_short;')
print("Result: {0}".format(result))
Author And Source
この問題について(EdisonでInfluxDBを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/key/items/20027621eefa68dede07著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .