Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4018) - 28 March 2024

Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

For New Users

Discussion of the Cumulusutils tool and website generator.

Moderator: HansR

User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

That's the Dutch Swedish translations done :lol:
Daily program as below seems to work :D

Code: Select all

Daily program
/home/pi/scripts/cumulusutils.sh
(i)A program or command to be run at the start of each day
cat /home/pi/scripts/cumulusutils.sh

Code: Select all

#!/bin/bash
echo "$0 started $(date +%Y-%m-%d\ %H:%M:%S.%N)" >> /tmp/Website.log 2>&1
# Variables
runFolder=/home/pi/CumulusMX/
# Ensure that 'start of day' is fully completed
/bin/sleep 1
echo "$0 slept $(date +%Y-%m-%d\ %H:%M:%S.%N)" >> /tmp/Website.log 2>&1
cd $runFolder
/home/pi/CumulusMX/cumulusutils.exe Website >> /tmp/Website.log 2>&1
echo "$0 done $(date +%Y-%m-%d\ %H:%M:%S.%N)" >> /tmp/Website.log 2>&1
Log from today
cat /tmp/Website.log

Code: Select all

/home/pi/scripts/cumulusutils.sh started 2020-08-08 10:00:05.195457523
/home/pi/scripts/cumulusutils.sh slept 2020-08-08 10:00:06.216315503
/home/pi/scripts/cumulusutils.sh done 2020-08-08 10:00:58.447573045
PS
pwsFWI in upper left seems to require page refresh (CTRL F5) to display value from today?
Image
User avatar
HansR
Posts: 5871
Joined: Sat 20 Oct 2012 6:53 am
Weather Station: GW1100 (WS80/WH40)
Operating System: Raspberry OS/Bullseye
Location: Wagenborgen (NL)
Contact:

Re: For New Users

Post by HansR »

rogerthn wrote: Sat 08 Aug 2020 8:17 am That's the Dutch Swedish translations done :lol:
Don't understand Dutch/Swedish :? Your initial install should have had the English Language initially.
But anyway, I see your site in English and not Swedish so what exactly do you mean?

If you did finish the Swedish translation, then could you upload it in the language sharing thread please? Thanks!
rogerthn wrote: Sat 08 Aug 2020 8:17 am Daily program as below seems to work :D
OK, nice procedures, may be useful to others. Apparently you use a daily rollover at 10h00 (summertime, 9h00 wintertime). I would use a 5 second sleep as your data will increase (take more time) and some people may e.g. use a Pi Zero[W] which will definitely slow it all down.

FYI: I use crontab with the following entries:

Code: Select all

5 1 * * * cd /home/CumulusMX; ./cumulusutils.exe thrifty website
0 2 * * * cd /home/CumulusMX; ./cumulusutils.exe mapson
And subsequently I do a sysinfo every 10 minutes of the hour:

Code: Select all

# Do the sysinfo such that Cumulus can process it in time
09 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
19 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
29 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
39 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
49 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
59 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
Note that at 2 o'clock at night two instances will run. Under Linux they will both use the same log file which may be confusing if you don't expect it.

rogerthn wrote: Sat 08 Aug 2020 8:17 am PS
pwsFWI in upper left seems to require page refresh (CTRL F5) to display value from today?
No.

PwsFWI is calculated from the dayfile (and won't change until next day) and the value which is presented as the current value is always calculated on yesterdays values. Today is still a prediction from the values in the prediction file. This has been discussed before - see the original release thread - and seems to be confusing. However, the moisture processes in a forest are slow. If it suddenly gets hot - as it does now in the Netherlands - it takes some time for the pwsFWI to reach true higher fire danger levels. So I decided to let the Current Value only be the value based on the last measured data. This is inline with the 'smoothing' and 'quenching' procedures which ease the rise and fall of the pwsFWI value and are based/inspired on the slowness of absorption / release of water by forests and wood. This is a complex process about which a lot has been written. You could start with this blog in which I point to a google search on 'moisture content dampening forest'.

In short: pwsFWI is not a rapidly changing value.
Hans

https://meteo-wagenborgen.nl
CMX build 4017+ ● RPi 3B+ ● Raspbian Linux 6.1.21-v7+ armv7l ● dotnet 8.0.3
User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

HansR wrote: Sat 08 Aug 2020 9:24 am Don't understand Dutch/Swedish :? Your initial install should have had the English Language initially.
But anyway, I see your site in English and not Swedish so what exactly do you mean?
I do mean
rogerthn wrote: Thu 06 Aug 2020 7:25 pm Duizendmaal dank
and
HansR wrote: Fri 07 Aug 2020 5:21 am Du är välkommen :)
HansR wrote: Sat 08 Aug 2020 9:24 am If you did finish the Swedish translation, then could you upload it in the language sharing thread please? Thanks!
I will not do any Swedish translation in the near future ;)
HansR wrote: Sat 08 Aug 2020 9:24 am OK, nice procedures, may be useful to others. Apparently you use a daily rollover at 10h00 (summertime, 9h00 wintertime). I would use a 5 second sleep as your data will increase (take more time) and some people may e.g. use a Pi Zero[W] which will definitely slow it all down.
There seems to be some delay before the external program is running, see below but my sleep is now 10 seconds.

Code: Select all

/home/pi/scripts/cumulusutils.sh started 2020-08-08 10:00:05.195457523
I wasn't sure how execution of the external program was done, would CumulusMX wait while it was running or not.
HansR wrote: Sat 08 Aug 2020 9:24 am FYI: I use crontab with the following entries:

Code: Select all

5 1 * * * cd /home/CumulusMX; ./cumulusutils.exe thrifty website
0 2 * * * cd /home/CumulusMX; ./cumulusutils.exe mapson
OK, I might need thrifty when I have MORE data to process and then I need to have mapson at least once a week?
HansR wrote: Sat 08 Aug 2020 9:24 am And subsequently I do a sysinfo every 10 minutes of the hour:

Code: Select all

# Do the sysinfo such that Cumulus can process it in time
09 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
19 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
29 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
39 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
49 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
59 * * * * cd /home/CumulusMX; ./cumulusutils.exe sysinfo
Note that at 2 o'clock at night two instances will run. Under Linux they will both use the same log file which may be confusing if you don't expect it.
I will use something like this for sysinfo, thanks!
rogerthn wrote: Sat 08 Aug 2020 8:17 am PS
pwsFWI in upper left seems to require page refresh (CTRL F5) to display value from today?
HansR wrote: Sat 08 Aug 2020 9:24 amNo.
...
In short: pwsFWI is not a rapidly changing value.
Might be my browser, Google Chrome but I will make an other screenshot like below at 10:05 tomorrow
I do think that upper left wasn't updated until I did CTRL-F5 while the table to the right was
Annotation 2020-08-08 115753.png
You do not have the required permissions to view the files attached to this post.
Image
User avatar
HansR
Posts: 5871
Joined: Sat 20 Oct 2012 6:53 am
Weather Station: GW1100 (WS80/WH40)
Operating System: Raspberry OS/Bullseye
Location: Wagenborgen (NL)
Contact:

Re: For New Users

Post by HansR »

rogerthn wrote: Sat 08 Aug 2020 10:11 am I do mean
rogerthn wrote: Thu 06 Aug 2020 7:25 pm Duizendmaal dank
and
HansR wrote: Fri 07 Aug 2020 5:21 am Du är välkommen :)
HansR wrote: Sat 08 Aug 2020 9:24 am If you did finish the Swedish translation, then could you upload it in the language sharing thread please? Thanks!
I will not do any Swedish translation in the near future ;)
Aha.... :lol:
rogerthn wrote: Sat 08 Aug 2020 10:11 am
HansR wrote: Sat 08 Aug 2020 9:24 amNo.
...
In short: pwsFWI is not a rapidly changing value.
Might be my browser, Google Chrome but I will make an other screenshot like below at 10:05 tomorrow
I do think that upper left wasn't updated until I did CTRL-F5 while the table to the right was [image]
Don't need that extra screenshot. Indeed that seems to be a cache issue which I and others don't have (after an update it may happen though).
If that continues and you don't like that you may need to change the cache setting of your server - that's where it is defined - to 1 day max for html (and similar files).
The CMX graphs have caching disabled.
Hans

https://meteo-wagenborgen.nl
CMX build 4017+ ● RPi 3B+ ● Raspbian Linux 6.1.21-v7+ armv7l ● dotnet 8.0.3
User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

HansR wrote: Sat 08 Aug 2020 10:49 am Don't need that extra screenshot. Indeed that seems to be a cache issue which I and others don't have (after an update it may happen though).
If that continues and you don't like that you may need to change the cache setting of your server - that's where it is defined - to 1 day max for html (and similar files).
The CMX graphs have caching disabled.
Thanks!
Nothing major but I might look into cache settings later
First I need to install Version 4.1.0 :P
Image
User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

Now it is starting to be useful :D
If you don't mind, a user request add
the meteorological day used ends at
Maybe after Station Status |nnn.n pwsFWI | the meteorological day used ends at 10 am.
Image
User avatar
HansR
Posts: 5871
Joined: Sat 20 Oct 2012 6:53 am
Weather Station: GW1100 (WS80/WH40)
Operating System: Raspberry OS/Bullseye
Location: Wagenborgen (NL)
Contact:

Re: For New Users

Post by HansR »

Mmm... that is a notification I'd rather not have on its own in the menu bar.

But it might help for you that from version 4.1.0, there is a possibility to add additional info right and left in the title bar. Any HTML will do I assume. The header info is defined as a table so what you create will be the contents of a <td> field. Typically a <span> and you can give it any style you wish or create a nice image or whatever. If the height gets larger than the default, I assume (did not test) the height of the title bar will increase.

Otherwise I'll think about a configurable general info popup somewhere. But what info would the reader of the site need beside the start/end of meteorological day which would be so general it would need to be directly visible and not in the (eg) About This Site menu choice?

Summary: directly available are the header and the About->This Site menu choice.
If necessary, I'll think of an additional popup. Just the meteorological day info is not enough for an additional popup but maybe there are other items.

BTW: I don't think you are no longer a New User anymore ;) , so as a regular you can create a new thread for requests or questions and we discuss there.
Hans

https://meteo-wagenborgen.nl
CMX build 4017+ ● RPi 3B+ ● Raspbian Linux 6.1.21-v7+ armv7l ● dotnet 8.0.3
User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

Thanks!
Next "questions" will be in new topics and I do need to read release notes better next time :bash:
Image
stef942
Posts: 43
Joined: Mon 19 Oct 2009 8:17 pm
Weather Station: WMR200
Operating System: raspi3
Location: France-oise

Re: For New Users

Post by stef942 »

good morning i'm trying to setup cumulusutils, i created an utils directory and move cumulusutils.exe into cumulusMX directory, at first lauch i got following errors.
what am i doing wrong?
Thanks for help

Code: Select all

pi@raspberrypi:~/CumulusMX $ ls
acknowledgements.txt  CumulusMX.exe.config  Devart.Data.dll     Extrafileheader.txt  interface  LinqToTwitterPcl.dll   MXdiags   Renci.SshNet.dll   System.Net.Http.Extensions.dll System.Reactive.Linq.dll Unosquare.Swan.Lite.dll  webfilesbackup  cumulusutils.exe   Devart.Data.MySql.dll   FluentFTP.dll     Licences-Additional.txt   monthlyfileheader.txt  MXutils              Reports  System.Net.Http.Primitives.dll  System.Reactive.PlatformServices.dll  Updates.txt  wxnow.txt Cumulus.ini  data  ExportMySQL.exe   ftplog.txt  LICENSE mqtt                   Newtonsoft.Json.dll  samplestrings.ini  System.Reactive.Core.dll  Tmds.MDns.dll   utils CumulusMX.exe dayfileheader.txt ExportMySQL.exe.config  HidSharp.dll         LinqToTwitter.AspNet.dll  MQTTnet.dll  realtime.txt   sqlite3.dll  System.Reactive.Interfaces.dll  Unosquare.Labs.EmbedIO.dll web

pi@raspberrypi:~/CumulusMX $ ./cumulusutils.exe website
-bash: ./cumulusutils.exe: Permission denied

pi@raspberrypi:~/CumulusMX $ sudo ./cumulusutils.exe website
sudo: ./cumulusutils.exe: command not found
My weather station at Ver sur Launette - France (live) : http://stef942.free.fr/CMX
User avatar
rogerthn
Posts: 489
Joined: Thu 11 Apr 2013 6:31 pm
Weather Station: Ecowitt GW1000/GW1003
Operating System: Raspberry Pi OS bullseye aarch64
Location: Trollhättan Sweden
Contact:

Re: For New Users

Post by rogerthn »

What does ls -l cumulusutils.exe say?
Mine is

Code: Select all

pi@raspberrypi:~/CumulusMX $ ls -l cumulusutils.exe
-rwxr-xr-x 1 pi pi 611840 Nov  6 11:07 cumulusutils.exe
Maybe you are missing execute permission, try

Code: Select all

pi@raspberrypi:~/CumulusMX $ chmod +x cumulusutils.exe
pi@raspberrypi:~/CumulusMX $ ./cumulusutils.exe website
Image
stef942
Posts: 43
Joined: Mon 19 Oct 2009 8:17 pm
Weather Station: WMR200
Operating System: raspi3
Location: France-oise

Re: For New Users

Post by stef942 »

Code: Select all

pi@raspberrypi:~ $ cd ~/CumulusMX
pi@raspberrypi:~/CumulusMX $ ls -l cumulusutils.exe
-rw-r--r-- 1 pi pi 611840 Nov  7 07:58 cumulusutils.exe
pi@raspberrypi:~/CumulusMX $ chmod +x cumulusutils.exe
pi@raspberrypi:~/CumulusMX $ ./cumulusutils.exe website
pi@raspberrypi:~/CumulusMX $
thanks for your help ! it seems to work, i have a cumulusutils.ini file now

but this file is quite empty, is it normal?

Code: Select all


[General]
Language=en-GB

[Thrifty]
Top10RecordsPeriod=1
RainGraphsPeriod=1
TempGraphsPeriod=1
WindGraphsPeriod=1
SolarGraphsPeriod=1
MiscGraphsPeriod=1
MapsPeriod=1

[Website]
ShowSolar=true

[SysInfo]
ReportWidth=700
My weather station at Ver sur Launette - France (live) : http://stef942.free.fr/CMX
User avatar
HansR
Posts: 5871
Joined: Sat 20 Oct 2012 6:53 am
Weather Station: GW1100 (WS80/WH40)
Operating System: Raspberry OS/Bullseye
Location: Wagenborgen (NL)
Contact:

Re: For New Users

Post by HansR »

Mmm... I would have expected an entry for Maps in the ini on which it should fail because you would need to fill in some entries.
Could you post the logfile of this run please.
Hans

https://meteo-wagenborgen.nl
CMX build 4017+ ● RPi 3B+ ● Raspbian Linux 6.1.21-v7+ armv7l ● dotnet 8.0.3
stef942
Posts: 43
Joined: Mon 19 Oct 2009 8:17 pm
Weather Station: WMR200
Operating System: raspi3
Location: France-oise

Re: For New Users

Post by stef942 »

Code: Select all

2020-11-07 10:29:26.653  Support constructor
2020-11-07 10:29:26.690  Support constructor : Unit Wind (m/s, mph, km/h, kts): 2
2020-11-07 10:29:26.690  Support constructor : Unit Pressure (mb,hPa,inHg): 1
2020-11-07 10:29:26.690  Support constructor : Unit Rain (mm,in): 0
2020-11-07 10:29:26.690  Support constructor : Unit T (C,F): 0
2020-11-07 10:29:26.690  Support constructor : Unit Distance (m, mi, km, kn): 2
2020-11-07 10:29:26.702  CUstrings[xx].ini : CUstringsEN.ini looked for.
2020-11-07 10:29:26.703 CumulusUtils : ----------------------------
2020-11-07 10:29:26.703 CumulusUtils : Entering Main
2020-11-07 10:29:26.762 CommandLineArgs : starting
2020-11-07 10:29:26.762  CommandLineArgs : handling arg: website
2020-11-07 10:29:26.762 CommandLineArgs : End
2020-11-07 10:29:26.773 SystemStatus : starting
2020-11-07 10:29:26.862  GetUrlData Start: URL: http://localhost:8998/api/tags/process.json?version&build&ProgramUpTime&NewBuildAvailable&NewBuildNumber&CpuCount&CPUTemp 
2020-11-07 10:29:26.873  GetUrlData Calling GetAsync
2020-11-07 10:29:28.116 GetCMXInfo API : version: 3.8.4
2020-11-07 10:29:28.116 GetCMXInfo API : build: 3094
2020-11-07 10:29:28.116 GetCMXInfo API : ProgramUpTime: 0 days 0 hours
2020-11-07 10:29:28.116 GetCMXInfo API : NewBuildAvailable: 1
2020-11-07 10:29:28.116 GetCMXInfo API : NewBuildNumber: 3096
2020-11-07 10:29:28.117 GetCMXInfo API : CpuCount: 4
2020-11-07 10:29:28.117 GetCMXInfo API : CpuTemp: 
2020-11-07 10:29:28.118  SystemStatus: Found device 9 Oregon Scientific WMR200
2020-11-07 10:29:28.119 SystemStatus : DoingUnix
2020-11-07 10:29:28.125 SystemStatus : DoingUnix Start
2020-11-07 10:29:28.129 StartProcess uptime -p
2020-11-07 10:29:28.132 StartProcess just before Process.Start
2020-11-07 10:29:28.158 StartProcess just after Process.Start
2020-11-07 10:29:28.163 StartProcess uptime: output=up 28 minutes
2020-11-07 10:29:28.174 StartProcess lshw -quiet -class system
2020-11-07 10:29:28.174 StartProcess just before Process.Start
2020-11-07 10:29:28.184 Exception Unknown : ApplicationName='lshw', CommandLine='-quiet -class system', CurrentDirectory='', Native error= Cannot find the specified file
2020-11-07 10:29:28.187 Data (cont): mscorlib
2020-11-07 10:29:28.198 Data:   at System.Diagnostics.Process.StartWithCreateProcess (System.Diagnostics.ProcessStartInfo startInfo) [0x0029f] in <3d97dda773a54430b892e1d794e5d921>:0 
  at System.Diagnostics.Process.Start () [0x0003a] in <3d97dda773a54430b892e1d794e5d921>:0 
  at (wrapper remoting-invoke-with-check) System.Diagnostics.Process.Start()
  at CumulusUtils.SysInfo.StartProcess (System.String command, System.String parameters) [0x00072] in <b1f50d32593c4c69af8f18111c419c5d>:0 
  at CumulusUtils.SysInfo.DoingUnix (System.IO.StreamWriter of) [0x0017f] in <b1f50d32593c4c69af8f18111c419c5d>:0 
  at CumulusUtils.SysInfo.GenerateSystemStatus () [0x003b0] in <b1f50d32593c4c69af8f18111c419c5d>:0 
  at CumulusUtils.CMXutils.RealMain (System.String[] args) [0x001fd] in <b1f50d32593c4c69af8f18111c419c5d>:0 
  at CumulusUtils.CMXutils.Main (System.String[] args) [0x00351] in <b1f50d32593c4c69af8f18111c419c5d>:0 
2020-11-07 10:29:28.198 Exiting - check log file
My weather station at Ver sur Launette - France (live) : http://stef942.free.fr/CMX
User avatar
HansR
Posts: 5871
Joined: Sat 20 Oct 2012 6:53 am
Weather Station: GW1100 (WS80/WH40)
Operating System: Raspberry OS/Bullseye
Location: Wagenborgen (NL)
Contact:

Re: For New Users

Post by HansR »

OK, you don't have lshw installed which is required for the system information. I believe it is in the manual but not as a precondition. I will change that.
It finds an exception at an unexpected place. Sorry for that. It is now on the todo-list.

Run

Code: Select all

apt-get install lshw
and rerun CumulusUtils.
Hans

https://meteo-wagenborgen.nl
CMX build 4017+ ● RPi 3B+ ● Raspbian Linux 6.1.21-v7+ armv7l ● dotnet 8.0.3
stef942
Posts: 43
Joined: Mon 19 Oct 2009 8:17 pm
Weather Station: WMR200
Operating System: raspi3
Location: France-oise

Re: For New Users

Post by stef942 »

Thank you for your help, dont be sorry, me im sorry to be still so noob :bash:

so now this is cumulusutils.ini :

Code: Select all

[General]
Language=en-GB

[Thrifty]
Top10RecordsPeriod=1
RainGraphsPeriod=1
TempGraphsPeriod=1
WindGraphsPeriod=1
SolarGraphsPeriod=1
MiscGraphsPeriod=1
MapsPeriod=1

[Website]
ShowSolar=true

[SysInfo]
ReportWidth=700

[Maps]
Website=
and the last log :

Code: Select all

2020-11-07 11:46:31.305  Support constructor
2020-11-07 11:46:31.343  Support constructor : Unit Wind (m/s, mph, km/h, kts): 2
2020-11-07 11:46:31.343  Support constructor : Unit Pressure (mb,hPa,inHg): 1
2020-11-07 11:46:31.343  Support constructor : Unit Rain (mm,in): 0
2020-11-07 11:46:31.344  Support constructor : Unit T (C,F): 0
2020-11-07 11:46:31.344  Support constructor : Unit Distance (m, mi, km, kn): 2
2020-11-07 11:46:31.356  CUstrings[xx].ini : CUstringsEN.ini looked for.
2020-11-07 11:46:31.356 CumulusUtils : ----------------------------
2020-11-07 11:46:31.357 CumulusUtils : Entering Main
2020-11-07 11:46:31.416 CommandLineArgs : starting
2020-11-07 11:46:31.417  CommandLineArgs : handling arg: website
2020-11-07 11:46:31.417 CommandLineArgs : End
2020-11-07 11:46:31.428 SystemStatus : starting
2020-11-07 11:46:31.518  GetUrlData Start: URL: http://localhost:8998/api/tags/process.json?version&build&ProgramUpTime&NewBuildAvailable&NewBuildNumber&CpuCount&CPUTemp 
2020-11-07 11:46:31.530  GetUrlData Calling GetAsync
2020-11-07 11:46:32.779 GetCMXInfo API : version: 3.8.4
2020-11-07 11:46:32.779 GetCMXInfo API : build: 3094
2020-11-07 11:46:32.779 GetCMXInfo API : ProgramUpTime: 0 days 1 hours
2020-11-07 11:46:32.779 GetCMXInfo API : NewBuildAvailable: 1
2020-11-07 11:46:32.779 GetCMXInfo API : NewBuildNumber: 3096
2020-11-07 11:46:32.779 GetCMXInfo API : CpuCount: 4
2020-11-07 11:46:32.779 GetCMXInfo API : CpuTemp: 
2020-11-07 11:46:32.781  SystemStatus: Found device 9 Oregon Scientific WMR200
2020-11-07 11:46:32.782 SystemStatus : DoingUnix
2020-11-07 11:46:32.788 SystemStatus : DoingUnix Start
2020-11-07 11:46:32.791 StartProcess uptime -p
2020-11-07 11:46:32.794 StartProcess just before Process.Start
2020-11-07 11:46:32.821 StartProcess just after Process.Start
2020-11-07 11:46:32.825 StartProcess uptime: output=up 1 hour, 45 minutes
2020-11-07 11:46:32.837 StartProcess lshw -quiet -class system
2020-11-07 11:46:32.838 StartProcess just before Process.Start
2020-11-07 11:46:32.840 StartProcess just after Process.Start
2020-11-07 11:46:33.328 StartProcess lshw: output=raspberrypi
2020-11-07 11:46:33.328 StartProcess lshw: output=    description: ARMv7 Processor rev 4 (v7l)
2020-11-07 11:46:33.328 StartProcess lshw: output=    product: Raspberry Pi 3 Model B Rev 1.2
2020-11-07 11:46:33.328 StartProcess lshw: output=    serial: 00000000c01f7f02
2020-11-07 11:46:33.328 StartProcess lshw: output=    width: 32 bits
2020-11-07 11:46:33.328 StartProcess lshw: output=    capabilities: smp
2020-11-07 11:46:33.334 StartProcess uname -s -r -m
2020-11-07 11:46:33.334 StartProcess just before Process.Start
2020-11-07 11:46:33.337 StartProcess just after Process.Start
2020-11-07 11:46:33.342 StartProcess uname: output=Linux 5.4.51-v7+ armv7l
2020-11-07 11:46:33.343 StartProcess lsb_release -a
2020-11-07 11:46:33.343 StartProcess just before Process.Start
2020-11-07 11:46:33.349 StartProcess just after Process.Start
2020-11-07 11:46:33.564 StartProcess lsb_release: output=Distributor ID:	Raspbian
2020-11-07 11:46:33.564 StartProcess lsb_release: output=Description:	Raspbian GNU/Linux 10 (buster)
2020-11-07 11:46:33.564 StartProcess lsb_release: output=Release:	10
2020-11-07 11:46:33.564 StartProcess lsb_release: output=Codename:	buster
2020-11-07 11:46:33.791 StartProcess mono -V
2020-11-07 11:46:33.791 StartProcess just before Process.Start
2020-11-07 11:46:33.794 StartProcess just after Process.Start
2020-11-07 11:46:33.805 StartProcess mono: output=Mono JIT compiler version 6.12.0.90 (tarball Fri Sep  4 14:21:54 UTC 2020)
2020-11-07 11:46:33.805 StartProcess mono: output=Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
2020-11-07 11:46:33.805 StartProcess mono: output=	TLS:           __thread
2020-11-07 11:46:33.805 StartProcess mono: output=	SIGSEGV:       normal
2020-11-07 11:46:33.805 StartProcess mono: output=	Notifications: epoll
2020-11-07 11:46:33.805 StartProcess mono: output=	Architecture:  armel,vfp+hard
2020-11-07 11:46:33.805 StartProcess mono: output=	Disabled:      none
2020-11-07 11:46:33.805 StartProcess mono: output=	Misc:          softdebug 
2020-11-07 11:46:33.805 StartProcess mono: output=	Interpreter:   yes
2020-11-07 11:46:33.806 StartProcess mono: output=	LLVM:          yes(610)
2020-11-07 11:46:33.806 StartProcess mono: output=	Suspend:       preemptive
2020-11-07 11:46:33.806 StartProcess mono: output=	GC:            sgen (concurrent by default)
2020-11-07 11:46:33.806 StartProcess cat /proc/meminfo
2020-11-07 11:46:33.806 StartProcess just before Process.Start
2020-11-07 11:46:33.809 StartProcess just after Process.Start
2020-11-07 11:46:33.814 StartProcess cat: output=MemTotal:         948076 kB
2020-11-07 11:46:33.814 StartProcess cat: output=MemFree:          598264 kB
2020-11-07 11:46:33.814 StartProcess cat: output=MemAvailable:     762236 kB
2020-11-07 11:46:33.814 StartProcess cat: output=Buffers:           21452 kB
2020-11-07 11:46:33.814 StartProcess cat: output=Cached:           187292 kB
2020-11-07 11:46:33.814 StartProcess cat: output=SwapCached:            0 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Active:           214588 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Inactive:          94128 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Active(anon):     100244 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Inactive(anon):     6072 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Active(file):     114344 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Inactive(file):    88056 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Unevictable:          16 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Mlocked:              16 kB
2020-11-07 11:46:33.815 StartProcess cat: output=SwapTotal:        102396 kB
2020-11-07 11:46:33.815 StartProcess cat: output=SwapFree:         102396 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Dirty:             30388 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Writeback:             0 kB
2020-11-07 11:46:33.815 StartProcess cat: output=AnonPages:        100104 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Mapped:            59176 kB
2020-11-07 11:46:33.815 StartProcess cat: output=Shmem:              6348 kB
2020-11-07 11:46:33.816 StartProcess cat: output=KReclaimable:      13256 kB
2020-11-07 11:46:33.816 StartProcess cat: output=Slab:              25844 kB
2020-11-07 11:46:33.816 StartProcess cat: output=SReclaimable:      13256 kB
2020-11-07 11:46:33.816 StartProcess cat: output=SUnreclaim:        12588 kB
2020-11-07 11:46:33.816 StartProcess cat: output=KernelStack:        1200 kB
2020-11-07 11:46:33.816 StartProcess cat: output=PageTables:         1656 kB
2020-11-07 11:46:33.816 StartProcess cat: output=NFS_Unstable:          0 kB
2020-11-07 11:46:33.816 StartProcess cat: output=Bounce:                0 kB
2020-11-07 11:46:33.816 StartProcess cat: output=WritebackTmp:          0 kB
2020-11-07 11:46:33.816 StartProcess cat: output=CommitLimit:      576432 kB
2020-11-07 11:46:33.816 StartProcess cat: output=Committed_AS:     250104 kB
2020-11-07 11:46:33.816 StartProcess cat: output=VmallocTotal:    1114112 kB
2020-11-07 11:46:33.816 StartProcess cat: output=VmallocUsed:        3364 kB
2020-11-07 11:46:33.816 StartProcess cat: output=VmallocChunk:          0 kB
2020-11-07 11:46:33.816 StartProcess cat: output=Percpu:              464 kB
2020-11-07 11:46:33.817 StartProcess cat: output=CmaTotal:          65536 kB
2020-11-07 11:46:33.817 StartProcess cat: output=CmaFree:           63632 kB
2020-11-07 11:46:33.817 StartProcess df -T -text4 -tvfat -h
2020-11-07 11:46:33.817 StartProcess just before Process.Start
2020-11-07 11:46:33.820 StartProcess just after Process.Start
2020-11-07 11:46:33.826 StartProcess df: output=Filesystem     Type  Size  Used Avail Use% Mounted on
2020-11-07 11:46:33.826 StartProcess df: output=/dev/root      ext4   15G  2.2G   12G  16% /
2020-11-07 11:46:33.827 StartProcess df: output=/dev/mmcblk0p1 vfat  253M   54M  199M  22% /boot
2020-11-07 11:46:33.832 Support: Versionstring: <a href='https://cumulus.hosiene.co.uk/viewtopic.php?f=44&t=17998' target='_blank'>CumulusUtils</a> Version 4.6.2 - generated at 07/11/2020 11:46
2020-11-07 11:46:33.833 SystemStatus : done
2020-11-07 11:46:33.836 Timing of SysInfo generation = 2417 ms
2020-11-07 11:46:34.024 Maps GetFTPLock : Checking for a lockfile
2020-11-07 11:46:35.049 Maps GetFTPLock : No lockfile so create one
2020-11-07 11:46:35.806 Maps GetFTPLock : 
,    statuscode: ClosingData
    statusDescription: 226-File successfully transferred
226 0.057 seconds (measured here), 0.99 Kbytes per second

2020-11-07 11:46:37.037 Maps GetFTPLock : Lockfile create success!! ftp://ftp.meteo-wagenborgen.nl/web/cuMapLockfilegyquabsbwu
2020-11-07 11:46:37.037 Maps GetFTPLock : Done
2020-11-07 11:46:37.037 Map generation : Got a lock - commencing Map generation
2020-11-07 11:46:37.068 MapsOn: Start
2020-11-07 11:46:38.246  DownloadXml: ResponseHeaders for Download:
Date: Sat, 07 Nov 2020 10:46:38 GMT
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips mod_fcgid/2.3.9 PHP/5.5.35 mod_python/3.5.0- Python/2.7.5
Last-Modified: Sat, 07 Nov 2020 09:04:20 GMT
ETag: "1b92-5b3809d4ffaa8"
Accept-Ranges: bytes
Content-Length: 7058
Vary: Accept-Encoding,User-Agent
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/xml


2020-11-07 11:46:38.247  DownloadXml: Done
2020-11-07 11:46:38.315  MapsOn: Station ver sur launette not found in XML!
2020-11-07 11:46:38.316  MapsOn: Adding Station: ver sur launette
2020-11-07 11:46:38.316 Maps->MapsOn: Not enough info for Entry!!
2020-11-07 11:46:38.316 Maps->MapsOn: Name: ver sur launette
2020-11-07 11:46:38.316 Maps->MapsOn: Description:ver sur launette
2020-11-07 11:46:38.316 Maps->MapsOn: Website: 
2020-11-07 11:46:38.316 Maps->MapsOn: Latitude: 49.106666666666669
2020-11-07 11:46:38.316 Maps->MapsOn: Longitude: 2.6830555555555553
2020-11-07 11:46:38.316 Maps->MapsOn: Website is compulsory so exit here!!
Hope it helps
My weather station at Ver sur Launette - France (live) : http://stef942.free.fr/CMX
Post Reply