Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- snmp
- 정규식 문자열 출력
- c3 축 없애기
- python subprocess
- gcc 업데이트
- linux시간으로 변경
- centos pyhon 설치
- gcc regex
- snmp test
- 정규식 활용
- python popen
- c3 step graph
- python os
- g++ 업데이트
- c3 second
- semanage
- 정규식 컴파일
- telegraf
- selinux port 등록
- c3 축 가리기
- subporcess path
- 1697
- influxdb 설치
- 백준
- CentOS7
- InfluxDB
- regex_search
- grafana dashboard
- c++ 정규식
- c3 초
Archives
- Today
- Total
리셋 되지 말자
[g++] c++과 influxdb 연동해서 사용하기 본문
#include "influxdb.hpp"
#include <iostream>
using namespace std;
// Visit https://github.com/orca-zhang/influxdb-c for more test cases
int main(int argc, char const *argv[])
{
influxdb_cpp::server_info si("127.0.0.1", 8086, "demo", "admin", "admin");
// post_http demo with resp[optional]
string resp;
int ret = influxdb_cpp::builder()
.meas("test2")
// .tag("k", "v")
// .tag("x", "y")
.field("x", 10)
.field("y", 10.3)
// .field("b", !!10)
.post_http(si, &resp);
cout << ret << endl << resp << endl;
// send_udp demo
ret = influxdb_cpp::builder()
.meas("test")
.tag("k", "v")
.tag("x", "y")
.field("x", 10)
.field("y", 3.14e18, 3)
.field("b", !!10)
.timestamp(1512722735522840439)
.send_udp("127.0.0.1", 8089);
cout << ret << endl;
// query from table
influxdb_cpp::server_info si_new("127.0.0.1", 8086, "", "admin", "admin");
influxdb_cpp::query(resp, "show databases", si_new);
cout << resp << endl;
// create_db
influxdb_cpp::create_db(resp, "x_create", si_new);
cout << resp << endl;
return 0;
}
아효 힘들어.... 설명은 다음 기회에..... ㅠㅠㅠㅠㅠㅠ
'gcc' 카테고리의 다른 글
[g++] 정규식 라이브러리 활용 (0) | 2020.01.28 |
---|---|
[g++] 정규식 문자열 찾기 및 찾은 문자열 출력 (0) | 2020.01.28 |
[g++, gcc] gcc 버전 업데이트(업그레이드) (0) | 2020.01.28 |
[g++] popen 결과값 사용하기 (0) | 2020.01.23 |
[g++] C++ header file path (0) | 2020.01.23 |
Comments