houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.iailab.module.data.influxdb.common.config;
 
import com.influxdb.client.InfluxDBClient;
import com.influxdb.client.InfluxDBClientFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年04月25日 17:13:00
 */
@Component
public class InfluxDBInstance {
 
    @Value("${influx-db.org}")
    public String org;
 
    @Value("${influx-db.bucket}")
    public String bucket;
 
    @Value("${influx-db.token}")
    public String token;
 
    @Value("${influx-db.url}")
    public String url;
 
    private Logger logger = LoggerFactory.getLogger(getClass());
 
    private InfluxDBClient client;
 
    public InfluxDBClient getClient() {
        try {
            if (client == null) {
                client = InfluxDBClientFactory.create(url, token.toCharArray());
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            logger.error("创建InfluxDBClient失败!");
        }
        return client;
    }
 
}