2016 - 2024

感恩一路有你

zabbix监控端口状态 如何插入数据到influxdb?

浏览量:1341 时间:2021-03-11 16:25:35 作者:admin

如何插入数据到influxdb?

一、安装要求:

1、需要Linux的root权限进行安装。

2、由于会默认使用到8083和8086两个端口,所以要保证这两个端口没有被占用。

Onceinstallationiscompleteyoucanchangethoseportsandotheroptionsintheconfigurationfile,whichislocatedbydefaultin/etc/influxdb.

二、安装:

这里使用的Centos操作系统。

1、首先在命令行执行下面的脚本,生成所需的yum源:

cat

[influxdb]

name=InfluxDBRepository-RHEL$releasever

可以用javaapi

=====================建maven项目

maven

====================插入语句=============

pointpoint2=Point.measurement("disk")

.time(System.currentTimeMillis(),TimeUnit.MILLISECONDS)

.field("used",80L)

.field("free",1L)

.build()

influxDB.write(dbName,"default",point1)

C#如何连接InfluxDB数据库?

它是有http接口的,不需要连接字符串,直接在C#中以访问网页的WebClient方式就可以了,可以搜索一下 influxDB 0.9 C# 读写类

如何用ansible python实现一个定时将数据插入influxdb数据库?

class Buffer(object): MAXSIZE = 8192 def __init__(self, conn, sql): self.conn = conn self.sql = sql self.buffer = [] def append(self, data): self.buffer.append(data) if len(self.buffer) > self.MAXSIZE: self.flush() def flush(self): data, self.buffer = self.buffer, [] curr = self.conn.cursor() curr.executemany(self.sql, data) self.conn.commit() # here are your code for init database connect conn_src and conn_store...buff = Buffer(conn_store, "insert into sybase_user values (%s, %s)")sql_query = "select a.id, a.name from user_info a where a.id=%s"curr_src = conn_src.cursor()curr_src.execute(sql_query, "0001")for row in curr_src: buff.append(row)buff.flush()

zabbix监控端口状态 zabbix安装 influxdb的各种问题

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。