gluon-packages/net/respondd-module-airtime
Jan-Philipp Litza 1a8fd4ba87 respondd-module-airtime: Give more helpful error messages 2017-04-30 18:03:40 +02:00
..
src respondd-module-airtime: Give more helpful error messages 2017-04-30 18:03:40 +02:00
Makefile respondd-module-airtime: install to /usr/lib/respondd instead of /lib/respondd 2016-12-22 23:42:00 +01:00
README.md Add package respondd-module-airtime (#156) 2016-12-22 23:40:00 +01:00

README.md

This module adds a respondd airtime usage statistics provider. The format is the following:

{
  "statistics": {
    "wireless": [
      {
        "frequency": 5220,
        "active": 366561161,
        "busy": 46496566,
        "rx": 808415,
        "tx": 41711344,
        "noise": 162
      },
      {
        "frequency": 2437,
        "active": 366649704,
        "busy": 205221222,
        "rx": 108121446,
        "tx": 85453679,
        "noise": 161
      }
    ]
  }
}

The numbers active, busy, rx and tx are times in milliseconds, where busy, rx and tx have to be interpreted by taking the quotient with active.

The motivation for having a list with the frequency as a value in the objects instead of having an object with the frequency as keys is that multiple wifi devices might be present, in which case the same frequency can appear multiple times (because the statistics are reported once for every phy).