InfluxDB Go
InfluxDB
[축] version 1.0 release
원하는 물건
굳이 DB와 KVS 등을 재고, 프로세스, 작업으로 분류한다면
- 경량 DB(로드 감소)
데이터베이스에 친화적인graph tool
- realTime
-cloud watch 기능
InfluxDB install
Creating a database
InflexDB에 연결
>influx
DATABASE 작성CREATE DATABASE mydb
USE mydb
gem influxdb-ruby
gem 'influxdb'
sample
data = [
{
series: 'cpu',
tags: { host: 'server_1', region: 'us' },
values: { internal: 5, external: 0.453345 }
},
{
series: 'gpu',
values: { value: 0.9999 },
}
]
influxdb = InfluxDB::Client.new ENV['INFLUXDB_DATABASE'], ['INFLUXDB_USERNAME'], ['INFLUXDB_PASSWORD']
influxdb.write_points(data)
표
색인 같은 거
열 및 값(key-value)
A metric is an arrangement of numerical data in a successive time order,
consisting of a title and several time-value pairs.
Usually time series data is enriched by tags.
Queries
https://docs.influxdata.com/influxdb/v1.0/query_language/data_download/
continuos
함수나 트리거 같은 걸 만들 수 있다
graph
부산물
collectd ...서버 모니터링
https://anomaly.io/collectd-metrics-to-influxdb/
끝말
그리고 관련성을 더욱 상세하고 적절하게 파악할 수 있는 도구를 선택한다
자유자재로 운용하여 의식을 필요로 하다
잡담
Reference
이 문제에 관하여(InfluxDB Go), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/wroc/items/b2ef8a56f685d02a3369텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)