如何插入数据到influxdb
发布网友
发布时间:2022-04-24 04:00
我来回答
共2个回答
热心网友
时间:2022-04-08 07:40
一、安装要求:
1、需要Linux的root权限进行安装。
2、由于会默认使用到8083和8086两个端口,所以要保证这两个端口没有被占用。
Once installation is complete you can change those ports and other options in the configuration file, which is located by default in /etc/influxdb.
二、安装:
这里使用的Centos操作系统。
1、首先在命令行执行下面的脚本,生成所需的yum源:
cat <<EOF | sudo tee /etc/yum.repos.d/influxdb.repo
[influxdb]
name = InfluxDB Repository - RHEL \$releasever
热心网友
时间:2022-04-08 08:58
可以用java api
=====================建maven项目
maven
<dependency>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
<version>2.1</version>
</dependency>
====================插入语句=============
point point2 = Point.measurement("disk")
.time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
.field("used", 80L)
.field("free", 1L)
.build();
influxDB.write(dbName, "default", point1);