# docker exec -it influxdb_container influx
Connected to http://localhost:8086 version 1.8.3
InfluxDB shell version: 1.8.3


> show databases;
name: databases
name
----
int_telemetry_db


> use int_telemetry_db;
Using database int_telemetry_db


> show series;
key
---
int_telemetry,protocol=17,scrp=4607,srcip=10.0.1.1,dstip=10.0.2.2,dstp=8959,hop_index=0
int_telemetry,protocol=17,scrp=4607,srcip=10.0.1.1,dstip=10.0.2.2,dstp=8959,hop_index=1
int_telemetry,protocol=17,scrp=4607,srcip=10.0.1.1,dstip=10.0.2.2,dstp=8959,hop_index=2
int_telemetry,protocol=17,scrp=4607,srcip=10.0.1.1,dstip=10.0.2.2,dstp=8959   > SELECT protocol,srcip,scrp,dstip,dstp,seq,hop_index,origts,dstts,link_delay,delay,hop_delay,hop_jitter,reordering,sink_jitter from int_telemetry ORDER BY time ASC LIMIT 20;
name: int_telemetry
time                protocol srcip    scrp dstip    dstp seq hop_index origts              dstts               link_delay delay   hop_delay hop_jitter reordering sink_jitter
----                -------- -----    ---- -----    ---- --- --------- ------              -----               ---------- -----   --------- ---------- ---------- -----------
1684915871594698752 17       10.0.1.1 4607 10.0.2.2 8959 0             1684915871591220000 1684915871593137000            1917000
1684915871594717952 17       10.0.1.1 4607 10.0.2.2 8959     0                                                                    503
1684915871594728704 17       10.0.1.1 4607 10.0.2.2 8959     1                                                 1095000            387
1684915871594733056 17       10.0.1.1 4607 10.0.2.2 8959     2                                                 822000             201372645
1684915871762046464 17       10.0.1.1 4607 10.0.2.2 8959 1             1684915871591603000 1684915871594470000            2867000                      0          1332992
1684915871762065408 17       10.0.1.1 4607 10.0.2.2 8959     0                                                                    548       383000
1684915871762076672 17       10.0.1.1 4607 10.0.2.2 8959     1                                                 1170000            1057      458000
1684915871762082560 17       10.0.1.1 4607 10.0.2.2 8959     2                                                 1697000            201373922 1333000
1684915871762090240 17       10.0.1.1 4607 10.0.2.2 8959 2             1684915871592312000 1684915871595260000            2948000                      0          790016
1684915871762094848 17       10.0.1.1 4607 10.0.2.2 8959     0                                                                    336       709000
1684915871762099456 17       10.0.1.1 4607 10.0.2.2 8959     1                                                 780000             1908      319000
1684915871762104320 17       10.0.1.1 4607 10.0.2.2 8959     2                                                 2168000            201375602 790000
1684915871762110720 17       10.0.1.1 4607 10.0.2.2 8959 3             1684915871592504000 1684915871596744000            4240000                      0          1484032
1684915871762115072 17       10.0.1.1 4607 10.0.2.2 8959     0                                                                    513       192000
1684915871762119168 17       10.0.1.1 4607 10.0.2.2 8959     1                                                 1479000            2463      891000
1684915871762123008 17       10.0.1.1 4607 10.0.2.2 8959     2                                                 2761000            201376488 1484000
1684915871762129664 17       10.0.1.1 4607 10.0.2.2 8959 4             1684915871592920000 1684915871597604000            4684000                      0          860160
1684915871762133248 17       10.0.1.1 4607 10.0.2.2 8959     0                                                                    492       416000
1684915871762137344 17       10.0.1.1 4607 10.0.2.2 8959     1                                                 1245000            2485      182000
1684915871762141952 17       10.0.1.1 4607 10.0.2.2 8959     2                                                 3439000            201387240 860000
  • 레이블 없음