1. InfluxDB 설치 Influxdata에서 제공하는 influxdb.repo 저장소를 Yum Repository에 추가합니다. (influxdb.repo 정보는 influxdata 홈페이지에서 가져왔습니다.) cat CREATE USER test1 WITH PASSWORD 'test1' WITH ALL PRIVILEGES > show users user admin ---- ----- admin true test1 true 2. Telegraf 설치 Telegraf는 1번의 influxdb.repo를 통해 설치할 수 있습니다. # yum install telegraf telegraf.conf 파일은 3가지 설정으로 나뉩니다. agent - 수집 및 전송 주기 관련 설정 outputs - 수집된 데이..