-
Notifications
You must be signed in to change notification settings - Fork 11
Home
Lorenzo Mangani edited this page Apr 8, 2018
·
6 revisions
Welcome to the HEPop wiki!
HEP Protocols are indexed using the following logic:
hep_proto
+ _
+ protocol_id
+ _
+ transaction_type
HEP Stats are are indexed as timeseries in InfluxDB
SELECT mean("INVITE") AS "mean_INVITE", mean("INVITE:200") AS "mean_INVITE:200", mean("BYE") AS "mean_BYE", mean("BYE:200") AS "mean_BYE:200" FROM "hep"."autogen"."method" WHERE time > :dashboardTime: GROUP BY :interval: FILL(null)
RTC Protocols are indexed as type 1000 and can be JSON searched:
SELECT * from hep_proto_1000_default WHERE data_header->>'handle' like '8796940787397620' limit 1;
RTC Protocol media statistics are indexed as timeseries in InfluxDB
SELECT mean("nacks-sent") AS "mean_nacks-sent", mean("nacks-received") AS "mean_nacks-received" FROM "hep"."autogen"."janus" WHERE time > :dashboardTime: GROUP BY :interval: FILL(null)