Looking at PR #28 I could easily get that data out of my unifi setup, and even pull from more than just one ap. But of course each client is only going to be seen by one ap, so would that data have any actual value?
If I'm understanding the code correctly it looks like i just need to submit some json like the following
{
"node":"ap identifier",
"signals":[
{
"mac":"client mac",
"rssi":"##"
}
],
"timestamp":"Date.now()"
}
I've already banged out a quick piece of code to extract the data but I don't have a working find cluster yet so I didn't bother writing anything to submit the data yet and wanted to know about the viability of this before proceeding.
Looking at PR #28 I could easily get that data out of my unifi setup, and even pull from more than just one ap. But of course each client is only going to be seen by one ap, so would that data have any actual value?
If I'm understanding the code correctly it looks like i just need to submit some json like the following
{ "node":"ap identifier", "signals":[ { "mac":"client mac", "rssi":"##" } ], "timestamp":"Date.now()" }I've already banged out a quick piece of code to extract the data but I don't have a working find cluster yet so I didn't bother writing anything to submit the data yet and wanted to know about the viability of this before proceeding.