Skip to content
Lorenzo Mangani edited this page Apr 8, 2018 · 6 revisions

Welcome to the HEPop wiki!

HEP

Protocols

HEP Protocols are indexed using the following logic:

hep_proto + _ + protocol_id + _ + transaction_type

Stats

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)

Janus

Events

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;

Stats

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)
Clone this wiki locally