-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Observe device network behavior:
- How often the device talks to backend endpoints. (e.g. /min, /hour, /day, /month)
- How large is the data volume of network traffic.
Show the device traffic behavior graphs on the UI.
You can use SQL aggregate functions to create reports. Example reporting:
- Number of connections each day - COUNT (Connection) GROUP BY time(day);
- Data volume each day - SUM ( packet_size) GROUP BY time(day);
https://www.sqltutorial.org/sql-aggregate-functions/
https://docs.mongodb.com/manual/aggregation/