InfluxDB
PerpetualLearner
这个作者很懒,什么都没留下…
展开
-
初识Telegraf
Telegraf DocumentationTelegraf is a plugin-driven server agent for collection & reporting metrics, and is the first piece of the TICK stack.Telegraf has plugins to :source a variety of metrics directly from the system it’s running onpull metric..原创 2020-06-06 17:14:07 · 308 阅读 · 0 评论 -
初识Kapacitor
KapacotorKapacitor is an open source data processing framework that makes it easy to create alerts, run ETL jobs and detect anomalies. Kapacitor is the final piece of the Tick stack.ETLFrom wikipedia, extract, transform, load(ETL) is the general pro..原创 2020-06-06 17:12:02 · 436 阅读 · 0 评论 -
理解InfluxDB的logging,关闭HTTP access log
Log and trace with InfluxDBInfluxDB writes log output, by default, to stderr, all logs are written to stderr.(about stderr see refe No.1).You can also redirect the log output, as you would any output to stderr.influxd 2>$HOME/my_log_fileHTTP acce..原创 2020-05-10 16:46:29 · 1600 阅读 · 0 评论 -
InfluxDB优化及Python库influxdb
InfluxDBInfluxDB is an open-source distributed time series database. Find more at https://docs.influxdata.com/influxdb/latestTime PrecisionsThe default precision for timestamps is in nanosecond...原创 2020-04-26 22:19:38 · 660 阅读 · 0 评论 -
(20200420已解决)InfluxDB时间显示格式
问题描述InfluxDB中time默认显示为19位的ns级别的时间戳,查看不方便。如何改成可直接阅读的友好方式。解决方案precision rfc3339ReferencesInfluxDB中的时间相关问题...原创 2020-04-26 22:12:31 · 6906 阅读 · 0 评论 -
Python通过websocket向InfluxDB存储数据
InfluxDB安装websocket下载数据存储数据import websocketimport influxdbtry: import threadexcept ImportError: import _thread as threadimport timedef on_message(ws, message): # 在这里实现存储 ...原创 2020-04-20 22:06:23 · 545 阅读 · 0 评论 -
(20200419)influxdb基础常用命令
常用命令# 查看版本influxd version用户管理# 创建用户CREATE USER "username" WITH PASSWORD 'password'CREATE USER "username" WITH PASSWORD 'password' WITH ALL PRIVILEGES; # 创建root用户# 查看用户SHOW USERS # 可加也可不加;...原创 2020-04-19 09:36:36 · 1725 阅读 · 0 评论 -
InfluxDB中Line Protocol理解
Line Protocol直译”行协议“,InfluxDB的行协议是一种写入数据点到InfluxDB的文本格式。必须要是这样的格式的数据点才能被InfluxDB解析和写入成功。weather,location=us-midwest temperature=82 1465839830100400200 | -------------------- -------------- |...原创 2020-04-19 10:04:18 · 3919 阅读 · 1 评论 -
docker运行InfluxDB流程及InfluxDB概念
InfluxDB(官网 维基百科 github )用go写成;时序数据库;用于存储系统的监控、IoT行业的实时数据等场景。Errplane公司在2013年开始开源项目的形式开发InfluxDB,2015年公司更名为InfluxData。InfluxDB存储的数据从逻辑上由 Measurement, tag组以及 field组以及一个时间戳组成的:Measurement: 由一个字符串...原创 2020-04-19 10:02:55 · 4139 阅读 · 0 评论