Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Stats File #164

Open
nayrnet opened this issue Jul 21, 2018 · 4 comments
Open

Feature Request: Stats File #164

nayrnet opened this issue Jul 21, 2018 · 4 comments

Comments

@nayrnet
Copy link

nayrnet commented Jul 21, 2018

Story: As an operator I'd like an easy way to scrape internal stats for use with external graphing (MRTG)

Proposal: I've implemented a new beacon type called SBEACON that replicates the functionality of IBEACON but only writes to /tmp/dw-stats.txt

                case BEACON_STATS:

                  {
                    int last_minutes = 60;

                    FILE *statFile = fopen("/tmp/dw-stats.txt", "w");
                    if (statFile == NULL)
                        {
                            dw_printf("Error opening stats file!\n");
                        }

                    fprintf (statFile, "MSG_CNT=%d\r\nPKT_CNT=%d\r\nDIR_CNT=%d\r\nLOC_CNT=%d\r\nRF_CNT=%d\r\nUPL_CNT=%d\r\nDNL_CNT=%d\r\n",
                                                igate_get_msg_cnt(),
                                                igate_get_pkt_cnt(),
                                                mheard_count(0,last_minutes),
                                                mheard_count(g_igate_config_p->max_digi_hops,last_minutes),
                                                mheard_count(8,last_minutes),
                                                igate_get_upl_cnt(),
                                                igate_get_dnl_cnt());
                    fclose(statFile);
                    strlcpy (beacon_text, "", sizeof(beacon_text));  // abort!
                  }
                  break;

I set this to beacon every 5mins and then I whipped up a few simple bash scripts to feed MRTG

#!/bin/bash
# APRS-IS Traffic - MRTG Script for DireWolf

source /tmp/dw-stats.txt
echo $DNL_CNT
echo $UPL_CNT
uptime -p
hostname -a

and

#!/bin/bash
# Local RF - MRTG Script for DireWolf

source /tmp/dw-stats.txt
echo $DIR_CNT
echo $LOC_CNT
uptime -p
hostname -a

You can see them in action at http://igate.nayr.net

I'd offer a merge request, but my solution is not windows compatible (hardcoded filename) and kinda stomps on the toes of beacons with this pseduo beacon, and feels hacky because well it is.. so I dont think you'll take it.. But I would like to discuss such functionality.. I noticed your collecting other stats but had a TODO on using em, perhaps a json/xml/csv file that contains all this info and is updated at a configured interval.. or some sort of external API to retrieve this at our own rates.

@dm-o
Copy link

dm-o commented Sep 28, 2018

Sound very interesting. I love to give out stats on my own website too.

@bhcleek
Copy link

bhcleek commented Apr 14, 2021

I wonder if this feature might be accepted by leveraging the IBEACON, but using a file path in the VIA field to cause it to write to a file similarly to how NOGATE will cause it to only write to the usual log file. Using VIA with a file path value could allow the beacon stats to be written to a specific file.

@wb2osz would you take such a patch?

@wb2osz
Copy link
Owner

wb2osz commented Apr 14, 2021

There are a few outstanding requests for something external to change direwolf parameters on the fly or to query the internal state, e,g, statistics, recently heard stations, and so on.
Rather polling for lots of assorted files, I was thinking of a more unified approach such as a network interface. Not necessarily REST, but that concept.

@bhcleek
Copy link

bhcleek commented Apr 14, 2021

That's sounds great. I was just thinking last night that I wish I could reload the config with restarting. SIGHUP support would be a welcome change, too

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants