For a simple command line tool, use the sqlite3 program and provide a command like.. SELECT * FROM archive ORDER BY dateTime DESC LIMIT 10; will print the last 10 rows. Or to get a bit fancier replace the '*' with just the fields you are interested in... SELECT dateTime, datetime( dateTime, 'unixepoch') as dt, outTemp, etc FROM archive ORDER BY dateTime DESC LIMIT 10;
On Thursday, 19 October 2023 at 11:35:42 pm UTC+10 [email protected] wrote: > Hi, > > I have an installation of weewx running on a raspberry pi - and would now > like to check remotely via the terminal whether all measured values are > recorded, or which measured values were currently retrieved by weewx from a > Davis 2 Pro. > Unfortunately I can't find a command which allows this in the terminal - > or is there a debug command which can display all measured values or > transferred data? Would be a great advantage for troubleshooting if you > could quickly take a look at the values via terminal. > > VNC or similar is unfortunately not an option - as I only have terminal > access - and need to find out why the data of the soil moisture sensors are > not retrieved from meteotemplate. > -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/306160dd-8698-42e8-9f0e-9529ccb1b33dn%40googlegroups.com.
