2023-03-20 20:55:31 +00:00
|
|
|
# DVSMON - DVS dashboard monitor API
|
2023-03-20 20:54:51 +00:00
|
|
|
This internal API is used to provide last heard dashboard data on the dvsph.net website.
|
|
|
|
|
2023-03-20 21:04:16 +00:00
|
|
|
## Endpoints
|
|
|
|
- /monitor - Outputs last heard data
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"num":"1", / Dashboard position
|
|
|
|
"date":"2023-03-20 20:58:37", / Date
|
|
|
|
"name":"John Doe", / Users name
|
|
|
|
"call":"M0ABC", / Users callsign
|
|
|
|
"id":"235165", / Users DMR ID
|
|
|
|
"sec":"28.9", / Seconds user has been transmitting
|
|
|
|
"slot":"1", / Slot user is active on
|
|
|
|
"talkgroup":"2345" / Talkgroup user is active on
|
|
|
|
}
|
|
|
|
```
|
|
|
|
- /monitor/stats
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"hits":95, / Number of API hits
|
|
|
|
"refresh":287, / How many times the system has scraped data
|
|
|
|
"uptime":914 / API uptime in seconds
|
|
|
|
}
|
|
|
|
```
|
2023-03-20 20:54:51 +00:00
|
|
|
---
|
2023-03-20 20:55:31 +00:00
|
|
|
With love :heart:
|