You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker-compose exec -T postgres psql -U meshtastic -d meshtastic_mapper -c "SELECT pid, now() - query_start as duration, query FROM pg_stat_activity WHERE state = 'active' ORDER BY duration DESC LIMIT 5;"
95
+
```
96
+
97
+
### MQTT Issues
98
+
```bash
99
+
# Check MQTT status
100
+
docker-compose exec mosquitto sh -c "ps aux | grep mosquitto"
101
+
102
+
# Check MQTT port
103
+
docker-compose exec mosquitto sh -c "netstat -tlnp | grep 1883"
Copy file name to clipboardExpand all lines: TODO.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,23 +5,32 @@
5
5
| Priority | Description | Status |
6
6
|----------|-------------|--------|
7
7
| High | Decryption and Protobuf decoding are not working properly | ✅ Complete - Fixed encryption algorithm, nonce handling, and key management |
8
+
| High | Services locking up and requiring restart | 🔧 In Progress - Debug tools created, resource limits added |
8
9
| Medium | Network topology graph link is not working, it takes the user to the map | Complete |
9
-
| Medium | Map center on user is not working |Non-Issue|
10
+
| Medium | Map center on user is not working |✅ Complete - Fixed MUI Tooltip warning|
10
11
| Medium | Map startup on user location not working | Non-Issue |
11
12
| Low | Hardware types are not complete and may even be wrong | Complete |
13
+
| Medium | Device Telemetry do not appear to be saving | 🔧 Fixed - Added enhanced logging, needs testing |
14
+
| Medium | Device Neighbors not being recorded | 🔧 Fixed - Added NeighborInfo parsing and storage, needs testing |
15
+
| Low | Hardware names are not being proeprly shown on small node details window | Fixed |
16
+
| Low | Hardware names are not being properly shown on large node details window in overview and details tabs | Fixed |
17
+
| Low | In Node detail window on the Lora Config tab, There is a blue box at the bottom that is off the window | Not Started |
18
+
| Medium | Cluster count icons are not working correctly when you click on them or zoom in on the map | Not Started |
12
19
13
20
## Incomplete Features
14
21
15
22
| Priority | Description | Status |
16
23
|----------|-------------|--------|
17
24
| High | Docker deployment not complete | Not Started |
18
-
| Medium | MQTT monitor statistics has issues like rounding, no numbers in messages by type and top nodes are showing the decimal value | Complete |
25
+
| Medium | MQTT monitor statistics has issues like rounding, no numbers in messages by type and top nodes are showing the decimal value |✅ Complete - Fixed decryption failures count and messages per minute calculation|
19
26
20
27
## Changes
21
28
22
29
| Priority | Description | Status |
23
30
|----------|-------------|--------|
24
31
| Low | About window needs restructured to represent the application and move about meshtastic down below the about for the application, it should link to the github repo for the application. The system information at the bottom is not properly represented. | ✅ Complete |
32
+
| Medium | Make node icons and cluster icons larger | Not Started |
33
+
| Low | Add option to map options to show node name on map | Not Started |
0 commit comments