c6079f897d
Added threads table in the admin web ui
2024-04-12 16:33:52 -04:00
66e4850353
Fixed issue with APRSDThreadList stats()
...
the stats method was setting the key to the classname
and not the thread name, giving an inacurate list
of actual running threads.
2024-04-12 15:08:39 -04:00
40c028c844
Added new default_ack_send_count config option
...
There may be applications where the admin might not want a hard
coded 3 acks sent for every RX'd packet. This patch adds the
ability to change the number of acks sent per RX'd packet.
The default is still 3.
2024-04-12 14:36:27 -04:00
4c2a40b7a7
Remove packet from tracker after max attempts
2024-04-12 11:12:57 -04:00
f682890ef0
Limit packets to 50 in PacketList
2024-04-12 09:01:57 -04:00
026dc6e376
syncronize the add for StatsStore
2024-04-11 22:55:01 -04:00
f59b65d13c
Lock on stats for PacketList
2024-04-11 22:24:02 -04:00
5ff62c9bdf
Fixed PacketList maxlen
...
This patch removes the MutableMapping from PacketList
and fixes the code that keeps the max packets in the internal
dict.
2024-04-11 21:40:43 -04:00
5fa4eaf909
Fixed a problem with the webchat tab notification
...
Somehow the hidden div for the webchat interface's
tab notification was removed. this patch adds it back in
so the user knows that they have message(s) for a tab that
isn't selected
2024-04-11 18:11:05 -04:00
f34120c2df
Another fix for ACK packets
2024-04-11 17:28:47 -04:00
3bef1314f8
Fix issue not tracking RX Ack packets for stats
...
This patch updates the RX tracking for packets. Every
packet we get into the rx thread, we now will track
every packet we RX so the stats are acurate.
2024-04-11 16:54:46 -04:00
94f36e0aad
Fix time plugin
...
This patch adds the tzlocal package to help find the local timezone
correctly such that pytz can correctly built the time needed for
the time plugin.
2024-04-10 22:03:29 -04:00
Craig Lamparter
886ad9be09
add GATE route to webchat along with WIDE1, etc
2024-04-10 13:19:46 -07:00
Craig Lamparter
aa6e732935
Update webchat, include GATE route along with WIDE, ARISS, etc
2024-04-10 13:18:24 -07:00
b3889896b9
Get rid of some useless warning logs
2024-04-10 13:59:32 -04:00
8f6f8007f4
Added human_info property to MessagePackets
...
This patch adds the human_info property to the MessagePacket
object to just return the filtered message_text
2024-04-10 13:58:44 -04:00
2e9cf3ce88
Fixed scrolling problem with new webchat sent msg
...
The Webchat ui was failing to scroll properly upon sending
a new message from a tab that had a lot of messages already.
2024-04-09 10:07:12 -04:00
8728926bf4
Fix some issues with listen command
...
The listen command had some older references to some of the
thread modules. this patch fixes those.
2024-04-09 09:58:59 -04:00
2c5bc6c1f7
Admin interface catch empty stats
...
This patch adds checks in the admin js to ensure that the
specific stats aren't empty before trying to dereference.
2024-04-09 07:46:06 -04:00
80705cb341
Ensure StatsStore has empty data
...
This patch ensures that the StatsStore object has a default
empty dict for data.
2024-04-09 06:59:22 -04:00
a839dbd3c5
Ensure latest pip is in docker image
...
this patch adds a command to update pip in both Dockerfile's
2024-04-08 17:00:42 -04:00
1267a53ec8
Merge pull request #159 from craigerl/stats-rework
...
Reworked the stats making the rpc server obsolete.
2024-04-08 16:12:16 -04:00
da882b4f9b
LOG failed requests post to admin ui
2024-04-08 13:07:15 -04:00
6845d266f2
changed admin web_ip to StrOpt
...
The option was an IPOpt, which prevented the user
from setting the ip to a hostname
2024-04-08 12:47:17 -04:00
db2fbce079
Updated prism to 1.29
2024-04-08 10:26:54 -04:00
bc3bdc48d2
Removed json-viewer
2024-04-08 10:16:08 -04:00
7114269cee
Remove rpyc as a requirement
2024-04-05 16:00:45 -04:00
fcc02f29af
Delete more stats from webchat
...
This patch removes some more stats that the webchat
ui doesn't need.
2024-04-05 15:24:11 -04:00
0ca9072c97
Admin UI working again
2024-04-05 15:03:22 -04:00
333feee805
Removed RPC Server and client.
...
This patch removes the need for the RPC Server from aprsd.
APRSD Now saves it's stats to a pickled file on disk in the
aprsd.conf configured save_location. The web admin UI
will depickle that file to fetch the stats. The aprsd server
will periodically pickle and save the stats to disk.
The Logmonitor will not do a url post to the web admin ui
to send it the latest log entries.
Updated the healthcheck app to use the pickled stats file
and the fetch-stats command to make a url request to the running
admin ui to fetch the stats of the remote aprsd server.
2024-04-05 12:50:01 -04:00
a8d56a9967
Remove the logging of the conf password if not set
2024-04-03 18:01:11 -04:00
50e491bab4
Lock around client reset
...
We now have multiple places where we call reset in case
a network connection fails, so now there is a mutex lock
around the reset method.
2024-04-02 18:23:37 -04:00
71d72adf06
Allow stats collector to serialize upon creation
...
This does some cleanup with the stats collector and
usage of the stats. The patch adds a new optional
param to the collector's collect() method to tell
the object to provide serializable stats. This is
used for the webchat app that sends stats to the
browser.
2024-04-02 14:07:37 -04:00
e2e58530b2
Fixed issues with watch list at startup
2024-04-02 09:30:45 -04:00
01cd0a0327
Fixed access to log_monitor
2024-04-02 09:30:45 -04:00
f92b2ee364
Got unit tests working again
2024-04-02 09:30:45 -04:00
a270c75263
Fixed pep8 errors and missing files
2024-04-02 09:30:45 -04:00
bd005f628d
Reworked the stats making the rpc server obsolete.
...
This patch implements a new stats collector paradigm
which uses the typing Protocol. Any object that wants to
supply stats to the collector has to implement the
aprsd.stats.collector.StatsProducer protocol, which at the
current time is implementing a stats() method on the object.
Then register the stats singleton producer with the collector by
calling collector.Collector().register_producer()
This only works if the stats producer object is a singleton.
2024-04-02 09:30:43 -04:00
200944f37a
Merge pull request #158 from craigerl/client-update
...
Update client.py to add consumer in the API.
2024-04-02 09:26:30 -04:00
a62e490353
Update client.py to add consumer in the API.
...
This adds a layer between the client object and the
actual client instance, so we can reset the actual
client object instance upon failure of connection.
2024-03-28 16:51:56 -04:00
428edaced9
Fix for sample-config warning
...
This patch fixes a small issue with the sample-config command
outputting a warning during generation.
2024-03-27 10:29:30 -04:00
8f588e653d
update requirements
2024-03-25 09:47:16 -04:00
144ad34ae5
Merge pull request #154 from craigerl/packet_updates
...
Packet updates
2024-03-25 09:20:35 -04:00
0321cb6cf1
Put packet.json back in
2024-03-23 21:06:20 -04:00
c0623596cd
Change debug log color
...
this patch changes the debug log color from dark blue to grey
2024-03-23 19:27:23 -04:00
f400c6004e
Fix for filtering curse words
...
This patch adds a fix for filtering out curse words.
This adds a flag to the regex to ignore case!
2024-03-23 18:02:01 -04:00
873fc06608
added packet counter random int
...
The packet counter now starts at a random number between 1 and 9999
instead of always at 1.
2024-03-23 17:56:49 -04:00
f53df24988
More packet cleanup and tests
2024-03-23 17:05:41 -04:00
f4356e4a20
Show comment in multiline packet output
...
This patch adds the comment for a packet if it exists
in the multiline log output
2024-03-23 13:00:51 -04:00
c581dc5020
Added new config option log_packet_format
...
This new DEFAULT group option specifies what format to use
when logging a packet.
2024-03-23 11:50:01 -04:00