Page 1 of 1

Is there a logfile showing data sent on meteobridge?

Posted: Tue Jun 13, 2017 5:38 pm
by doncurtis
Is there a logfile on the meteobridge itself (via a Linux shell) that shows the exact data sent to each weather network?

If so, what is the file system name of the log(s)?


Thanks!

Re: Is there a logfile showing data sent on meteobridge?

Posted: Wed Jun 14, 2017 10:24 pm
by admin
You over estimate by far what the MR3020 systems can provide in terms of storage. This data is not stored. We just have 32 MB of RAM and 4 MB of flash!

When you login via ssh, you can do as follows to have upload data scrolling though your console:

Code: Select all

echo "" >/var/run/notest          # this stops automated restart of dropped jobs
rcwnetd stop      # this stops weather network upload process
/home/meteohub/wnetd debug     # this start weather network upload process in debug mode where you can somehow see what is being uploaded
As this is for my personal debugging, please don't ask what the output exactly means. However, you should find the information you are looking for in there (for whatever reason you are asking for that).

Re: Is there a logfile showing data sent on meteobridge?

Posted: Thu Jun 15, 2017 9:32 pm
by doncurtis
Thank you!