weewx with SteelSeries

513 views
Skip to first unread message

Robert Schneider

unread,
Aug 27, 2017, 12:32:49 PM8/27/17
to weewx-user
Hello all 
look for some help geting the steelseries working with WeeWX 3.7.1
I get the page to up But no data is gowing to the page . 

here is the weewx.config StdReport

#   This section specifies what reports, using which skins, to generate.

[StdReport]

 
    

    # Where the skins reside, relative to WEEWX_ROOT
    SKIN_ROOT = /etc/weewx/skins
    
    # Where the generated reports should go, relative to WEEWX_ROOT
     HTML_ROOT = /var/www/html/weewx
     
    [[SteelSeries]]
        skin = ss
        HTML_ROOT = public_html/ss

    
    # The database binding indicates which data should be used in reports.
    data_binding = wx_binding

gjr80

unread,
Aug 27, 2017, 2:30:26 PM8/27/17
to weewx-user
Hi,

Could be any one of a number of issues. Is gauge-data.txt being generated by weeWX? If so where is it being saved? Is is available to your web server? What does the config section of gauges.js look like? Does the realTimeUrlWeewx setting actually point to gauge-data.txt. Rember paths are relative to your web servers root.

Gary.

Robert Schneider

unread,
Aug 28, 2017, 6:41:42 PM8/28/17
to weewx-user
Thanks for the info , but i will have to take baby steps as i know verey litte about weewx . 

here is the gauge-data.txt.tmpl file 

## template for json data to feed the steel series gauges
## $Id: gauge-data.txt.tmpl 1279 2015-03-01 15:49:03Z mwall $
## by Matthew Wall on flight 868 ;)
## 31dec2014
## Updated 25jan2015 by M Crossley, changed cloudbase: to cloudbasevalue:
## Updated 12jan2016 by M Crossley, fixes applied from here: https://groups.google.com/forum/#!topic/weewx-user/rDdSbzQWbFw
## Updated 12mar2016 by M Crossley, force pressure UoM mbar to mb.
##                                  added UoM consitency from unit_type rather than labels which can be localised
##                                  force rain in cm to mm as gauges do not currently handle cm's.
## Updated 04oct2016 by M Crossley, added changes from PR4
## definitions for the tags can be found here:
##
## the following fields are not directly available from weewx:
##
## ver:10?
## apptemp - calculated in this template
## apptempTL
## apptempTH
## TapptempTL
## TapptempTH
## humidex - calculated in this template
## forecast - calculated by forecasting module
## LastRainTipISO
## Tbeaufort - calculated by this template
## BearingRangeFrom10 - lowest clockwise bearing in last 10 minutes
## BearingRangeTo10 - highest clockwise bearing in last 10 minutes
## CurrentSolarMax - calculated in this template
## WindRoseData
## windrun - calculated in this template
##
## ver:12
## cloudbasevalue - calculated in this template in feet
## cloudbaseunit - defined in this template as ft
##
## ver:13
## changed UoMs
##
#import math
#import time
##
## get the time in formats that we need later
#set $ts=float($current.dateTime.raw)
#set $timeutc=time.strftime("%Y,%m,%d,%H,%M,%S", time.gmtime($ts))
##
## get some formats for calculated obs
#set $temp_format = $unit.format.outTemp
#set $press_format = $unit.format.pressure
#set $rain_format = $unit.format.rain
#set $rainrate_format = $unit.format.rainRate
#set $cloudbase_format = $unit.format.cloudbase
#set $windrun_format = $unit.format.windrun
#set $radiation_format = $unit.format.radiation
##
## see if the station has contact with the sensor
#set $sensorContactLost = 0
#set $rxchk = $getVar('current.rxCheckPercent.raw', 100)
#if $rxchk is not None and $rxchk == 0
#set $sensorContactLost = 1
#end if
##
## calculate humidex
#if $varExists('current.outTemp') and $current.outTemp.raw is not None and $varExists('current.dewpoint') and $current.dewpoint.raw is not None
#set $oT_C = $current.outTemp.degree_C.raw
#set $dp_K = $current.dewpoint.degree_C.raw + 273.16
#set $e = 6.11 * math.exp(5417.7530 * ((1/273.16) - 1/$dp_K))
#set $h = 0.5555 * ($e - 10.0)
#if $h > 0
#set $humidex = $oT_C + $h
#else
#set $humidex = $oT_C
#end if
#if $unit.unit_type.outTemp == 'degree_F'
#set $humidex = 32.0 + 1.8 * $humidex
#end if
#set $humidex = $temp_format % $humidex
#else
#set $humidex = 'N/A'
#end if
##
## calculate apparent temperature
##
## AT = Ta + 0.33*e - 0.70*ws - 4.00
##   where AT and Ta (air temperature) are deg-C,
##   e is water vapor pressure
##   ws is wind speed (m/s) at elevation of 10 meters
## e = rh / 100 * 6.105 * exp(17.27 * Ta / (237.7 + Ta))
##   rh is relative humidity
##
## AT = -2.7 + 1.04*T + 2.0*e -0.65*v
##   where AT and T (air temperature) are deg-C,
##   e is vapor pressure in kPa,
##   and v is 10m wind speed in m/sec
##
#if $varExists('current.outTemp') and $current.outTemp.raw is not None and $varExists('current.outHumidity') and $current.outHumidity.raw is not None and $varExists('current.windSpeed') and $current.windSpeed.raw is not None
#set $oT_C = $current.outTemp.degree_C.raw
#set $rh = $current.outHumidity.raw
#set $ws = $current.windSpeed.meter_per_second.raw
#set $e = ($rh / 100) * 6.105 * math.exp(17.27 * $oT_C / (237.7 + $oT_C))
#set $apptemp = $oT_C + 0.33 * $e - 0.7 * $ws - 4.0
#if $unit.unit_type.outTemp == 'degree_F'
#set $apptemp = 32.0 + 1.8 * $apptemp
#end if
#set $apptemp = $temp_format % $apptemp
#else
#set $apptemp = 'N/A'
#end if
##
## calculate the cloud base in feet
#if $varExists('current.outTemp') and $current.outTemp.raw is not None and $varExists('current.dewpoint') and $current.dewpoint.raw is not None
#set $oT_F = $current.outTemp.degree_F.raw
#set $dp_F = $current.dewpoint.degree_F.raw
#set $a_f = $station.altitude.foot.raw
#set $cloudbase = (($oT_F - $dp_F) / 4.4 * 1000) + $a_f
#set $cloudbase = $cloudbase_format % $cloudbase
#else
#set $cloudbase = 'N/A'
#end if
##
## calculate the wind run for the day
## FIXME: this is an approximation since averages are per-hour
#set $t = time.localtime($ts)
#set $windrun = 0
#for $n in range($t[3])
#set $ago = $hours_ago(hours_ago=$n).windSpeed.avg.raw
#if $ago is not None
#set $windrun = $windrun + $ago
#end if
#end for
#if $unit.unit_type.windSpeed == 'meter_per_second'
#set $windrun = $windrun / 3.6
#end if
#set $windrun = $windrun_format % $windrun
##
## calulate solar max
## Ryan-Stolzenbach, MIT 1972 formula
##
##       el - solar elevation in decimal degrees
##        R - distance from earth to sun in AU
##      atc - atmospheric transmission coefficient (0.70-0.91)
##        z - elevation in meters
##
#if $almanac.hasExtras
#set $rs_el = $almanac.sun.alt
#set $rs_R = $almanac.sun.earth_distance
#set $rs_atc = 0.8
#set $rs_z = $station.altitude.meter.raw
#set $rs_nrel = 1367.0
#set $rs_sinel = math.sin($rs_el * math.pi / 180.0)
#if $rs_z is not None and $rs_R is not None
#if $rs_sinel < 0
#set $solarMax = 0
#else
#set $rs_rm = math.pow((288.0-0.0065*$rs_z)/288.0,5.256)/($rs_sinel+0.15*math.pow($rs_el+3.885,-1.253))
#set $rs_toa = $rs_nrel * $rs_sinel / ($rs_R * $rs_R)
#set $solarMax = $rs_toa * math.pow($rs_atc, $rs_rm)
#end if
#set $solarMax = $radiation_format % $solarMax
#else
#set $solarMax = 'N/A'
#end if
#else
#set $solarMax = 'N/A'
#end if
##
## calculate today's highest beaufort based on wind speed in knots
#if $varExists('day.windSpeed') and $day.windSpeed.max.raw is not None
#if $unit.unit_type.windSpeed == 'mile_per_hour'
#set $kts = $day.windSpeed.max.raw * 0.8689762
#elif $unit.unit_type.windSpeed == 'km_per_hour'
#set $kts = $day.windSpeed.max.raw * 0.539956
#elif $unit.unit_type.windSpeed == 'meter_per_second'
#set $kts = $day.windSpeed.max.raw * 1.943844
#elif $unit.unit_type.windSpeed == 'knot'
#set $kts = $day.windSpeed.max.raw
#else
#set $kts = 0
#end if
#if $kts < 1
#set $beaufort = 0
#elif $kts < 4
#set $beaufort = 1
#elif $kts < 7
#set $beaufort = 2
#elif $kts < 11
#set $beaufort = 3
#elif $kts < 17
#set $beaufort = 4
#elif $kts < 22
#set $beaufort = 5
#elif $kts < 28
#set $beaufort = 6
#elif $kts < 34
#set $beaufort = 7
#elif $kts < 41
#set $beaufort = 8
#elif $kts < 48
#set $beaufort = 9
#elif $kts < 56
#set $beaufort = 10
#elif $kts < 64
#set $beaufort = 11
#else
#set $beaufort = 12
#end if
#else
#set $beaufort = 'N/A'
#end if
##
## if forecasting is installed, report the Zambretti forecast
#if $varExists('forecast.zambretti')
#set $fc = $forecast.label('Zambretti', $forecast.zambretti.code)
#else
#set $fc = 'forecast is not available'
#end if
##
#set $_trend = $trend(time_delta=3600).outTemp.raw
#if $_trend is None
#set $_trend = 0
#end if
#set $t_trend = $temp_format % $_trend
##
#set $_trend = $trend(time_delta=10800).barometer.raw
#if $_trend is None
#set $_trend = 0
#end if
#set $p_trend = $press_format % $_trend
##
## Set consistent units of measure
## Pressure UoM
#set $UOM_bar = $unit.unit_type.barometer
#if $UOM_bar == 'mbar'
#set $UOM_bar = 'mb'
#end if
##
## Temperature UoM
#if $unit.unit_type.outTemp == 'degree_F'
#set $UOM_temp = 'F'
#else
#set $UOM_temp = 'C'
#end if
##
## Windspeed UoM
#if $unit.unit_type.windSpeed == 'mile_per_hour'
#set $UOM_wind = 'mph'
#elif $unit.unit_type.windSpeed == 'km_per_hour'
#set $UOM_wind = 'km/h'
#elif $unit.unit_type.windSpeed == 'knot'
#set $UOM_wind = 'kts'
#elif $unit.unit_type.windSpeed == 'meter_per_second'
#set $UOM_wind = 'm/s'
#end if
##
## Rain UoM
#set $rain_mult = 1
#set $UOM_rain = $unit.unit_type.rain
#if $unit.unit_type.rain == 'inch'
#set $UOM_rain = 'in'
#elif $unit.unit_type.rain == 'cm'
## Gauges do not handle cm, convert to mm
#set $UOM_rain = 'mm'
#set $rain_mult = 10
#end if
#set $day_rain = $rain_format % ($day.rain.sum.raw * $rain_mult)
#set $current_rainrate = $rainrate_format % ($current.rainRate.raw * $rain_mult)
#set $day_rainrate_max = $rainrate_format % ($day.rainRate.max.raw * $rain_mult)
#set $hour_rain_max = $rain_format % ($hour.rain.max.raw * $rain_mult)
##
## Today's High Hourly Rain
#set $hourlyrainTH = 0
#set $ThourlyrainTH = ''
#for $hour in $day.hours
#if $hour.rain.sum.raw > $hourlyrainTH
#set $hourlyrainTH = $hour.rain.sum.raw
#set $ThourlyrainTH = $hour.dateTime.format("%H:%M")
#end if
#end for
#set $hourlyrainTH = $hourlyrainTH * $rain_mult
#set $hourlyrainTH = $rain_format % $hourlyrainTH
##
{
           "timeUTC":"$timeutc",
              "date":"$current.dateTime.format('%Y.%m.%d %H:%M')",
        "dateFormat":"y.m.d h:m",
 "SensorContactLost":"$sensorContactLost",
          "tempunit":"$UOM_temp",
          "windunit":"$UOM_wind",
         "pressunit":"$UOM_bar",
          "rainunit":"$UOM_rain",
     "cloudbaseunit":"ft",
              "temp":"$current.outTemp.formatted",
            "tempTL":"$day.outTemp.min.formatted",
            "tempTH":"$day.outTemp.max.formatted",
           "TtempTL":"$day.outTemp.mintime",
           "TtempTH":"$day.outTemp.maxtime",
         "temptrend":"$t_trend",
            "intemp":"$current.inTemp.formatted",
               "hum":"$current.outHumidity.formatted",
             "humTL":"$day.outHumidity.min.formatted",
             "humTH":"$day.outHumidity.max.formatted",
            "ThumTL":"$day.outHumidity.mintime",
            "ThumTH":"$day.outHumidity.maxtime",
             "inhum":"$current.inHumidity.formatted",
               "dew":"$current.dewpoint.formatted",
        "dewpointTL":"$day.dewpoint.min.formatted",
        "dewpointTH":"$day.dewpoint.max.formatted",
       "TdewpointTL":"$day.dewpoint.mintime",
       "TdewpointTH":"$day.dewpoint.maxtime",
            "wchill":"$current.windchill.formatted",
          "wchillTL":"$day.windchill.min.formatted",
         "TwchillTL":"$day.windchill.mintime",
         "heatindex":"$current.heatindex.formatted",
       "heatindexTH":"$day.heatindex.max.formatted",
      "TheatindexTH":"$day.heatindex.maxtime",
           "apptemp":"$apptemp",
         "apptempTL":"0",
         "apptempTH":"0",
        "TapptempTL":"",
        "TapptempTH":"",
           "humidex":"$humidex",
             "press":"$current.barometer.formatted",
            "pressL":"$year.barometer.min.formatted",
            "pressH":"$year.barometer.max.formatted",
           "pressTL":"$day.barometer.min.formatted",
           "pressTH":"$day.barometer.max.formatted",
          "TpressTL":"$day.barometer.mintime",
          "TpressTH":"$day.barometer.maxtime",
     "presstrendval":"$p_trend",
             "rfall":"$day_rain",
             "rrate":"$current_rainrate",
           "rrateTM":"$day_rainrate_max",
          "TrrateTM":"$day.rainRate.maxtime",
      "hourlyrainTH":"$hourlyrainTH",
     "ThourlyrainTH":"$ThourlyrainTH",
    "LastRainTipISO":"2000-01-01 00:00",
           "wlatest":"$current.windGust.formatted",
            "wspeed":"$current.windSpeed.formatted",
            "windTM":"$day.windSpeed.max.formatted",
             "wgust":"$current.windGust.formatted",
           "wgustTM":"$day.windGust.max.formatted",
          "TwgustTM":"$day.windGust.maxtime",
           "bearing":"$current.windDir.formatted",
        "avgbearing":"$day.wind.vecdir.formatted",
         "bearingTM":"$day.wind.gustdir.formatted",
"BearingRangeFrom10":"000",
  "BearingRangeTo10":"000",
        "domwinddir":"$day.wind.vecdir.ordinal_compass",
      "WindRoseData":[],
           "windrun":"$windrun",
         "Tbeaufort":"F$beaufort",
                "UV":"$current.UV",
              "UVTH":"$day.UV.max.formatted",
          "SolarRad":"$current.radiation.formatted",
           "SolarTM":"$day.radiation.max.formatted",
   "CurrentSolarMax":"$solarMax",
    "cloudbasevalue":"$cloudbase",
          "forecast":"$fc",
           "version":"$station.version",
             "build":"",
               "ver":"13"

gjr80

unread,
Aug 28, 2017, 7:05:04 PM8/28/17
to weewx-user
WeeWX takes the gauge-data.txt.tmpl template file and produces the file gauge-data.txt that contains the data used by the SteelSeries gauges. Our first step is to confirm gauge-data.txt is being generated. The simplest way to do this is to look in your directory tree for the file. If you are new to weeWX I assume you re using an out of the box .deb or setup.py install. Depending on which install will determine where the generated data gauge-data.txt is stored. Have a look in the /var/www/html/weewx (.deb) or /home/weewx/public_html (setup.py) directories. Is there a directory named ss in either of these directories? If so look in the ss directory, is there gauge-data.txt file? Assuming there is have a look at its contents, you should see a lot of field names and values. Take note of the full path to the gauge-data.txt file. If you cannot find gauge-data.txt or any of the directories we will need to use some debug settings and look at the weeWX log to see what is going on.

Let us know what you find.

Gary

Robert Schneider

unread,
Aug 28, 2017, 7:07:38 PM8/28/17
to weewx-user
I check the log file and i see this in it .


Aug 28 19:00:16 debian weewx[30456]: reportengine: Running reports for latest time in the database.
Aug 28 19:00:16 debian weewx[30456]: reportengine: Running report SteelSeries
Aug 28 19:00:16 debian weewx[30456]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 28 19:00:16 debian weewx[30456]: restx: PWSWeather: Published record 2017-08-28 19:00:00 EDT (1503961200)
Aug 28 19:00:16 debian weewx[30456]: copygenerator: copied 6 files to /public_html/ss
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 28 19:00:17 debian weewx[30456]: manager: Daily summary version is 2.0
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: Generate failed with exception '<type 'exceptions.OSError'>'
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/index.html.tmpl
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: **** Reason: [Errno 2] No such file or directory: '/etc/weewx/skins/ss/index.html.tmpl'
Aug 28 19:00:17 debian weewx[30456]: ****  Traceback (most recent call last):
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 28 19:00:17 debian weewx[30456]: ****      filtersLib=weewx.cheetahgenerator)
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 28 19:00:17 debian weewx[30456]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1546, in _compile
Aug 28 19:00:17 debian weewx[30456]: ****      self._fileMtime = os.path.getmtime(file)

gjr80

unread,
Aug 28, 2017, 7:11:53 PM8/28/17
to weewx-user
That's a little different to the original problem, no matter. The template file that is used to generate the SteelSeries HTML page cannot be found. Go back and check the weeWX SteelSeries install instructions carefully making sure (and verify) everything has been copied to the correct directories on the weeWX machine.

Gary

Robert Schneider

unread,
Aug 28, 2017, 7:37:14 PM8/28/17
to weewx-user
Will do thanks 

Robert Schneider

unread,
Aug 28, 2017, 7:48:33 PM8/28/17
to weewx-user
its telling me to added 
 [StdReport]
    ...
    [[SteelSeries]]
        skin = ss
        HTML_ROOT = public_html/ss
wen i added i get this Err
root@debian:~# sudo tail -f /var/log/syslog
Aug 28 19:45:57 debian systemd[1]: Starting LSB: weewx weather system...
Aug 28 19:45:57 debian weewx[30792]: engine: Initializing weewx version 3.7.1
Aug 28 19:45:57 debian weewx[30792]: engine: Using Python 2.7.13 (default, Jan 19 2017, 14:48:08) #012[GCC 6.3.0 20170118]
Aug 28 19:45:57 debian weewx[30792]: engine: Platform Linux-4.9.0-3-686-pae-i686-with-debian-9.1
Aug 28 19:45:57 debian weewx[30792]: engine: Locale is 'en_US.UTF-8'
Aug 28 19:45:57 debian weewx[30792]: engine: pid file is /var/run/weewx.pid
Aug 28 19:45:57 debian weewx[30782]: Starting weewx weather system: weewx.
Aug 28 19:45:57 debian systemd[1]: Started LSB: weewx weather system.
Aug 28 19:45:57 debian weewx[30796]: engine: Error while parsing configuration file /etc/weewx/weewx.conf
Aug 28 19:45:57 debian weewx[30796]: ****    Reason: 'Parsing failed with several errors.#012First error at line 188.'

Robert Schneider

unread,
Aug 28, 2017, 8:06:35 PM8/28/17
to weewx-user
This what i had to to stop geting Err 
But this not working 


[StdReport]

 
    

    # Where the skins reside, relative to WEEWX_ROOT
    SKIN_ROOT = /etc/weewx/skins
    
    # Where the generated reports should go, relative to WEEWX_ROOT
     HTML_ROOT = /var/www/html/weewx
     

    [[SteelSeries]]
        skin = ss
        HTML_ROOT = /var/www/html/weewx/ss

gjr80

unread,
Aug 28, 2017, 8:49:29 PM8/28/17
to weewx-user
Ok, this


  # Where the generated reports should go, relative to WEEWX_ROOT
     HTML_ROOT = /var/www/html/weewx

tells me you have a .deb (or dpkg) weeWX install. Not sure why the parsing error appeared, directory public_html does not exist on a .deb install but that should not give a parsing error. No matter. I assume you are back to having this error:


Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: Generate failed with exception '<type 'exceptions.OSError'>'
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/index.html.tmpl
Aug 28 19:00:17 debian weewx[30456]: cheetahgenerator: **** Reason: [Errno 2] No such file or directory: '/etc/weewx/skins/ss/index.html.tmpl'
Aug 28 19:00:17 debian weewx[30456]: ****  Traceback (most recent call last):
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 28 19:00:17 debian weewx[30456]: ****      filtersLib=weewx.cheetahgenerator)
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 28 19:00:17 debian weewx[30456]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 28 19:00:17 debian weewx[30456]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1546, in _compile
Aug 28 19:00:17 debian weewx[30456]: ****      self._fileMtime = os.path.getmtime(file)

Did you check that all of the SteelSeries skin files are where they should be? With a deb install your skins directory will be /etc/weewx/skins. If you copied the SteelSeries skin files over you should have a directory /etc/weewx/skins/ss and in that directory you should have the file index.html.tmpl. Is this file there? If not it needs to be copied over. Also if index.html.tmpl is not there it begs the question are the other files there as well, I am guessing skin.conf is there or the skin would not be processed.

On the other hand if you are no longer getting the above error, are you getting any errors in your log or none at all?

Gary

Robert Schneider

unread,
Aug 28, 2017, 10:20:40 PM8/28/17
to weewx-user
Its a Debian 9 with Weewx 

It looks like i have it working now . 
But it looks like the battey is gowing bad in the out door unit . 

gjr80

unread,
Aug 28, 2017, 10:22:52 PM8/28/17
to weewx-user
On Tuesday, 29 August 2017 12:20:40 UTC+10, Robert Schneider wrote:
Its a Debian 9 with Weewx 

It looks like i have it working now . 

That is good to hear

But it looks like the battey is gowing bad in the out door unit .

Afraid you are on your own with that one :)

Gary

Robert Schneider

unread,
Aug 28, 2017, 10:40:18 PM8/28/17
to weewx-user
I will go to the roof and replace it , It bine thair for 15 years 

Andrew Milner

unread,
Aug 28, 2017, 11:27:09 PM8/28/17
to weewx-user
Is it the roof or the battery that has been there for 15 years and now needs replacing??

Robert Schneider

unread,
Aug 28, 2017, 11:29:04 PM8/28/17
to weewx...@googlegroups.com
both .. thanks 

--
You received this message because you are subscribed to a topic in the Google Groups "weewx-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/cErsAKZV-3s/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Andrew Milner

unread,
Aug 29, 2017, 12:17:56 AM8/29/17
to weewx-user
my gosh - 15 years for a battery must be something of a record!!!!
both .. thanks 

To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.

Robert Schneider

unread,
Aug 29, 2017, 6:38:28 PM8/29/17
to weewx...@googlegroups.com
We would the update to the page come from , Its showing the weather station has not updated in 20 hrs 


To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.

gjr80

unread,
Aug 29, 2017, 7:14:01 PM8/29/17
to weewx-user
Once the SteelSeries skin is installed and functioning correctly weeWX should be producing a new gauge-data.txt file during each report cycle that runs at the end of each archive period. The fact that you have values displayed on your gauges would indicate that the SteelSeries 'page' has found a gauge-data.txt and has been able to extract data from it (if it had not the gauges would have no hands). The message about the station being offline and data 20 hours old would indicate that the date-time info in the gauge-data.txt that is being used is some 20 hours old.

So how to troubleshoot. First off check there are now obvious error messages in your weeWX log. If there are any errors then provide details (log extract) if there are not then try the following.

You need to verify that the SteelSeries skin is generating the necessary files. You can verify this is happening in a couple of ways, looking at gauge-data.txt or looking at the logs. Find the generated gauge-data.txt file on your weeWX machine (possibly in /var/www/html/weewx/ss), open it and have a look at the contents. Does the 'date' field change on each report cycle? If it does then the issue is likely one of the SteelSeries 'page' not being able to get access to the newly generated gauge-data.txt. If the date is not changing from report cycle to report cycle then something is amiss. Have a look in your weeWX log, do you see regular entries where a record is being saved to archive? eg

Aug 30 08:50:16 jessie3 weewx[1073]: manager: Added record 2017-08-30 08:50:00 AEST (1504047000) to database 'weewx.sdb'
Aug 30 08:50:16 jessie3 weewx[1073]: manager: Added record 2017-08-30 08:50:00 AEST (1504047000) to daily summary in 'weewx.sdb'
Aug 30 08:50:16 jessie3 weewx[1073]: reportengine: Running reports for latest time in the database.

.... removed entries for brevity

Aug 30 08:55:16 jessie3 weewx[1073]: manager: Added record 2017-08-30 08:55:00 AEST (1504047300) to database 'weewx.sdb'
Aug 30 08:55:16 jessie3 weewx[1073]: manager: Added record 2017-08-30 08:55:00 AEST (1504047300) to daily summary in 'weewx.sdb'
Aug 30 08:55:16 jessie3 weewx[1073]: reportengine: Running reports for latest time in the database.

If you don't see regular entries, or the date-time of each record being added is not increasing, then you have a fundamental problem with your weeWX install and that needs to be fixed before the SteelSeries page will function correctly.

If the date-time is increasing are the files being generated by the SteelSeries skin? You should see something like this in your log:

Aug 30 09:05:16 jessie3 weewx[1125]: manager: Added record 2017-08-30 09:05:00 AEST (1504047900) to database 'weewx.sdb'
Aug 30 09:05:16 jessie3 weewx[1125]: manager: Added record 2017-08-30 09:05:00 AEST (1504047900) to daily summary in 'weewx.sdb'
Aug 30 09:05:16 jessie3 weewx[1125]: cheetahgenerator: Generated 14 files for report StandardReport in 0.49 seconds
Aug 30 09:05:16 jessie3 weewx[1125]: imagegenerator: Generated 12 images for StandardReport in 0.07 seconds
Aug 30 09:05:16 jessie3 weewx[1125]: copygenerator: copied 14 files to /home/weewx/public_html
Aug 30 09:05:16 jessie3 weewx[1125]: copygenerator: copied 6 files to /home/weewx/public_html/ss
Aug 30 09:05:17 jessie3 weewx[1125]: cheetahgenerator: Generated 2 files for report SteelSeries in 0.09 seconds
Aug 30 09:05:17 jessie3 weewx[1125]: imagegenerator: Generated 11 images for SteelSeries in 0.09 seconds

The 2 files generated are gauge-data.txt and index.html. The 11 images are the plots used for mouseovers on the gauges.

If the files are being generated and the 'date' in the generated gauge-data.txt is increasing (and is current) then the issue is likely one of the SteelSeries 'page' not being able to get access to the newly generated files. To troubleshoot this we will need to know how your system is setup; is the weeWX machine and your web server one and the same, is the web server another machine on a LAN or do you use external hosting. If not on the same machine how are the generated SteelSeries files being transferred to the web server?

Work through the above and let us know what you find. Log extracts are often more helpful than descriptive text.

Gary

Robert Schneider

unread,
Aug 29, 2017, 7:30:11 PM8/29/17
to weewx...@googlegroups.com
should the files gauge-data.txt and index.html
or should the have .tmpl after them 

To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.

gjr80

unread,
Aug 29, 2017, 7:38:28 PM8/29/17
to weewx-user
.tmpl files are template files used by the Cheetah template engine to produce other files using the structure of the template and data from some other source. In the case of weeWX the data is from the weeWX database. In weeWX the generated file is the same name as the template but without the .tmpl. So the template file gauge-data.txt.tmpl will result in the file gauge-data.txt being gernerated. In answeer to your question, it depends on what you are looking at. The ss directory will contain .tmpl files - that is where the templates for the ss skin reside. The /var/www/html/weewx/ss directory will not contain .tmpl files as that is where the generated files are saved. So it depends as to whether you are looking at the templates or the generated output. I would think you would be interested in the output.

Gary

Robert Schneider

unread,
Aug 29, 2017, 7:41:51 PM8/29/17
to weewx...@googlegroups.com
all so i see the data has not change . 

gjr80

unread,
Aug 29, 2017, 7:46:30 PM8/29/17
to weewx-user
Ok, please post a copy of your weewx log showing at least 2 full report cycles.

Gary

Robert Schneider

unread,
Aug 29, 2017, 7:49:29 PM8/29/17
to weewx...@googlegroups.com
i DO NOT SEE A WEEWX.LOG IN THE VAR/LOG 

To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.

gjr80

unread,
Aug 29, 2017, 7:50:31 PM8/29/17
to weewx-user
If you have not changed anything it will be in /var/log/syslog

Gary

Robert Schneider

unread,
Aug 29, 2017, 8:01:55 PM8/29/17
to weewx...@googlegroups.com
Aug 29 00:06:11 debian liblogging-stdlog:  [origin software="rsyslogd" swVersion="8.24.0" x-pid="449" x-info="http://www.rsyslog.com"] rsyslogd was HUPed
Aug 29 00:06:11 debian anacron[32413]: Job `cron.daily' terminated
Aug 29 00:06:13 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2059000 - Capturing at 10.00 fps]
Aug 29 00:06:39 debian zmc_m2[12122]: INF [Down-Driveway: 2011000 - Capturing at 10.00 fps]
Aug 29 00:06:45 debian zma_m2[12123]: INF [Down-Driveway: 2005000 - Analysing at 10.00 fps]
Aug 29 00:06:57 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:06:57 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:07:03 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:07:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2011000 - Analysing at 10.00 fps]
Aug 29 00:07:53 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2060000 - Capturing at 10.00 fps]
Aug 29 00:08:19 debian zmc_m2[12122]: INF [Down-Driveway: 2012000 - Capturing at 10.00 fps]
Aug 29 00:08:25 debian zma_m2[12123]: INF [Down-Driveway: 2006000 - Analysing at 10.00 fps]
Aug 29 00:09:01 debian CRON[32587]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 00:09:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2012000 - Analysing at 10.00 fps]
Aug 29 00:09:07 debian systemd[1]: Starting Clean php session files...
Aug 29 00:09:07 debian systemd[1]: Started Clean php session files.
Aug 29 00:09:33 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2061000 - Capturing at 10.00 fps]
Aug 29 00:09:59 debian zmc_m2[12122]: INF [Down-Driveway: 2013000 - Capturing at 10.00 fps]
Aug 29 00:10:06 debian zma_m2[12123]: INF [Down-Driveway: 2007000 - Analysing at 9.90 fps]
Aug 29 00:10:23 debian zma_m2[12123]: INF [Down-Driveway: 2007170 - Gone into alarm state]
Aug 29 00:10:23 debian zma_m2[12123]: INF [Down-Driveway: 2007170 - Opening new event 1766, alarm start]
Aug 29 00:10:24 debian zma_m2[12123]: INF [Down-Driveway: 2007180 - Gone into alert state]
Aug 29 00:10:25 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:10:26 debian zma_m2[12123]: INF [Down-Driveway: 2007205 - Left alarm state (1766) - 60(10) images]
Aug 29 00:10:27 debian zma_m2[12123]: INF [Down-Driveway: 2007205 - Closing event 1766, alarm end]
Aug 29 00:10:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2013000 - Analysing at 10.00 fps]
Aug 29 00:11:07 debian anacron[32413]: Job `cron.weekly' started
Aug 29 00:11:07 debian anacron[32663]: Updated timestamp for job `cron.weekly' to 2017-08-29
Aug 29 00:11:12 debian anacron[32413]: Job `cron.weekly' terminated
Aug 29 00:11:12 debian anacron[32413]: Normal exit (2 jobs run)
Aug 29 00:11:12 debian systemd[1]: anacron.timer: Adding 2min 35.869294s random time.
Aug 29 00:11:13 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2062000 - Capturing at 10.00 fps]
Aug 29 00:11:29 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:11:39 debian zmc_m2[12122]: INF [Down-Driveway: 2014000 - Capturing at 10.00 fps]
Aug 29 00:11:47 debian zma_m2[12123]: INF [Down-Driveway: 2008000 - Analysing at 9.90 fps]
Aug 29 00:12:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2014000 - Analysing at 10.00 fps]
Aug 29 00:12:53 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2063000 - Capturing at 10.00 fps]
Aug 29 00:13:09 debian influxd[30219]: [retention] 2017/08/29 00:13:09 retention policy shard deletion check commencing
Aug 29 00:13:20 debian zmc_m2[12122]: INF [Down-Driveway: 2015000 - Capturing at 9.90 fps]
Aug 29 00:13:27 debian zma_m2[12123]: INF [Down-Driveway: 2009000 - Analysing at 10.00 fps]
Aug 29 00:13:35 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:13:35 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:14:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2015000 - Analysing at 10.00 fps]
Aug 29 00:14:33 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2064000 - Capturing at 10.00 fps]
Aug 29 00:15:00 debian zmc_m2[12122]: INF [Down-Driveway: 2016000 - Capturing at 10.00 fps]
Aug 29 00:15:08 debian zma_m2[12123]: INF [Down-Driveway: 2010000 - Analysing at 10.00 fps]
Aug 29 00:15:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2016000 - Analysing at 10.00 fps]
Aug 29 00:16:13 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2065000 - Capturing at 10.00 fps]
Aug 29 00:16:40 debian zmc_m2[12122]: INF [Down-Driveway: 2017000 - Capturing at 10.00 fps]
Aug 29 00:16:48 debian zma_m2[12123]: INF [Down-Driveway: 2011000 - Analysing at 9.90 fps]
Aug 29 00:17:01 debian CRON[32678]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 29 00:17:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2017000 - Analysing at 10.00 fps]
Aug 29 00:17:53 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2066000 - Capturing at 10.00 fps]
Aug 29 00:18:03 debian zma_m2[12123]: INF [Down-Driveway: 2011753 - Gone into alarm state]
Aug 29 00:18:03 debian zma_m2[12123]: INF [Down-Driveway: 2011753 - Opening new event 1767, alarm start]
Aug 29 00:18:05 debian zma_m2[12123]: INF [Down-Driveway: 2011764 - Gone into alert state]
Aug 29 00:18:07 debian zma_m2[12123]: INF [Down-Driveway: 2011789 - Left alarm state (1767) - 61(11) images]
Aug 29 00:18:07 debian zma_m2[12123]: INF [Down-Driveway: 2011789 - Closing event 1767, alarm end]
Aug 29 00:18:20 debian zmc_m2[12122]: INF [Down-Driveway: 2018000 - Capturing at 10.00 fps]
Aug 29 00:18:28 debian zma_m2[12123]: INF [Down-Driveway: 2012000 - Analysing at 10.00 fps]
Aug 29 00:19:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2018000 - Analysing at 10.00 fps]
Aug 29 00:19:33 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2067000 - Capturing at 10.00 fps]
Aug 29 00:20:00 debian zmc_m2[12122]: INF [Down-Driveway: 2019000 - Capturing at 10.00 fps]
Aug 29 00:20:08 debian zma_m2[12123]: INF [Down-Driveway: 2013000 - Analysing at 10.00 fps]
Aug 29 00:20:13 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:20:13 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:20:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2019000 - Analysing at 10.00 fps]
Aug 29 00:21:13 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2068000 - Capturing at 10.00 fps]
Aug 29 00:21:35 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:21:40 debian zmc_m2[12122]: INF [Down-Driveway: 2020000 - Capturing at 10.00 fps]
Aug 29 00:21:48 debian zma_m2[12123]: INF [Down-Driveway: 2014000 - Analysing at 10.00 fps]
Aug 29 00:22:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2020000 - Analysing at 10.00 fps]
Aug 29 00:22:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2069000 - Capturing at 10.00 fps]
Aug 29 00:23:20 debian zmc_m2[12122]: INF [Down-Driveway: 2021000 - Capturing at 10.00 fps]
Aug 29 00:23:28 debian zma_m2[12123]: INF [Down-Driveway: 2015000 - Analysing at 10.00 fps]
Aug 29 00:24:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2021000 - Analysing at 10.00 fps]
Aug 29 00:24:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2070000 - Capturing at 10.00 fps]
Aug 29 00:25:00 debian zmc_m2[12122]: INF [Down-Driveway: 2022000 - Capturing at 10.00 fps]
Aug 29 00:25:08 debian zma_m2[12123]: INF [Down-Driveway: 2016000 - Analysing at 10.00 fps]
Aug 29 00:25:25 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:25:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2022000 - Analysing at 10.00 fps]
Aug 29 00:26:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2071000 - Capturing at 10.00 fps]
Aug 29 00:26:40 debian zmc_m2[12122]: INF [Down-Driveway: 2023000 - Capturing at 10.00 fps]
Aug 29 00:26:48 debian zma_m2[12123]: INF [Down-Driveway: 2017000 - Analysing at 10.00 fps]
Aug 29 00:26:51 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:26:51 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:26:59 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:27:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2023000 - Analysing at 10.00 fps]
Aug 29 00:27:43 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:27:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2072000 - Capturing at 9.90 fps]
Aug 29 00:28:20 debian zmc_m2[12122]: INF [Down-Driveway: 2024000 - Capturing at 10.00 fps]
Aug 29 00:28:28 debian zma_m2[12123]: INF [Down-Driveway: 2018000 - Analysing at 10.00 fps]
Aug 29 00:29:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2024000 - Analysing at 10.00 fps]
Aug 29 00:29:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2073000 - Capturing at 10.00 fps]
Aug 29 00:29:51 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:30:00 debian zmc_m2[12122]: INF [Down-Driveway: 2025000 - Capturing at 10.00 fps]
Aug 29 00:30:08 debian zma_m2[12123]: INF [Down-Driveway: 2019000 - Analysing at 10.00 fps]
Aug 29 00:30:15 debian weewx[32259]: vantage: Getting archive packets since 2017-08-29 00:00:00 EDT (1503979200)
Aug 29 00:30:15 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:30:15 debian weewx[32259]: vantage: Retrieving 1 page(s); starting index= 2
Aug 29 00:30:15 debian weewx[32259]: manager: Added record 2017-08-29 00:30:00 EDT (1503981000) to database 'weewx.sdb'
Aug 29 00:30:15 debian weewx[32259]: manager: Added record 2017-08-29 00:30:00 EDT (1503981000) to daily summary in 'weewx.sdb'
Aug 29 00:30:15 debian weewx[32259]: vantage: DMPAFT complete: page timestamp 2017-07-06 17:00:00 EDT (1499374800) less than final timestamp 2017-08-29 00:30:00 EDT (1503981000)
Aug 29 00:30:15 debian weewx[32259]: vantage: Catch up complete.
Aug 29 00:30:15 debian weewx[32259]: reportengine: Running reports for latest time in the database.
Aug 29 00:30:15 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:30:15 debian weewx[32259]: reportengine: Running report SteelSeries
Aug 29 00:30:15 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 00:30:15 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 00:30:15 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 00:30:15 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 00:30:15 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 00:30:15 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 00:30:15 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 00:30:15 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 00:30:15 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 00:30:15 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds
Aug 29 00:30:15 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 00:30:16 debian weewx[32259]: restx: PWSWeather: Published record 2017-08-29 00:30:00 EDT (1503981000)
Aug 29 00:30:16 debian weewx[32259]: imagegenerator: Generated 11 images for SteelSeries in 0.19 seconds
Aug 29 00:30:16 debian weewx[32259]: reportengine: Running report StandardReport
Aug 29 00:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 00:30:16 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 00:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 00:30:16 debian weewx[32259]: cheetahgenerator: Generated 14 files for report StandardReport in 0.38 seconds
Aug 29 00:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 00:30:16 debian weewx[32259]: imagegenerator: Generated 12 images for StandardReport in 0.18 seconds
Aug 29 00:30:16 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 00:30:16 debian weewx[32259]: reportengine: Running report FTP
Aug 29 00:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 00:30:16 debian weewx[32259]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 00:30:16 debian weewx[32259]: reportengine: Running report RSYNC
Aug 29 00:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 00:30:16 debian weewx[32259]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 00:30:19 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 00:30:19 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:30:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2025000 - Analysing at 10.00 fps]
Aug 29 00:31:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2074000 - Capturing at 10.00 fps]
Aug 29 00:31:40 debian zmc_m2[12122]: INF [Down-Driveway: 2026000 - Capturing at 10.00 fps]
Aug 29 00:31:48 debian zma_m2[12123]: INF [Down-Driveway: 2020000 - Analysing at 10.00 fps]
Aug 29 00:32:01 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:32:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2026000 - Analysing at 10.00 fps]
Aug 29 00:32:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2075000 - Capturing at 10.00 fps]
Aug 29 00:33:20 debian zmc_m2[12122]: INF [Down-Driveway: 2027000 - Capturing at 10.00 fps]
Aug 29 00:33:28 debian zma_m2[12123]: INF [Down-Driveway: 2021000 - Analysing at 10.00 fps]
Aug 29 00:34:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2027000 - Analysing at 10.00 fps]
Aug 29 00:34:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2076000 - Capturing at 10.00 fps]
Aug 29 00:35:00 debian zmc_m2[12122]: INF [Down-Driveway: 2028000 - Capturing at 10.00 fps]
Aug 29 00:35:08 debian zma_m2[12123]: INF [Down-Driveway: 2022000 - Analysing at 10.00 fps]
Aug 29 00:35:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2028000 - Analysing at 10.00 fps]
Aug 29 00:36:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2077000 - Capturing at 10.00 fps]
Aug 29 00:36:40 debian zmc_m2[12122]: INF [Down-Driveway: 2029000 - Capturing at 10.00 fps]
Aug 29 00:36:48 debian zma_m2[12123]: INF [Down-Driveway: 2023000 - Analysing at 10.00 fps]
Aug 29 00:36:55 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:36:55 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:37:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2029000 - Analysing at 10.00 fps]
Aug 29 00:37:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2078000 - Capturing at 10.00 fps]
Aug 29 00:38:20 debian zmc_m2[12122]: INF [Down-Driveway: 2030000 - Capturing at 10.00 fps]
Aug 29 00:38:28 debian zma_m2[12123]: INF [Down-Driveway: 2024000 - Analysing at 10.00 fps]
Aug 29 00:39:01 debian CRON[32715]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 00:39:07 debian systemd[1]: Starting Clean php session files...
Aug 29 00:39:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2030000 - Analysing at 10.00 fps]
Aug 29 00:39:07 debian systemd[1]: Started Clean php session files.
Aug 29 00:39:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2079000 - Capturing at 10.00 fps]
Aug 29 00:39:35 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:39:57 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:40:00 debian zmc_m2[12122]: INF [Down-Driveway: 2031000 - Capturing at 10.00 fps]
Aug 29 00:40:08 debian zma_m2[12123]: INF [Down-Driveway: 2025000 - Analysing at 10.00 fps]
Aug 29 00:40:39 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:40:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2031000 - Analysing at 10.00 fps]
Aug 29 00:41:01 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:41:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2080000 - Capturing at 10.00 fps]
Aug 29 00:41:40 debian zmc_m2[12122]: INF [Down-Driveway: 2032000 - Capturing at 10.00 fps]
Aug 29 00:41:48 debian zma_m2[12123]: INF [Down-Driveway: 2026000 - Analysing at 10.00 fps]
Aug 29 00:42:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2032000 - Analysing at 10.00 fps]
Aug 29 00:42:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2081000 - Capturing at 10.00 fps]
Aug 29 00:43:09 debian influxd[30219]: [retention] 2017/08/29 00:43:09 retention policy shard deletion check commencing
Aug 29 00:43:11 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:43:20 debian zmc_m2[12122]: INF [Down-Driveway: 2033000 - Capturing at 10.00 fps]
Aug 29 00:43:28 debian zma_m2[12123]: INF [Down-Driveway: 2027000 - Analysing at 10.00 fps]
Aug 29 00:43:33 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:43:33 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:44:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2033000 - Analysing at 10.00 fps]
Aug 29 00:44:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2082000 - Capturing at 10.00 fps]
Aug 29 00:44:59 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:45:00 debian zmc_m2[12122]: INF [Down-Driveway: 2034000 - Capturing at 10.00 fps]
Aug 29 00:45:08 debian zma_m2[12123]: INF [Down-Driveway: 2028000 - Analysing at 10.00 fps]
Aug 29 00:45:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2034000 - Analysing at 10.00 fps]
Aug 29 00:46:03 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:46:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2083000 - Capturing at 10.00 fps]
Aug 29 00:46:40 debian zmc_m2[12122]: INF [Down-Driveway: 2035000 - Capturing at 10.00 fps]
Aug 29 00:46:49 debian zma_m2[12123]: INF [Down-Driveway: 2029000 - Analysing at 9.90 fps]
Aug 29 00:47:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2035000 - Analysing at 10.00 fps]
Aug 29 00:47:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2084000 - Capturing at 10.00 fps]
Aug 29 00:48:20 debian zmc_m2[12122]: INF [Down-Driveway: 2036000 - Capturing at 10.00 fps]
Aug 29 00:48:29 debian zma_m2[12123]: INF [Down-Driveway: 2030000 - Analysing at 10.00 fps]
Aug 29 00:48:35 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 00:49:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2036000 - Analysing at 10.00 fps]
Aug 29 00:49:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2085000 - Capturing at 10.00 fps]
Aug 29 00:50:00 debian zmc_m2[12122]: INF [Down-Driveway: 2037000 - Capturing at 10.00 fps]
Aug 29 00:50:09 debian zma_m2[12123]: INF [Down-Driveway: 2031000 - Analysing at 10.00 fps]
Aug 29 00:50:11 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:50:11 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:50:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2037000 - Analysing at 10.00 fps]
Aug 29 00:51:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2086000 - Capturing at 10.00 fps]
Aug 29 00:51:40 debian zmc_m2[12122]: INF [Down-Driveway: 2038000 - Capturing at 10.00 fps]
Aug 29 00:51:49 debian zma_m2[12123]: INF [Down-Driveway: 2032000 - Analysing at 10.00 fps]
Aug 29 00:52:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2038000 - Analysing at 10.00 fps]
Aug 29 00:52:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2087000 - Capturing at 10.00 fps]
Aug 29 00:53:20 debian zmc_m2[12122]: INF [Down-Driveway: 2039000 - Capturing at 10.00 fps]
Aug 29 00:53:29 debian zma_m2[12123]: INF [Down-Driveway: 2033000 - Analysing at 10.00 fps]
Aug 29 00:54:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2039000 - Analysing at 10.00 fps]
Aug 29 00:54:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2088000 - Capturing at 10.00 fps]
Aug 29 00:55:00 debian zmc_m2[12122]: INF [Down-Driveway: 2040000 - Capturing at 10.00 fps]
Aug 29 00:55:09 debian zma_m2[12123]: INF [Down-Driveway: 2034000 - Analysing at 10.00 fps]
Aug 29 00:55:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2040000 - Analysing at 10.00 fps]
Aug 29 00:56:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2089000 - Capturing at 10.00 fps]
Aug 29 00:56:40 debian zmc_m2[12122]: INF [Down-Driveway: 2041000 - Capturing at 10.00 fps]
Aug 29 00:56:49 debian zma_m2[12123]: INF [Down-Driveway: 2035000 - Analysing at 10.00 fps]
Aug 29 00:56:49 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 00:56:49 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 00:57:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2041000 - Analysing at 10.00 fps]
Aug 29 00:57:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2090000 - Capturing at 10.00 fps]
Aug 29 00:58:20 debian zmc_m2[12122]: INF [Down-Driveway: 2042000 - Capturing at 10.00 fps]
Aug 29 00:58:29 debian zma_m2[12123]: INF [Down-Driveway: 2036000 - Analysing at 10.00 fps]
Aug 29 00:59:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2042000 - Analysing at 10.00 fps]
Aug 29 00:59:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2091000 - Capturing at 10.00 fps]
Aug 29 01:00:00 debian zmc_m2[12122]: INF [Down-Driveway: 2043000 - Capturing at 10.00 fps]
Aug 29 01:00:09 debian zma_m2[12123]: INF [Down-Driveway: 2037000 - Analysing at 10.00 fps]
Aug 29 01:00:15 debian weewx[32259]: vantage: Getting archive packets since 2017-08-29 00:30:00 EDT (1503981000)
Aug 29 01:00:18 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 01:00:18 debian weewx[32259]: vantage: rude wake up of console successful
Aug 29 01:00:18 debian weewx[32259]: vantage: Retrieving 1 page(s); starting index= 3
Aug 29 01:00:18 debian weewx[32259]: manager: Added record 2017-08-29 01:00:00 EDT (1503982800) to database 'weewx.sdb'
Aug 29 01:00:18 debian weewx[32259]: manager: Added record 2017-08-29 01:00:00 EDT (1503982800) to daily summary in 'weewx.sdb'
Aug 29 01:00:19 debian weewx[32259]: vantage: DMPAFT complete: page timestamp 2017-07-06 17:30:00 EDT (1499376600) less than final timestamp 2017-08-29 01:00:00 EDT (1503982800)
Aug 29 01:00:19 debian weewx[32259]: vantage: Catch up complete.
Aug 29 01:00:19 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:00:19 debian weewx[32259]: reportengine: Running reports for latest time in the database.
Aug 29 01:00:19 debian weewx[32259]: reportengine: Running report SteelSeries
Aug 29 01:00:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 01:00:19 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 01:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 01:00:19 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 01:00:19 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 01:00:19 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 01:00:19 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 01:00:19 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 01:00:19 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 01:00:19 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds
Aug 29 01:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:00:19 debian weewx[32259]: restx: PWSWeather: Published record 2017-08-29 01:00:00 EDT (1503982800)
Aug 29 01:00:19 debian weewx[32259]: imagegenerator: Generated 11 images for SteelSeries in 0.21 seconds
Aug 29 01:00:19 debian weewx[32259]: reportengine: Running report StandardReport
Aug 29 01:00:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 01:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:00:19 debian weewx[32259]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 01:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:00:20 debian weewx[32259]: imagegenerator: Generated 24 images for StandardReport in 0.61 seconds
Aug 29 01:00:20 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 01:00:20 debian weewx[32259]: reportengine: Running report FTP
Aug 29 01:00:20 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 01:00:20 debian weewx[32259]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 01:00:20 debian weewx[32259]: reportengine: Running report RSYNC
Aug 29 01:00:20 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 01:00:20 debian weewx[32259]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 01:00:23 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 01:00:23 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:00:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2043000 - Analysing at 10.00 fps]
Aug 29 01:01:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2092000 - Capturing at 10.00 fps]
Aug 29 01:01:40 debian zmc_m2[12122]: INF [Down-Driveway: 2044000 - Capturing at 10.00 fps]
Aug 29 01:01:49 debian zma_m2[12123]: INF [Down-Driveway: 2038000 - Analysing at 10.00 fps]
Aug 29 01:02:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2044000 - Analysing at 10.00 fps]
Aug 29 01:02:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2093000 - Capturing at 10.00 fps]
Aug 29 01:03:07 debian systemd[1]: Started Run anacron jobs.
Aug 29 01:03:07 debian anacron[354]: Anacron 2.3 started on 2017-08-29
Aug 29 01:03:07 debian anacron[354]: Normal exit (0 jobs run)
Aug 29 01:03:07 debian systemd[1]: anacron.timer: Adding 3min 23.323304s random time.
Aug 29 01:03:20 debian zmc_m2[12122]: INF [Down-Driveway: 2045000 - Capturing at 10.00 fps]
Aug 29 01:03:29 debian zma_m2[12123]: INF [Down-Driveway: 2039000 - Analysing at 10.00 fps]
Aug 29 01:04:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2045000 - Analysing at 10.00 fps]
Aug 29 01:04:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2094000 - Capturing at 10.00 fps]
Aug 29 01:05:00 debian zmc_m2[12122]: INF [Down-Driveway: 2046000 - Capturing at 10.00 fps]
Aug 29 01:05:09 debian zma_m2[12123]: INF [Down-Driveway: 2040000 - Analysing at 10.00 fps]
Aug 29 01:05:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2046000 - Analysing at 10.00 fps]
Aug 29 01:06:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2095000 - Capturing at 10.00 fps]
Aug 29 01:06:40 debian zmc_m2[12122]: INF [Down-Driveway: 2047000 - Capturing at 10.00 fps]
Aug 29 01:06:49 debian zma_m2[12123]: INF [Down-Driveway: 2041000 - Analysing at 10.00 fps]
Aug 29 01:06:57 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:06:57 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:07:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2047000 - Analysing at 10.00 fps]
Aug 29 01:07:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2096000 - Capturing at 10.00 fps]
Aug 29 01:08:20 debian zmc_m2[12122]: INF [Down-Driveway: 2048000 - Capturing at 10.00 fps]
Aug 29 01:08:29 debian zma_m2[12123]: INF [Down-Driveway: 2042000 - Analysing at 10.00 fps]
Aug 29 01:09:01 debian CRON[379]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 01:09:07 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:09:07 debian systemd[1]: Starting Clean php session files...
Aug 29 01:09:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2048000 - Analysing at 10.00 fps]
Aug 29 01:09:07 debian systemd[1]: Started Clean php session files.
Aug 29 01:09:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2097000 - Capturing at 10.00 fps]
Aug 29 01:10:00 debian zmc_m2[12122]: INF [Down-Driveway: 2049000 - Capturing at 10.00 fps]
Aug 29 01:10:09 debian zma_m2[12123]: INF [Down-Driveway: 2043000 - Analysing at 10.00 fps]
Aug 29 01:10:11 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:10:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2049000 - Analysing at 10.00 fps]
Aug 29 01:11:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2098000 - Capturing at 10.00 fps]
Aug 29 01:11:40 debian zmc_m2[12122]: INF [Down-Driveway: 2050000 - Capturing at 10.00 fps]
Aug 29 01:11:49 debian zma_m2[12123]: INF [Down-Driveway: 2044000 - Analysing at 10.00 fps]
Aug 29 01:12:09 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:12:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2050000 - Analysing at 10.00 fps]
Aug 29 01:12:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2099000 - Capturing at 10.00 fps]
Aug 29 01:13:09 debian influxd[30219]: [retention] 2017/08/29 01:13:09 retention policy shard deletion check commencing
Aug 29 01:13:20 debian zmc_m2[12122]: INF [Down-Driveway: 2051000 - Capturing at 10.00 fps]
Aug 29 01:13:29 debian zma_m2[12123]: INF [Down-Driveway: 2045000 - Analysing at 10.00 fps]
Aug 29 01:13:35 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:13:35 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:14:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2051000 - Analysing at 10.00 fps]
Aug 29 01:14:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2100000 - Capturing at 10.00 fps]
Aug 29 01:15:00 debian zmc_m2[12122]: INF [Down-Driveway: 2052000 - Capturing at 10.00 fps]
Aug 29 01:15:09 debian zma_m2[12123]: INF [Down-Driveway: 2046000 - Analysing at 10.00 fps]
Aug 29 01:15:35 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:15:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2052000 - Analysing at 10.00 fps]
Aug 29 01:16:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2101000 - Capturing at 10.00 fps]
Aug 29 01:16:40 debian zmc_m2[12122]: INF [Down-Driveway: 2053000 - Capturing at 10.00 fps]
Aug 29 01:16:49 debian zma_m2[12123]: INF [Down-Driveway: 2047000 - Analysing at 10.00 fps]
Aug 29 01:17:01 debian CRON[473]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 29 01:17:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2053000 - Analysing at 10.00 fps]
Aug 29 01:17:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2102000 - Capturing at 10.00 fps]
Aug 29 01:18:21 debian zmc_m2[12122]: INF [Down-Driveway: 2054000 - Capturing at 9.90 fps]
Aug 29 01:18:29 debian zma_m2[12123]: INF [Down-Driveway: 2048000 - Analysing at 10.00 fps]
Aug 29 01:19:07 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2054000 - Analysing at 10.00 fps]
Aug 29 01:19:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2103000 - Capturing at 10.00 fps]
Aug 29 01:20:01 debian zmc_m2[12122]: INF [Down-Driveway: 2055000 - Capturing at 10.00 fps]
Aug 29 01:20:09 debian zma_m2[12123]: INF [Down-Driveway: 2049000 - Analysing at 10.00 fps]
Aug 29 01:20:13 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:20:13 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:20:47 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2055000 - Analysing at 10.00 fps]
Aug 29 01:21:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2104000 - Capturing at 10.00 fps]
Aug 29 01:21:41 debian zmc_m2[12122]: INF [Down-Driveway: 2056000 - Capturing at 10.00 fps]
Aug 29 01:21:49 debian zma_m2[12123]: INF [Down-Driveway: 2050000 - Analysing at 10.00 fps]
Aug 29 01:22:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2056000 - Analysing at 10.00 fps]
Aug 29 01:22:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2105000 - Capturing at 10.00 fps]
Aug 29 01:23:21 debian zmc_m2[12122]: INF [Down-Driveway: 2057000 - Capturing at 10.00 fps]
Aug 29 01:23:29 debian zma_m2[12123]: INF [Down-Driveway: 2051000 - Analysing at 10.00 fps]
Aug 29 01:24:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2057000 - Analysing at 10.00 fps]
Aug 29 01:24:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2106000 - Capturing at 10.00 fps]
Aug 29 01:25:01 debian zmc_m2[12122]: INF [Down-Driveway: 2058000 - Capturing at 10.00 fps]
Aug 29 01:25:09 debian zma_m2[12123]: INF [Down-Driveway: 2052000 - Analysing at 10.00 fps]
Aug 29 01:25:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2058000 - Analysing at 10.00 fps]
Aug 29 01:26:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2107000 - Capturing at 10.00 fps]
Aug 29 01:26:41 debian zmc_m2[12122]: INF [Down-Driveway: 2059000 - Capturing at 10.00 fps]
Aug 29 01:26:49 debian zma_m2[12123]: INF [Down-Driveway: 2053000 - Analysing at 10.00 fps]
Aug 29 01:26:51 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:26:51 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:27:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2059000 - Analysing at 9.90 fps]
Aug 29 01:27:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2108000 - Capturing at 10.00 fps]
Aug 29 01:28:21 debian zmc_m2[12122]: INF [Down-Driveway: 2060000 - Capturing at 10.00 fps]
Aug 29 01:28:29 debian zma_m2[12123]: INF [Down-Driveway: 2054000 - Analysing at 10.00 fps]
Aug 29 01:29:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2060000 - Analysing at 10.00 fps]
Aug 29 01:29:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2109000 - Capturing at 10.00 fps]
Aug 29 01:30:01 debian zmc_m2[12122]: INF [Down-Driveway: 2061000 - Capturing at 10.00 fps]
Aug 29 01:30:09 debian zma_m2[12123]: INF [Down-Driveway: 2055000 - Analysing at 10.00 fps]
Aug 29 01:30:15 debian weewx[32259]: vantage: Getting archive packets since 2017-08-29 01:00:00 EDT (1503982800)
Aug 29 01:30:18 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 01:30:18 debian weewx[32259]: vantage: rude wake up of console successful
Aug 29 01:30:18 debian weewx[32259]: vantage: Retrieving 1 page(s); starting index= 4
Aug 29 01:30:18 debian weewx[32259]: manager: Added record 2017-08-29 01:30:00 EDT (1503984600) to database 'weewx.sdb'
Aug 29 01:30:18 debian weewx[32259]: manager: Added record 2017-08-29 01:30:00 EDT (1503984600) to daily summary in 'weewx.sdb'
Aug 29 01:30:19 debian weewx[32259]: reportengine: Running reports for latest time in the database.
Aug 29 01:30:19 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:30:19 debian weewx[32259]: reportengine: Running report SteelSeries
Aug 29 01:30:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 01:30:19 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 01:30:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 01:30:19 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 01:30:19 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 01:30:19 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 01:30:19 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 01:30:19 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 01:30:19 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 01:30:19 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds
Aug 29 01:30:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:30:19 debian weewx[32259]: restx: PWSWeather: Published record 2017-08-29 01:30:00 EDT (1503984600)
Aug 29 01:30:19 debian weewx[32259]: imagegenerator: Generated 11 images for SteelSeries in 0.22 seconds
Aug 29 01:30:19 debian weewx[32259]: reportengine: Running report StandardReport
Aug 29 01:30:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 01:30:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:30:19 debian weewx[32259]: cheetahgenerator: Generated 14 files for report StandardReport in 0.39 seconds
Aug 29 01:30:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 01:30:19 debian weewx[32259]: imagegenerator: Generated 12 images for StandardReport in 0.18 seconds
Aug 29 01:30:19 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 01:30:19 debian weewx[32259]: reportengine: Running report FTP
Aug 29 01:30:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 01:30:19 debian weewx[32259]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 01:30:19 debian weewx[32259]: reportengine: Running report RSYNC
Aug 29 01:30:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 01:30:19 debian weewx[32259]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 01:30:23 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 01:30:23 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:30:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2061000 - Analysing at 10.00 fps]
Aug 29 01:31:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2110000 - Capturing at 10.00 fps]
Aug 29 01:31:41 debian zmc_m2[12122]: INF [Down-Driveway: 2062000 - Capturing at 10.00 fps]
Aug 29 01:31:49 debian zma_m2[12123]: INF [Down-Driveway: 2056000 - Analysing at 10.00 fps]
Aug 29 01:32:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2062000 - Analysing at 10.00 fps]
Aug 29 01:32:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2111000 - Capturing at 10.00 fps]
Aug 29 01:33:21 debian zmc_m2[12122]: INF [Down-Driveway: 2063000 - Capturing at 10.00 fps]
Aug 29 01:33:29 debian zma_m2[12123]: INF [Down-Driveway: 2057000 - Analysing at 10.00 fps]
Aug 29 01:34:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2063000 - Analysing at 10.00 fps]
Aug 29 01:34:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2112000 - Capturing at 10.00 fps]
Aug 29 01:35:01 debian zmc_m2[12122]: INF [Down-Driveway: 2064000 - Capturing at 10.00 fps]
Aug 29 01:35:09 debian zma_m2[12123]: INF [Down-Driveway: 2058000 - Analysing at 10.00 fps]
Aug 29 01:35:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2064000 - Analysing at 10.00 fps]
Aug 29 01:36:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2113000 - Capturing at 10.00 fps]
Aug 29 01:36:41 debian zmc_m2[12122]: INF [Down-Driveway: 2065000 - Capturing at 10.00 fps]
Aug 29 01:36:49 debian zma_m2[12123]: INF [Down-Driveway: 2059000 - Analysing at 10.00 fps]
Aug 29 01:36:57 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:36:57 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:37:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2065000 - Analysing at 10.00 fps]
Aug 29 01:37:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2114000 - Capturing at 10.00 fps]
Aug 29 01:38:21 debian zmc_m2[12122]: INF [Down-Driveway: 2066000 - Capturing at 10.00 fps]
Aug 29 01:38:29 debian zma_m2[12123]: INF [Down-Driveway: 2060000 - Analysing at 10.00 fps]
Aug 29 01:39:01 debian CRON[521]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 01:39:07 debian systemd[1]: Starting Clean php session files...
Aug 29 01:39:07 debian systemd[1]: Started Clean php session files.
Aug 29 01:39:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2066000 - Analysing at 10.00 fps]
Aug 29 01:39:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2115000 - Capturing at 10.00 fps]
Aug 29 01:40:01 debian zmc_m2[12122]: INF [Down-Driveway: 2067000 - Capturing at 10.00 fps]
Aug 29 01:40:09 debian zma_m2[12123]: INF [Down-Driveway: 2061000 - Analysing at 10.00 fps]
Aug 29 01:40:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2067000 - Analysing at 10.00 fps]
Aug 29 01:41:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2116000 - Capturing at 10.00 fps]
Aug 29 01:41:41 debian zmc_m2[12122]: INF [Down-Driveway: 2068000 - Capturing at 10.00 fps]
Aug 29 01:41:49 debian zma_m2[12123]: INF [Down-Driveway: 2062000 - Analysing at 10.00 fps]
Aug 29 01:42:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2068000 - Analysing at 10.00 fps]
Aug 29 01:42:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2117000 - Capturing at 10.00 fps]
Aug 29 01:43:09 debian influxd[30219]: [retention] 2017/08/29 01:43:09 retention policy shard deletion check commencing
Aug 29 01:43:21 debian zmc_m2[12122]: INF [Down-Driveway: 2069000 - Capturing at 10.00 fps]
Aug 29 01:43:29 debian zma_m2[12123]: INF [Down-Driveway: 2063000 - Analysing at 10.00 fps]
Aug 29 01:43:35 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:43:35 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:44:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2069000 - Analysing at 10.00 fps]
Aug 29 01:44:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2118000 - Capturing at 10.00 fps]
Aug 29 01:45:01 debian zmc_m2[12122]: INF [Down-Driveway: 2070000 - Capturing at 10.00 fps]
Aug 29 01:45:09 debian zma_m2[12123]: INF [Down-Driveway: 2064000 - Analysing at 10.00 fps]
Aug 29 01:45:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2070000 - Analysing at 10.00 fps]
Aug 29 01:46:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2119000 - Capturing at 10.00 fps]
Aug 29 01:46:41 debian zmc_m2[12122]: INF [Down-Driveway: 2071000 - Capturing at 10.00 fps]
Aug 29 01:46:49 debian zma_m2[12123]: INF [Down-Driveway: 2065000 - Analysing at 10.00 fps]
Aug 29 01:47:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2071000 - Analysing at 10.00 fps]
Aug 29 01:47:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2120000 - Capturing at 10.00 fps]
Aug 29 01:48:21 debian zmc_m2[12122]: INF [Down-Driveway: 2072000 - Capturing at 10.00 fps]
Aug 29 01:48:29 debian zma_m2[12123]: INF [Down-Driveway: 2066000 - Analysing at 10.00 fps]
Aug 29 01:49:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2072000 - Analysing at 10.00 fps]
Aug 29 01:49:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2121000 - Capturing at 10.00 fps]
Aug 29 01:50:01 debian zmc_m2[12122]: INF [Down-Driveway: 2073000 - Capturing at 10.00 fps]
Aug 29 01:50:09 debian zma_m2[12123]: INF [Down-Driveway: 2067000 - Analysing at 10.00 fps]
Aug 29 01:50:13 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:50:13 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:50:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2073000 - Analysing at 10.00 fps]
Aug 29 01:51:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2122000 - Capturing at 10.00 fps]
Aug 29 01:51:41 debian zmc_m2[12122]: INF [Down-Driveway: 2074000 - Capturing at 10.00 fps]
Aug 29 01:51:49 debian zma_m2[12123]: INF [Down-Driveway: 2068000 - Analysing at 10.00 fps]
Aug 29 01:52:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2074000 - Analysing at 10.00 fps]
Aug 29 01:52:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2123000 - Capturing at 10.00 fps]
Aug 29 01:53:21 debian zmc_m2[12122]: INF [Down-Driveway: 2075000 - Capturing at 10.00 fps]
Aug 29 01:53:29 debian zma_m2[12123]: INF [Down-Driveway: 2069000 - Analysing at 10.00 fps]
Aug 29 01:53:47 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:54:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2075000 - Analysing at 10.00 fps]
Aug 29 01:54:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2124000 - Capturing at 10.00 fps]
Aug 29 01:55:01 debian zmc_m2[12122]: INF [Down-Driveway: 2076000 - Capturing at 10.00 fps]
Aug 29 01:55:09 debian zma_m2[12123]: INF [Down-Driveway: 2070000 - Analysing at 10.00 fps]
Aug 29 01:55:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2076000 - Analysing at 10.00 fps]
Aug 29 01:56:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2125000 - Capturing at 10.00 fps]
Aug 29 01:56:33 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:56:41 debian zmc_m2[12122]: INF [Down-Driveway: 2077000 - Capturing at 10.00 fps]
Aug 29 01:56:49 debian zma_m2[12123]: INF [Down-Driveway: 2071000 - Analysing at 10.00 fps]
Aug 29 01:56:51 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 01:56:51 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 01:57:01 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 01:57:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2077000 - Analysing at 10.00 fps]
Aug 29 01:57:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2126000 - Capturing at 10.00 fps]
Aug 29 01:58:21 debian zmc_m2[12122]: INF [Down-Driveway: 2078000 - Capturing at 10.00 fps]
Aug 29 01:58:29 debian zma_m2[12123]: INF [Down-Driveway: 2072000 - Analysing at 10.00 fps]
Aug 29 01:59:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2078000 - Analysing at 10.00 fps]
Aug 29 01:59:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2127000 - Capturing at 10.00 fps]
Aug 29 01:59:47 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:00:01 debian zmc_m2[12122]: INF [Down-Driveway: 2079000 - Capturing at 10.00 fps]
Aug 29 02:00:09 debian zma_m2[12123]: INF [Down-Driveway: 2073000 - Analysing at 10.00 fps]
Aug 29 02:00:15 debian weewx[32259]: vantage: Getting archive packets since 2017-08-29 01:30:00 EDT (1503984600)
Aug 29 02:00:18 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 02:00:18 debian weewx[32259]: vantage: rude wake up of console successful
Aug 29 02:00:18 debian weewx[32259]: vantage: Retrieving 1 page(s); starting index= 0
Aug 29 02:00:18 debian weewx[32259]: manager: Added record 2017-08-29 02:00:00 EDT (1503986400) to database 'weewx.sdb'
Aug 29 02:00:18 debian weewx[32259]: manager: Added record 2017-08-29 02:00:00 EDT (1503986400) to daily summary in 'weewx.sdb'
Aug 29 02:00:18 debian weewx[32259]: vantage: DMPAFT complete: page timestamp 2017-07-06 18:30:00 EDT (1499380200) less than final timestamp 2017-08-29 02:00:00 EDT (1503986400)
Aug 29 02:00:18 debian weewx[32259]: vantage: Catch up complete.
Aug 29 02:00:18 debian weewx[32259]: reportengine: Running reports for latest time in the database.
Aug 29 02:00:18 debian weewx[32259]: reportengine: Running report SteelSeries
Aug 29 02:00:18 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 02:00:18 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:00:18 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 02:00:18 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 02:00:18 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:00:18 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 02:00:18 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 02:00:18 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 02:00:18 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 02:00:18 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 02:00:18 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 02:00:18 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 02:00:18 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 02:00:18 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 02:00:18 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 02:00:18 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds
Aug 29 02:00:18 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:00:19 debian weewx[32259]: restx: PWSWeather: Published record 2017-08-29 02:00:00 EDT (1503986400)
Aug 29 02:00:19 debian weewx[32259]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 02:00:19 debian weewx[32259]: reportengine: Running report StandardReport
Aug 29 02:00:19 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 02:00:19 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 02:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:00:19 debian weewx[32259]: cheetahgenerator: Generated 14 files for report StandardReport in 0.42 seconds
Aug 29 02:00:19 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:00:20 debian weewx[32259]: imagegenerator: Generated 24 images for StandardReport in 0.65 seconds
Aug 29 02:00:20 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 02:00:20 debian weewx[32259]: reportengine: Running report FTP
Aug 29 02:00:20 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 02:00:20 debian weewx[32259]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 02:00:20 debian weewx[32259]: reportengine: Running report RSYNC
Aug 29 02:00:20 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 02:00:20 debian weewx[32259]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 02:00:22 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 02:00:22 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:00:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2079000 - Analysing at 10.00 fps]
Aug 29 02:01:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2128000 - Capturing at 10.00 fps]
Aug 29 02:01:41 debian zmc_m2[12122]: INF [Down-Driveway: 2080000 - Capturing at 10.00 fps]
Aug 29 02:01:49 debian zma_m2[12123]: INF [Down-Driveway: 2074000 - Analysing at 10.00 fps]
Aug 29 02:02:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2080000 - Analysing at 10.00 fps]
Aug 29 02:02:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2129000 - Capturing at 10.00 fps]
Aug 29 02:03:21 debian zmc_m2[12122]: INF [Down-Driveway: 2081000 - Capturing at 10.00 fps]
Aug 29 02:03:29 debian zma_m2[12123]: INF [Down-Driveway: 2075000 - Analysing at 10.00 fps]
Aug 29 02:04:07 debian systemd[1]: Started Run anacron jobs.
Aug 29 02:04:07 debian anacron[631]: Anacron 2.3 started on 2017-08-29
Aug 29 02:04:07 debian anacron[631]: Normal exit (0 jobs run)
Aug 29 02:04:07 debian systemd[1]: anacron.timer: Adding 15.657214s random time.
Aug 29 02:04:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2081000 - Analysing at 10.00 fps]
Aug 29 02:04:11 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:04:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2130000 - Capturing at 10.00 fps]
Aug 29 02:05:01 debian zmc_m2[12122]: INF [Down-Driveway: 2082000 - Capturing at 10.00 fps]
Aug 29 02:05:09 debian zma_m2[12123]: INF [Down-Driveway: 2076000 - Analysing at 10.00 fps]
Aug 29 02:05:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2082000 - Analysing at 10.00 fps]
Aug 29 02:06:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2131000 - Capturing at 10.00 fps]
Aug 29 02:06:19 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:06:41 debian zmc_m2[12122]: INF [Down-Driveway: 2083000 - Capturing at 10.00 fps]
Aug 29 02:06:49 debian zma_m2[12123]: INF [Down-Driveway: 2077000 - Analysing at 10.00 fps]
Aug 29 02:06:57 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:06:57 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:07:25 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:07:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2083000 - Analysing at 10.00 fps]
Aug 29 02:07:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2132000 - Capturing at 10.00 fps]
Aug 29 02:08:21 debian zmc_m2[12122]: INF [Down-Driveway: 2084000 - Capturing at 10.00 fps]
Aug 29 02:08:29 debian zma_m2[12123]: INF [Down-Driveway: 2078000 - Analysing at 10.00 fps]
Aug 29 02:09:01 debian CRON[644]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 02:09:07 debian systemd[1]: Starting Clean php session files...
Aug 29 02:09:07 debian systemd[1]: Started Clean php session files.
Aug 29 02:09:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2084000 - Analysing at 10.00 fps]
Aug 29 02:09:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2133000 - Capturing at 10.00 fps]
Aug 29 02:09:59 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:10:01 debian zmc_m2[12122]: INF [Down-Driveway: 2085000 - Capturing at 10.00 fps]
Aug 29 02:10:10 debian zma_m2[12123]: INF [Down-Driveway: 2079000 - Analysing at 10.00 fps]
Aug 29 02:10:35 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:10:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2085000 - Analysing at 10.00 fps]
Aug 29 02:11:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2134000 - Capturing at 10.00 fps]
Aug 29 02:11:41 debian zmc_m2[12122]: INF [Down-Driveway: 2086000 - Capturing at 10.00 fps]
Aug 29 02:11:49 debian zma_m2[12123]: INF [Down-Driveway: 2080000 - Analysing at 10.00 fps]
Aug 29 02:12:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2086000 - Analysing at 10.00 fps]
Aug 29 02:12:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2135000 - Capturing at 10.00 fps]
Aug 29 02:13:09 debian influxd[30219]: [retention] 2017/08/29 02:13:09 retention policy shard deletion check commencing
Aug 29 02:13:21 debian zmc_m2[12122]: INF [Down-Driveway: 2087000 - Capturing at 10.00 fps]
Aug 29 02:13:30 debian zma_m2[12123]: INF [Down-Driveway: 2081000 - Analysing at 10.00 fps]
Aug 29 02:13:35 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:13:35 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:14:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2087000 - Analysing at 10.00 fps]
Aug 29 02:14:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2136000 - Capturing at 10.00 fps]
Aug 29 02:15:01 debian zmc_m2[12122]: INF [Down-Driveway: 2088000 - Capturing at 10.00 fps]
Aug 29 02:15:10 debian zma_m2[12123]: INF [Down-Driveway: 2082000 - Analysing at 10.00 fps]
Aug 29 02:15:23 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:15:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2088000 - Analysing at 10.00 fps]
Aug 29 02:16:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2137000 - Capturing at 10.00 fps]
Aug 29 02:16:29 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:16:41 debian zmc_m2[12122]: INF [Down-Driveway: 2089000 - Capturing at 10.00 fps]
Aug 29 02:16:50 debian zma_m2[12123]: INF [Down-Driveway: 2083000 - Analysing at 9.90 fps]
Aug 29 02:17:01 debian CRON[730]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 29 02:17:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2089000 - Analysing at 10.00 fps]
Aug 29 02:17:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2138000 - Capturing at 10.00 fps]
Aug 29 02:18:21 debian zmc_m2[12122]: INF [Down-Driveway: 2090000 - Capturing at 10.00 fps]
Aug 29 02:18:30 debian zma_m2[12123]: INF [Down-Driveway: 2084000 - Analysing at 10.00 fps]
Aug 29 02:18:37 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:19:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2090000 - Analysing at 10.00 fps]
Aug 29 02:19:17 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:19:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2139000 - Capturing at 10.00 fps]
Aug 29 02:20:01 debian zmc_m2[12122]: INF [Down-Driveway: 2091000 - Capturing at 10.00 fps]
Aug 29 02:20:10 debian zma_m2[12123]: INF [Down-Driveway: 2085000 - Analysing at 10.00 fps]
Aug 29 02:20:13 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:20:13 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:20:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2091000 - Analysing at 10.00 fps]
Aug 29 02:21:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2140000 - Capturing at 10.00 fps]
Aug 29 02:21:41 debian zmc_m2[12122]: INF [Down-Driveway: 2092000 - Capturing at 10.00 fps]
Aug 29 02:21:50 debian zma_m2[12123]: INF [Down-Driveway: 2086000 - Analysing at 10.00 fps]
Aug 29 02:22:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2092000 - Analysing at 10.00 fps]
Aug 29 02:22:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2141000 - Capturing at 10.00 fps]
Aug 29 02:23:21 debian zmc_m2[12122]: INF [Down-Driveway: 2093000 - Capturing at 10.00 fps]
Aug 29 02:23:30 debian zma_m2[12123]: INF [Down-Driveway: 2087000 - Analysing at 10.00 fps]
Aug 29 02:24:03 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:24:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2093000 - Analysing at 10.00 fps]
Aug 29 02:24:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2142000 - Capturing at 10.00 fps]
Aug 29 02:25:01 debian zmc_m2[12122]: INF [Down-Driveway: 2094000 - Capturing at 10.00 fps]
Aug 29 02:25:10 debian zma_m2[12123]: INF [Down-Driveway: 2088000 - Analysing at 10.00 fps]
Aug 29 02:25:45 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:25:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2094000 - Analysing at 10.00 fps]
Aug 29 02:26:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2143000 - Capturing at 10.00 fps]
Aug 29 02:26:41 debian zmc_m2[12122]: INF [Down-Driveway: 2095000 - Capturing at 10.00 fps]
Aug 29 02:26:50 debian zma_m2[12123]: INF [Down-Driveway: 2089000 - Analysing at 10.00 fps]
Aug 29 02:26:51 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:26:51 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:27:19 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:27:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2095000 - Analysing at 10.00 fps]
Aug 29 02:27:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2144000 - Capturing at 10.00 fps]
Aug 29 02:28:21 debian zmc_m2[12122]: INF [Down-Driveway: 2096000 - Capturing at 10.00 fps]
Aug 29 02:28:30 debian zma_m2[12123]: INF [Down-Driveway: 2090000 - Analysing at 10.00 fps]
Aug 29 02:28:59 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:29:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2096000 - Analysing at 10.00 fps]
Aug 29 02:29:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2145000 - Capturing at 10.00 fps]
Aug 29 02:30:01 debian zmc_m2[12122]: INF [Down-Driveway: 2097000 - Capturing at 10.00 fps]
Aug 29 02:30:03 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:30:10 debian zma_m2[12123]: INF [Down-Driveway: 2091000 - Analysing at 10.00 fps]
Aug 29 02:30:15 debian weewx[32259]: vantage: Getting archive packets since 2017-08-29 02:00:00 EDT (1503986400)
Aug 29 02:30:15 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:30:15 debian weewx[32259]: vantage: Retrieving 1 page(s); starting index= 1
Aug 29 02:30:15 debian weewx[32259]: manager: Added record 2017-08-29 02:30:00 EDT (1503988200) to database 'weewx.sdb'
Aug 29 02:30:15 debian weewx[32259]: manager: Added record 2017-08-29 02:30:00 EDT (1503988200) to daily summary in 'weewx.sdb'
Aug 29 02:30:15 debian weewx[32259]: vantage: DMPAFT complete: page timestamp 2017-07-06 19:00:00 EDT (1499382000) less than final timestamp 2017-08-29 02:30:00 EDT (1503988200)
Aug 29 02:30:15 debian weewx[32259]: vantage: Catch up complete.
Aug 29 02:30:16 debian weewx[32259]: engine: garbage collected 11217 objects
Aug 29 02:30:16 debian weewx[32259]: reportengine: Running reports for latest time in the database.
Aug 29 02:30:16 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:30:16 debian weewx[32259]: reportengine: Running report SteelSeries
Aug 29 02:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 02:30:16 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 02:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 02:30:16 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 02:30:16 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 02:30:16 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 02:30:16 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 02:30:16 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 02:30:16 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 02:30:16 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds
Aug 29 02:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:30:16 debian weewx[32259]: restx: PWSWeather: Published record 2017-08-29 02:30:00 EDT (1503988200)
Aug 29 02:30:16 debian weewx[32259]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 02:30:16 debian weewx[32259]: reportengine: Running report StandardReport
Aug 29 02:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 02:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:30:16 debian weewx[32259]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 02:30:16 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 02:30:16 debian weewx[32259]: imagegenerator: Generated 12 images for StandardReport in 0.21 seconds
Aug 29 02:30:16 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 02:30:16 debian weewx[32259]: reportengine: Running report FTP
Aug 29 02:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 02:30:16 debian weewx[32259]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 02:30:16 debian weewx[32259]: reportengine: Running report RSYNC
Aug 29 02:30:16 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 02:30:16 debian weewx[32259]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 02:30:20 debian weewx[32259]: vantage: retry  #0 failed
Aug 29 02:30:20 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:30:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2097000 - Analysing at 10.00 fps]
Aug 29 02:31:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2146000 - Capturing at 10.00 fps]
Aug 29 02:31:41 debian zmc_m2[12122]: INF [Down-Driveway: 2098000 - Capturing at 10.00 fps]
Aug 29 02:31:50 debian zma_m2[12123]: INF [Down-Driveway: 2092000 - Analysing at 10.00 fps]
Aug 29 02:32:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2098000 - Analysing at 10.00 fps]
Aug 29 02:32:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2147000 - Capturing at 10.00 fps]
Aug 29 02:33:21 debian zmc_m2[12122]: INF [Down-Driveway: 2099000 - Capturing at 10.00 fps]
Aug 29 02:33:30 debian zma_m2[12123]: INF [Down-Driveway: 2093000 - Analysing at 10.00 fps]
Aug 29 02:34:08 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2099000 - Analysing at 10.00 fps]
Aug 29 02:34:34 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2148000 - Capturing at 10.00 fps]
Aug 29 02:35:01 debian zmc_m2[12122]: INF [Down-Driveway: 2100000 - Capturing at 10.00 fps]
Aug 29 02:35:10 debian zma_m2[12123]: INF [Down-Driveway: 2094000 - Analysing at 10.00 fps]
Aug 29 02:35:48 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2100000 - Analysing at 10.00 fps]
Aug 29 02:36:14 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2149000 - Capturing at 10.00 fps]
Aug 29 02:36:41 debian zmc_m2[12122]: INF [Down-Driveway: 2101000 - Capturing at 10.00 fps]
Aug 29 02:36:50 debian zma_m2[12123]: INF [Down-Driveway: 2095000 - Analysing at 10.00 fps]
Aug 29 02:36:55 debian weewx[32259]: vantage: Requesting 200 LOOP packets.
Aug 29 02:36:55 debian weewx[32259]: vantage: gentle wake up of console successful
Aug 29 02:37:28 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 2101000 - Analysing at 10.00 fps]
Aug 29 02:37:37 debian weewx[32259]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 02:37:54 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 2150000 - Capturing at 10.00 fps]
Aug 29 02:38:21 debian zmc_m2[12122]: INF [Down-Driveway: 2102000 - Capturing at 10.00 fps]
Aug 29 02:38:30 debian zma_m2[12123]: INF [Down-Driveway: 2096000 - Analysing at 10.00 fps]
Aug 29 02:39:01 debian CRON[773]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Aug 29 02:39:07 debian systemd[1]: Starting Clean php session files...
Aug 29 02:39:07 debian systemd[1]: Started Clean php session files.

To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.

gjr80

unread,
Aug 29, 2017, 8:17:08 PM8/29/17
to weewx-user
Ok, this is the cause:


Aug 29 00:30:15 debian weewx[32259]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 00:30:15 debian weewx[32259]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 00:30:15 debian weewx[32259]: manager: Daily summary version is 2.0
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: Generate failed with exception '<class 'NameMapper.NotFound'>'
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: **** Reason: cannot find 'oT_F'
Aug 29 00:30:15 debian weewx[32259]: ****  Traceback (most recent call last):
Aug 29 00:30:15 debian weewx[32259]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 329, in generate
Aug 29 00:30:15 debian weewx[32259]: ****      print >> _file, compiled_template
Aug 29 00:30:15 debian weewx[32259]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in __str__
Aug 29 00:30:15 debian weewx[32259]: ****      rc = getattr(self, mainMethName)()
Aug 29 00:30:15 debian weewx[32259]: ****    File "_etc_weewx_skins_ss_gauge_data_txt_tmpl.py", line 205, in respond
Aug 29 00:30:15 debian weewx[32259]: ****  NotFound: cannot find 'oT_F'
Aug 29 00:30:15 debian weewx[32259]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.01 seconds

I know you posted a copy of gauge-data.txt.tmpl early on but a bit of water has gone under the bridge since then. Can you please post the current gauge-data.txt.tmpl being used, it will be here /etc/weewx/skins/ss/gauge-data.txt.tmpl

I also see you have a 30 minute archive period, that is quite long and is likely why you have 'dotty' plots on you main page, also your pages (and gauges) will only update every 30 minutes. 5 minutes is a fairly standard sort of archive period, you might want to consider changing your archive period. To do this change the archive_period setting in weewx.conf under [StdArchive] to say 300 then stop weeWX and use the wee_device utility to set the console to use a 5 minute archive period. Instructions for using wee_device to do this can be found here in the Hardware Guide.

Gary

Robert Schneider

unread,
Aug 29, 2017, 9:37:06 PM8/29/17
to weewx...@googlegroups.com
set $ts=float($current.dateTime.raw)
 #calculate the cloud base in feet
#if $varExists('current.outTemp') and $current.outTemp.raw is not None and $varExists('current.dewpoint') and $current.dewpoint.raw is not None
#set $oT_F = $current.outTemp.degree_F.raw
#set $dp_F = $current.dewpoint.degree_F.raw
#set $a_f = $station.altitude.foot.raw
#set $cloudbase = (($oT_F - $dp_F) / 4.4 * 1000) + $a_f
#set $cloudbase = $cloudbase_format % $cloudbase
#else
#set $cloudbase = 'N/A'
##end if

--
You received this message because you are subscribed to a topic in the Google Groups "weewx-user" group.

Robert Schneider

unread,
Aug 29, 2017, 9:39:36 PM8/29/17
to weewx...@googlegroups.com
I do have it set to 300 
------------------------------
[StdArchive]
    
    # If the station hardware supports data logging then the archive interval
    # will be downloaded from the station. Otherwise, specify it (in seconds).
    archive_interval = 300
    
    # If possible, new archive records are downloaded from the station
    # hardware. If the hardware does not support this, then new archive
    # records will be generated in software.
    # Set the following to "software" to force software record generation.
    record_generation = hardware
    
    # Whether to include LOOP data in hi/low statistics
    loop_hilo = True
    
    # The data binding used to save archive records
    data_binding = wx_binding

gjr80

unread,
Aug 29, 2017, 10:29:17 PM8/29/17
to weewx-user
Maybe so but with a vantage using hardware record you must have the correct archive interval set in the console. This can be done through the console keys but is just as easily done using wee_device as I described in a previous post. If you are using hardware archive record generation (record_generation = hardware) then during startup if there is a conflict between the archive_interval setting in weewx.conf and the archive interval setting in the console, the console value will be used by default. You can see what was used by looking back in your log when you last started weeWX. You will probably see something like this:

Dec 30 10:54:17 saga weewx[10035]: wxengine: The archive interval in the configuration file (300) does not match the station hardware interval (1800).
Dec 30 10:54:17 saga weewx[10035]: wxengine: Using archive interval of 1800

This is a common occurrence with a Vantage as they ship with a default archive interval of 30 minutes.

Gary

Robert Schneider

unread,
Aug 29, 2017, 10:33:29 PM8/29/17
to weewx...@googlegroups.com
I have fixed it , now every 5 mins 
9 22:10:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.14 seconds
Aug 29 22:10:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:10:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 22:10:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:10:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:10:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:10:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:10:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.40 seconds
Aug 29 22:10:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:10:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.18 seconds
Aug 29 22:10:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:10:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:10:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:10:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:10:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:10:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:10:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:10:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:10:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:10:22 debian weewx[6101]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 22:10:31 debian zmc_m2[12122]: INF [Down-Driveway: 3270000 - Capturing at 10.00 fps]
Aug 29 22:10:53 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3264000 - Analysing at 10.00 fps]
Aug 29 22:11:16 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3315000 - Capturing at 10.00 fps]
Aug 29 22:11:44 debian zma_m2[12123]: INF [Down-Driveway: 3259000 - Analysing at 10.00 fps]
Aug 29 22:12:11 debian zmc_m2[12122]: INF [Down-Driveway: 3271000 - Capturing at 10.00 fps]
Aug 29 22:12:33 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3265000 - Analysing at 10.00 fps]
Aug 29 22:12:56 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3316000 - Capturing at 10.00 fps]
Aug 29 22:13:09 debian influxd[30219]: [retention] 2017/08/29 22:13:09 retention policy shard deletion check commencing
Aug 29 22:13:24 debian zma_m2[12123]: INF [Down-Driveway: 3260000 - Analysing at 10.00 fps]
Aug 29 22:13:51 debian zmc_m2[12122]: INF [Down-Driveway: 3272000 - Capturing at 10.00 fps]
Aug 29 22:14:07 debian zmaudit[12095]: INF [Deleted 311 log table entries by time]
Aug 29 22:14:13 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3266000 - Analysing at 10.00 fps]
Aug 29 22:14:36 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3317000 - Capturing at 10.00 fps]
Aug 29 22:15:04 debian zma_m2[12123]: INF [Down-Driveway: 3261000 - Analysing at 10.00 fps]
Aug 29 22:15:14 debian weewx[6101]: vantage: Getting archive packets since 2017-08-29 22:10:00 EDT (1504059000)
Aug 29 22:15:17 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:15:17 debian weewx[6101]: vantage: rude wake up of console successful
Aug 29 22:15:17 debian weewx[6101]: vantage: Retrieving 1 page(s); starting index= 1
Aug 29 22:15:18 debian weewx[6101]: manager: Added record 2017-08-29 22:15:00 EDT (1504059300) to database 'weewx.sdb'
Aug 29 22:15:18 debian weewx[6101]: manager: Added record 2017-08-29 22:15:00 EDT (1504059300) to daily summary in 'weewx.sdb'
Aug 29 22:15:18 debian weewx[6101]: vantage: empty record page 0; index 2
Aug 29 22:15:18 debian weewx[6101]: vantage: Requesting 200 LOOP packets.
Aug 29 22:15:18 debian weewx[6101]: reportengine: Running reports for latest time in the database.
Aug 29 22:15:18 debian weewx[6101]: reportengine: Running report SteelSeries
Aug 29 22:15:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 22:15:18 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:15:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:15:18 debian weewx[6101]: restx: PWSWeather: Published record 2017-08-29 22:15:00 EDT (1504059300)
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: Generate failed with exception '<class 'Cheetah.Parser.ParseError'>'
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: **** Reason: #012#012Some #directives are missing their corresponding #end ___ tag: if#012Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl#012#012Line|Cheetah Code#012----|-------------------------------------------------------------#012362 |           "version":"$station.version",#012363 |             "build":"",#012364 |               "ver":"13"#012365 |}#012      ^
Aug 29 22:15:18 debian weewx[6101]: ****  Traceback (most recent call last):
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 29 22:15:18 debian weewx[6101]: ****      filtersLib=weewx.cheetahgenerator)
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 29 22:15:18 debian weewx[6101]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1553, in _compile
Aug 29 22:15:18 debian weewx[6101]: ****      keepRefToGeneratedCode=True)
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 743, in compile
Aug 29 22:15:18 debian weewx[6101]: ****      compiler.compile()
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Compiler.py", line 1664, in compile
Aug 29 22:15:18 debian weewx[6101]: ****      self._parser.parse()
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 1497, in parse
Aug 29 22:15:18 debian weewx[6101]: ****      self.assertEmptyOpenDirectivesStack()
Aug 29 22:15:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 2657, in assertEmptyOpenDirectivesStack
Aug 29 22:15:18 debian weewx[6101]: ****      raise ParseError(self, msg=errorMsg)
Aug 29 22:15:18 debian weewx[6101]: ****  ParseError:
Aug 29 22:15:18 debian weewx[6101]: ****
Aug 29 22:15:18 debian weewx[6101]: ****  Some #directives are missing their corresponding #end ___ tag: if
Aug 29 22:15:18 debian weewx[6101]: ****  Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:15:18 debian weewx[6101]: ****
Aug 29 22:15:18 debian weewx[6101]: ****  Line|Cheetah Code
Aug 29 22:15:18 debian weewx[6101]: ****  ----|-------------------------------------------------------------
Aug 29 22:15:18 debian weewx[6101]: ****  362 |           "version":"$station.version",
Aug 29 22:15:18 debian weewx[6101]: ****  363 |             "build":"",
Aug 29 22:15:18 debian weewx[6101]: ****  364 |               "ver":"13"
Aug 29 22:15:18 debian weewx[6101]: ****  365 |}
Aug 29 22:15:18 debian weewx[6101]: ****        ^
Aug 29 22:15:18 debian weewx[6101]: ****
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.15 seconds
Aug 29 22:15:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:15:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 22:15:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:15:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:15:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:15:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 22:15:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:15:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.20 seconds
Aug 29 22:15:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:15:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:15:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:15:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:15:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:15:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:15:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:15:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:15:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:15:31 debian zmc_m2[12122]: INF [Down-Driveway: 3273000 - Capturing at 10.00 fps]
Aug 29 22:15:53 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3267000 - Analysing at 10.00 fps]
Aug 29 22:16:16 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3318000 - Capturing at 10.00 fps]
Aug 29 22:16:44 debian zma_m2[12123]: INF [Down-Driveway: 3262000 - Analysing at 10.00 fps]
Aug 29 22:17:01 debian CRON[6781]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 29 22:17:11 debian zmc_m2[12122]: INF [Down-Driveway: 3274000 - Capturing at 10.00 fps]
Aug 29 22:17:33 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3268000 - Analysing at 10.00 fps]
Aug 29 22:17:56 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3319000 - Capturing at 10.00 fps]
Aug 29 22:18:24 debian zma_m2[12123]: INF [Down-Driveway: 3263000 - Analysing at 10.00 fps]
Aug 29 22:18:51 debian zmc_m2[12122]: INF [Down-Driveway: 3275000 - Capturing at 10.00 fps]
Aug 29 22:19:13 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3269000 - Analysing at 10.00 fps]
Aug 29 22:19:36 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3320000 - Capturing at 10.00 fps]
Aug 29 22:20:04 debian zma_m2[12123]: INF [Down-Driveway: 3264000 - Analysing at 10.00 fps]
Aug 29 22:20:14 debian weewx[6101]: vantage: Getting archive packets since 2017-08-29 22:15:00 EDT (1504059300)
Aug 29 22:20:17 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:20:17 debian weewx[6101]: vantage: rude wake up of console successful
Aug 29 22:20:17 debian weewx[6101]: vantage: Retrieving 1 page(s); starting index= 2
Aug 29 22:20:18 debian weewx[6101]: manager: Added record 2017-08-29 22:20:00 EDT (1504059600) to database 'weewx.sdb'
Aug 29 22:20:18 debian weewx[6101]: manager: Added record 2017-08-29 22:20:00 EDT (1504059600) to daily summary in 'weewx.sdb'
Aug 29 22:20:18 debian weewx[6101]: vantage: empty record page 0; index 3
Aug 29 22:20:18 debian weewx[6101]: reportengine: Running reports for latest time in the database.
Aug 29 22:20:18 debian weewx[6101]: vantage: Requesting 200 LOOP packets.
Aug 29 22:20:18 debian weewx[6101]: reportengine: Running report SteelSeries
Aug 29 22:20:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 22:20:18 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:20:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: Generate failed with exception '<class 'Cheetah.Parser.ParseError'>'
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: **** Reason: #012#012Some #directives are missing their corresponding #end ___ tag: if#012Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl#012#012Line|Cheetah Code#012----|-------------------------------------------------------------#012362 |           "version":"$station.version",#012363 |             "build":"",#012364 |               "ver":"13"#012365 |}#012      ^
Aug 29 22:20:18 debian weewx[6101]: ****  Traceback (most recent call last):
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 29 22:20:18 debian weewx[6101]: ****      filtersLib=weewx.cheetahgenerator)
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 29 22:20:18 debian weewx[6101]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1553, in _compile
Aug 29 22:20:18 debian weewx[6101]: ****      keepRefToGeneratedCode=True)
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 743, in compile
Aug 29 22:20:18 debian weewx[6101]: ****      compiler.compile()
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Compiler.py", line 1664, in compile
Aug 29 22:20:18 debian weewx[6101]: ****      self._parser.parse()
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 1497, in parse
Aug 29 22:20:18 debian weewx[6101]: ****      self.assertEmptyOpenDirectivesStack()
Aug 29 22:20:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 2657, in assertEmptyOpenDirectivesStack
Aug 29 22:20:18 debian weewx[6101]: ****      raise ParseError(self, msg=errorMsg)
Aug 29 22:20:18 debian weewx[6101]: ****  ParseError:
Aug 29 22:20:18 debian weewx[6101]: ****
Aug 29 22:20:18 debian weewx[6101]: ****  Some #directives are missing their corresponding #end ___ tag: if
Aug 29 22:20:18 debian weewx[6101]: ****  Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:20:18 debian weewx[6101]: ****
Aug 29 22:20:18 debian weewx[6101]: ****  Line|Cheetah Code
Aug 29 22:20:18 debian weewx[6101]: ****  ----|-------------------------------------------------------------
Aug 29 22:20:18 debian weewx[6101]: ****  362 |           "version":"$station.version",
Aug 29 22:20:18 debian weewx[6101]: ****  363 |             "build":"",
Aug 29 22:20:18 debian weewx[6101]: ****  364 |               "ver":"13"
Aug 29 22:20:18 debian weewx[6101]: ****  365 |}
Aug 29 22:20:18 debian weewx[6101]: ****        ^
Aug 29 22:20:18 debian weewx[6101]: ****
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.16 seconds
Aug 29 22:20:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:20:18 debian weewx[6101]: restx: PWSWeather: Published record 2017-08-29 22:20:00 EDT (1504059600)
Aug 29 22:20:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.21 seconds
Aug 29 22:20:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:20:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:20:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:20:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 22:20:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:20:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.18 seconds
Aug 29 22:20:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:20:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:20:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:20:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:20:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:20:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:20:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:20:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:20:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:20:31 debian zmc_m2[12122]: INF [Down-Driveway: 3276000 - Capturing at 10.00 fps]
Aug 29 22:20:53 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3270000 - Analysing at 10.00 fps]
Aug 29 22:21:16 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3321000 - Capturing at 10.00 fps]
Aug 29 22:21:44 debian zma_m2[12123]: INF [Down-Driveway: 3265000 - Analysing at 10.00 fps]
Aug 29 22:21:46 debian zma_m2[12123]: INF [Down-Driveway: 3265025 - Gone into alarm state]
Aug 29 22:21:46 debian zma_m2[12123]: INF [Down-Driveway: 3265025 - Opening new event 1935, alarm start]
Aug 29 22:21:47 debian zma_m2[12123]: INF [Down-Driveway: 3265026 - Gone into alert state]
Aug 29 22:21:49 debian zma_m2[12123]: INF [Down-Driveway: 3265051 - Left alarm state (1935) - 51(1) images]
Aug 29 22:21:49 debian zma_m2[12123]: INF [Down-Driveway: 3265051 - Closing event 1935, alarm end]
Aug 29 22:22:11 debian zmc_m2[12122]: INF [Down-Driveway: 3277000 - Capturing at 10.00 fps]
Aug 29 22:22:33 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3271000 - Analysing at 10.00 fps]
Aug 29 22:22:56 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3322000 - Capturing at 10.00 fps]
Aug 29 22:23:24 debian zma_m2[12123]: INF [Down-Driveway: 3266000 - Analysing at 10.00 fps]
Aug 29 22:23:51 debian zmc_m2[12122]: INF [Down-Driveway: 3278000 - Capturing at 10.00 fps]
Aug 29 22:24:02 debian weewx[6101]: restx: Wunderground-RF: Failed upload attempt 1: ''
Aug 29 22:24:13 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3272000 - Analysing at 10.00 fps]
Aug 29 22:24:36 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3323000 - Capturing at 10.00 fps]
Aug 29 22:24:47 debian zma_m2[12123]: INF [Down-Driveway: 3266835 - Gone into alarm state]
Aug 29 22:24:48 debian zma_m2[12123]: INF [Down-Driveway: 3266835 - Opening new event 1936, alarm start]
Aug 29 22:24:48 debian zma_m2[12123]: INF [Down-Driveway: 3266836 - Gone into alert state]
Aug 29 22:24:50 debian zma_m2[12123]: INF [Down-Driveway: 3266861 - Left alarm state (1936) - 51(1) images]
Aug 29 22:24:50 debian zma_m2[12123]: INF [Down-Driveway: 3266861 - Closing event 1936, alarm end]
Aug 29 22:25:03 debian zma_m2[12123]: INF [Down-Driveway: 3266986 - Gone into alarm state]
Aug 29 22:25:03 debian zma_m2[12123]: INF [Down-Driveway: 3266986 - Opening new event 1937, alarm start]
Aug 29 22:25:03 debian zma_m2[12123]: INF [Down-Driveway: 3266987 - Gone into alert state]
Aug 29 22:25:04 debian zma_m2[12123]: INF [Down-Driveway: 3267000 - Analysing at 10.00 fps]
Aug 29 22:25:05 debian zma_m2[12123]: INF [Down-Driveway: 3267012 - Left alarm state (1937) - 51(1) images]
Aug 29 22:25:05 debian zma_m2[12123]: INF [Down-Driveway: 3267012 - Closing event 1937, alarm end]
Aug 29 22:25:14 debian weewx[6101]: vantage: Getting archive packets since 2017-08-29 22:20:00 EDT (1504059600)
Aug 29 22:25:17 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:25:17 debian weewx[6101]: vantage: rude wake up of console successful
Aug 29 22:25:17 debian weewx[6101]: vantage: Retrieving 1 page(s); starting index= 3
Aug 29 22:25:17 debian weewx[6101]: manager: Added record 2017-08-29 22:25:00 EDT (1504059900) to database 'weewx.sdb'
Aug 29 22:25:17 debian weewx[6101]: manager: Added record 2017-08-29 22:25:00 EDT (1504059900) to daily summary in 'weewx.sdb'
Aug 29 22:25:18 debian weewx[6101]: vantage: empty record page 0; index 4
Aug 29 22:25:18 debian weewx[6101]: reportengine: Running reports for latest time in the database.
Aug 29 22:25:18 debian weewx[6101]: vantage: Requesting 200 LOOP packets.
Aug 29 22:25:18 debian weewx[6101]: reportengine: Running report SteelSeries
Aug 29 22:25:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 22:25:18 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:25:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:25:18 debian weewx[6101]: restx: PWSWeather: Published record 2017-08-29 22:25:00 EDT (1504059900)
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: Generate failed with exception '<class 'Cheetah.Parser.ParseError'>'
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: **** Reason: #012#012Some #directives are missing their corresponding #end ___ tag: if#012Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl#012#012Line|Cheetah Code#012----|-------------------------------------------------------------#012362 |           "version":"$station.version",#012363 |             "build":"",#012364 |               "ver":"13"#012365 |}#012      ^
Aug 29 22:25:18 debian weewx[6101]: ****  Traceback (most recent call last):
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 29 22:25:18 debian weewx[6101]: ****      filtersLib=weewx.cheetahgenerator)
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 29 22:25:18 debian weewx[6101]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1553, in _compile
Aug 29 22:25:18 debian weewx[6101]: ****      keepRefToGeneratedCode=True)
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 743, in compile
Aug 29 22:25:18 debian weewx[6101]: ****      compiler.compile()
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Compiler.py", line 1664, in compile
Aug 29 22:25:18 debian weewx[6101]: ****      self._parser.parse()
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 1497, in parse
Aug 29 22:25:18 debian weewx[6101]: ****      self.assertEmptyOpenDirectivesStack()
Aug 29 22:25:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 2657, in assertEmptyOpenDirectivesStack
Aug 29 22:25:18 debian weewx[6101]: ****      raise ParseError(self, msg=errorMsg)
Aug 29 22:25:18 debian weewx[6101]: ****  ParseError:
Aug 29 22:25:18 debian weewx[6101]: ****
Aug 29 22:25:18 debian weewx[6101]: ****  Some #directives are missing their corresponding #end ___ tag: if
Aug 29 22:25:18 debian weewx[6101]: ****  Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:25:18 debian weewx[6101]: ****
Aug 29 22:25:18 debian weewx[6101]: ****  Line|Cheetah Code
Aug 29 22:25:18 debian weewx[6101]: ****  ----|-------------------------------------------------------------
Aug 29 22:25:18 debian weewx[6101]: ****  362 |           "version":"$station.version",
Aug 29 22:25:18 debian weewx[6101]: ****  363 |             "build":"",
Aug 29 22:25:18 debian weewx[6101]: ****  364 |               "ver":"13"
Aug 29 22:25:18 debian weewx[6101]: ****  365 |}
Aug 29 22:25:18 debian weewx[6101]: ****        ^
Aug 29 22:25:18 debian weewx[6101]: ****
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.17 seconds
Aug 29 22:25:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:25:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.19 seconds
Aug 29 22:25:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:25:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:25:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:25:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.38 seconds
Aug 29 22:25:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:25:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.18 seconds
Aug 29 22:25:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:25:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:25:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:25:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:25:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:25:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:25:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:25:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:25:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:25:31 debian zmc_m2[12122]: INF [Down-Driveway: 3279000 - Capturing at 10.00 fps]
Aug 29 22:25:54 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3273000 - Analysing at 9.90 fps]
Aug 29 22:26:17 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3324000 - Capturing at 9.90 fps]
Aug 29 22:26:35 debian zma_m2[12123]: INF [Down-Driveway: 3267908 - Gone into alarm state]
Aug 29 22:26:35 debian zma_m2[12123]: INF [Down-Driveway: 3267908 - Opening new event 1938, alarm start]
Aug 29 22:26:35 debian zma_m2[12123]: INF [Down-Driveway: 3267909 - Gone into alert state]
Aug 29 22:26:38 debian zma_m2[12123]: INF [Down-Driveway: 3267934 - Left alarm state (1938) - 51(1) images]
Aug 29 22:26:38 debian zma_m2[12123]: INF [Down-Driveway: 3267934 - Closing event 1938, alarm end]
Aug 29 22:26:44 debian zma_m2[12123]: INF [Down-Driveway: 3268000 - Analysing at 10.00 fps]
Aug 29 22:26:54 debian zma_m2[12123]: INF [Down-Driveway: 3268098 - Gone into alarm state]
Aug 29 22:26:54 debian zma_m2[12123]: INF [Down-Driveway: 3268098 - Opening new event 1939, alarm start]
Aug 29 22:26:55 debian zma_m2[12123]: INF [Down-Driveway: 3268099 - Gone into alert state]
Aug 29 22:26:57 debian zma_m2[12123]: INF [Down-Driveway: 3268124 - Left alarm state (1939) - 51(1) images]
Aug 29 22:26:57 debian zma_m2[12123]: INF [Down-Driveway: 3268124 - Closing event 1939, alarm end]
Aug 29 22:27:06 debian zma_m2[12123]: INF [Down-Driveway: 3268211 - Gone into alarm state]
Aug 29 22:27:06 debian zma_m2[12123]: INF [Down-Driveway: 3268211 - Opening new event 1940, alarm start]
Aug 29 22:27:06 debian zma_m2[12123]: INF [Down-Driveway: 3268212 - Gone into alert state]
Aug 29 22:27:08 debian zma_m2[12123]: INF [Down-Driveway: 3268237 - Left alarm state (1940) - 51(1) images]
Aug 29 22:27:08 debian zma_m2[12123]: INF [Down-Driveway: 3268237 - Closing event 1940, alarm end]
Aug 29 22:27:11 debian zmc_m2[12122]: INF [Down-Driveway: 3280000 - Capturing at 10.00 fps]
Aug 29 22:27:14 debian zma_m2[12123]: INF [Down-Driveway: 3268298 - Gone into alarm state]
Aug 29 22:27:14 debian zma_m2[12123]: INF [Down-Driveway: 3268298 - Opening new event 1941, alarm start]
Aug 29 22:27:15 debian zma_m2[12123]: INF [Down-Driveway: 3268299 - Gone into alert state]
Aug 29 22:27:17 debian zma_m2[12123]: INF [Down-Driveway: 3268324 - Left alarm state (1941) - 51(1) images]
Aug 29 22:27:17 debian zma_m2[12123]: INF [Down-Driveway: 3268324 - Closing event 1941, alarm end]
Aug 29 22:27:29 debian zma_m2[12123]: INF [Down-Driveway: 3268441 - Gone into alarm state]
Aug 29 22:27:29 debian zma_m2[12123]: INF [Down-Driveway: 3268441 - Opening new event 1942, alarm start]
Aug 29 22:27:29 debian zma_m2[12123]: INF [Down-Driveway: 3268442 - Gone into alert state]
Aug 29 22:27:31 debian zma_m2[12123]: INF [Down-Driveway: 3268467 - Left alarm state (1942) - 51(1) images]
Aug 29 22:27:32 debian zma_m2[12123]: INF [Down-Driveway: 3268467 - Closing event 1942, alarm end]
Aug 29 22:27:35 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3274000 - Analysing at 9.90 fps]
Aug 29 22:27:58 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3325000 - Capturing at 9.90 fps]
Aug 29 22:28:04 debian zma_m2[12123]: INF [Down-Driveway: 3268797 - Gone into alarm state]
Aug 29 22:28:05 debian zma_m2[12123]: INF [Down-Driveway: 3268797 - Opening new event 1943, alarm start]
Aug 29 22:28:05 debian zma_m2[12123]: INF [Down-Driveway: 3268798 - Gone into alert state]
Aug 29 22:28:07 debian zma_m2[12123]: INF [Down-Driveway: 3268823 - Left alarm state (1943) - 51(1) images]
Aug 29 22:28:07 debian zma_m2[12123]: INF [Down-Driveway: 3268823 - Closing event 1943, alarm end]
Aug 29 22:28:09 debian zma_m2[12123]: INF [Down-Driveway: 3268845 - Gone into alarm state]
Aug 29 22:28:10 debian zma_m2[12123]: INF [Down-Driveway: 3268845 - Opening new event 1944, alarm start]
Aug 29 22:28:10 debian zma_m2[12123]: INF [Down-Driveway: 3268846 - Gone into alert state]
Aug 29 22:28:12 debian zma_m2[12123]: INF [Down-Driveway: 3268871 - Left alarm state (1944) - 51(1) images]
Aug 29 22:28:12 debian zma_m2[12123]: INF [Down-Driveway: 3268871 - Closing event 1944, alarm end]
Aug 29 22:28:25 debian zma_m2[12123]: INF [Down-Driveway: 3269000 - Analysing at 9.90 fps]
Aug 29 22:28:37 debian zma_m2[12123]: INF [Down-Driveway: 3269115 - Gone into alarm state]
Aug 29 22:28:37 debian zma_m2[12123]: INF [Down-Driveway: 3269115 - Opening new event 1945, alarm start]
Aug 29 22:28:37 debian zma_m2[12123]: INF [Down-Driveway: 3269116 - Gone into alert state]
Aug 29 22:28:39 debian zma_m2[12123]: INF [Down-Driveway: 3269141 - Left alarm state (1945) - 51(1) images]
Aug 29 22:28:39 debian zma_m2[12123]: INF [Down-Driveway: 3269141 - Closing event 1945, alarm end]
Aug 29 22:28:51 debian zmc_m2[12122]: INF [Down-Driveway: 3281000 - Capturing at 10.00 fps]
Aug 29 22:29:16 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275000 - Analysing at 9.90 fps]
Aug 29 22:29:17 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275010 - Gone into alarm state]
Aug 29 22:29:17 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275010 - Opening new event 1946, alarm start]
Aug 29 22:29:24 debian zma_m2[12123]: INF [Down-Driveway: 3269590 - Gone into alarm state]
Aug 29 22:29:24 debian zma_m2[12123]: INF [Down-Driveway: 3269590 - Opening new event 1947, alarm start]
Aug 29 22:29:25 debian zma_m2[12123]: INF [Down-Driveway: 3269591 - Gone into alert state]
Aug 29 22:29:27 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275065 - Gone into alert state]
Aug 29 22:29:28 debian zma_m2[12123]: INF [Down-Driveway: 3269616 - Left alarm state (1947) - 51(1) images]
Aug 29 22:29:28 debian zma_m2[12123]: INF [Down-Driveway: 3269616 - Closing event 1947, alarm end]
Aug 29 22:29:29 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275090 - Left alarm state (1946) - 105(55) images]
Aug 29 22:29:29 debian zma_m3[12128]: INF [OVER-FRONT-DOOR: 3275090 - Closing event 1946, alarm end]
Aug 29 22:29:39 debian zmc_m3[12124]: INF [OVER-FRONT-DOOR: 3326000 - Capturing at 9.90 fps]
Aug 29 22:30:06 debian zma_m2[12123]: INF [Down-Driveway: 3270000 - Analysing at 9.90 fps]
Aug 29 22:30:14 debian weewx[6101]: vantage: Getting archive packets since 2017-08-29 22:25:00 EDT (1504059900)
Aug 29 22:30:17 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:30:17 debian weewx[6101]: vantage: rude wake up of console successful
Aug 29 22:30:17 debian weewx[6101]: vantage: Retrieving 1 page(s); starting index= 4
Aug 29 22:30:17 debian weewx[6101]: manager: Added record 2017-08-29 22:30:00 EDT (1504060200) to database 'weewx.sdb'
Aug 29 22:30:17 debian weewx[6101]: manager: Added record 2017-08-29 22:30:00 EDT (1504060200) to daily summary in 'weewx.sdb'
Aug 29 22:30:18 debian weewx[6101]: reportengine: Running reports for latest time in the database.
Aug 29 22:30:18 debian weewx[6101]: vantage: Requesting 200 LOOP packets.
Aug 29 22:30:18 debian weewx[6101]: reportengine: Running report SteelSeries
Aug 29 22:30:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/ss/skin.conf for report SteelSeries
Aug 29 22:30:18 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx/ss
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: Generate failed with exception '<class 'Cheetah.Parser.ParseError'>'
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: **** Ignoring template /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: **** Reason: #012#012Some #directives are missing their corresponding #end ___ tag: if#012Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl#012#012Line|Cheetah Code#012----|-------------------------------------------------------------#012362 |           "version":"$station.version",#012363 |             "build":"",#012364 |               "ver":"13"#012365 |}#012      ^
Aug 29 22:30:18 debian weewx[6101]: ****  Traceback (most recent call last):
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 29 22:30:18 debian weewx[6101]: ****      filtersLib=weewx.cheetahgenerator)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 29 22:30:18 debian weewx[6101]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1553, in _compile
Aug 29 22:30:18 debian weewx[6101]: ****      keepRefToGeneratedCode=True)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 743, in compile
Aug 29 22:30:18 debian weewx[6101]: ****      compiler.compile()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Compiler.py", line 1664, in compile
Aug 29 22:30:18 debian weewx[6101]: ****      self._parser.parse()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 1497, in parse
Aug 29 22:30:18 debian weewx[6101]: ****      self.assertEmptyOpenDirectivesStack()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 2657, in assertEmptyOpenDirectivesStack
Aug 29 22:30:18 debian weewx[6101]: ****      raise ParseError(self, msg=errorMsg)
Aug 29 22:30:18 debian weewx[6101]: ****  ParseError:
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: ****  Some #directives are missing their corresponding #end ___ tag: if
Aug 29 22:30:18 debian weewx[6101]: ****  Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: ****  Line|Cheetah Code
Aug 29 22:30:18 debian weewx[6101]: ****  ----|-------------------------------------------------------------
Aug 29 22:30:18 debian weewx[6101]: ****  362 |           "version":"$station.version",
Aug 29 22:30:18 debian weewx[6101]: ****  363 |             "build":"",
Aug 29 22:30:18 debian weewx[6101]: ****  364 |               "ver":"13"
Aug 29 22:30:18 debian weewx[6101]: ****  365 |}
Aug 29 22:30:18 debian weewx[6101]: ****        ^
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.13 seconds
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:18 debian weewx[6101]: restx: PWSWeather: Published record 2017-08-29 22:30:00 EDT (1504060200)
Aug 29 22:30:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 22:30:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:30:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.19 seconds
Aug 29 22:30:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:30:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:30:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:30:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:30:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:30:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:30:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:30:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:30:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:30:32 debian zmc_m2[12122]: INF [Down-Driveway: 3282000 - Capturing at 10.00 fps]
Aug 29 22:30:42 debian zma_m2[12123]: INF [Down-Driveway: 3270362 - Gone into alarm state]
Aug 29 22:30:42 debian zma_m2[12123]: INF [Down-Driveway: 3270362 - Opening new event 1948, alarm start]
Aug 29 22:30:43 debian zma_m2[12123]: INF [Down-Driveway: 3270363 - Gone into alert state]
Aug 29 22:30:45 debian zma_m2[12123]: INF [Down-Driveway: 3270388 - Left alarm state (1948) - 51(1) images]
Aug 29 22:30:45 debian zma_m2[12123]: INF [Down-Driveway: 3270388 - Closing event 1948, alarm end]

--

gjr80

unread,
Aug 29, 2017, 10:42:35 PM8/29/17
to weewx-user
The issue (below) is that your skins/ss/gauge-data.txt.tmpl has a number of typos in it. Specifically:

lines 43 and 44 are:

set $ts=float($current.dateTime.raw)
set $timeutc=time.strftime("%Y,%m,%d,%H,%M,%S", time.gmtime($ts))


they should be:
#set $ts=float($current.dateTime.raw)
#set $timeutc=time.strftime("%Y,%m,%d,%H,%M,%S", time.gmtime($ts))

Also line 121 is:
##end if

it should be:
#end if

Line 112 is:

 #calculate the cloud base in feet


and it should be (no leading space):

#calculate the cloud base in feet

The first 2 are critical, the second not so. If you are confident editing skins/ss/gauge-data.txt.tmpl to fix these problems then do so, otherwise obtain a correct copy of gauge-data.txt.tmpl and copy it over the existing copy in skins/ss.

Gary

Robert Schneider

unread,
Aug 30, 2017, 4:36:29 PM8/30/17
to weewx...@googlegroups.com
I fixed the file now i see a new err 

Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: **** Reason: #012#012Some #directives are missing their corresponding #end ___ tag: if#012Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl#012#012Line|Cheetah Code#012----|-------------------------------------------------------------#012362 |           "version":"$station.version",#012363 |             "build":"",#012364 |               "ver":"13"#012365 |}#012      ^
Aug 29 22:30:18 debian weewx[6101]: ****  Traceback (most recent call last):
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/share/weewx/weewx/cheetahgenerator.py", line 327, in generate
Aug 29 22:30:18 debian weewx[6101]: ****      filtersLib=weewx.cheetahgenerator)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1259, in __init__
Aug 29 22:30:18 debian weewx[6101]: ****      self._compile(source, file, compilerSettings=compilerSettings)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1553, in _compile
Aug 29 22:30:18 debian weewx[6101]: ****      keepRefToGeneratedCode=True)
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 743, in compile
Aug 29 22:30:18 debian weewx[6101]: ****      compiler.compile()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Compiler.py", line 1664, in compile
Aug 29 22:30:18 debian weewx[6101]: ****      self._parser.parse()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 1497, in parse
Aug 29 22:30:18 debian weewx[6101]: ****      self.assertEmptyOpenDirectivesStack()
Aug 29 22:30:18 debian weewx[6101]: ****    File "/usr/lib/python2.7/dist-packages/Cheetah/Parser.py", line 2657, in assertEmptyOpenDirectivesStack
Aug 29 22:30:18 debian weewx[6101]: ****      raise ParseError(self, msg=errorMsg)
Aug 29 22:30:18 debian weewx[6101]: ****  ParseError:
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: ****  Some #directives are missing their corresponding #end ___ tag: if
Aug 29 22:30:18 debian weewx[6101]: ****  Line 365, column 2 in file /etc/weewx/skins/ss/gauge-data.txt.tmpl
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: ****  Line|Cheetah Code
Aug 29 22:30:18 debian weewx[6101]: ****  ----|-------------------------------------------------------------
Aug 29 22:30:18 debian weewx[6101]: ****  362 |           "version":"$station.version",
Aug 29 22:30:18 debian weewx[6101]: ****  363 |             "build":"",
Aug 29 22:30:18 debian weewx[6101]: ****  364 |               "ver":"13"
Aug 29 22:30:18 debian weewx[6101]: ****  365 |}
Aug 29 22:30:18 debian weewx[6101]: ****        ^
Aug 29 22:30:18 debian weewx[6101]: ****
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: Generated 1 files for report SteelSeries in 0.13 seconds
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:18 debian weewx[6101]: restx: PWSWeather: Published record 2017-08-29 22:30:00 EDT (1504060200)
Aug 29 22:30:18 debian weewx[6101]: imagegenerator: Generated 11 images for SteelSeries in 0.20 seconds
Aug 29 22:30:18 debian weewx[6101]: reportengine: Running report StandardReport
Aug 29 22:30:18 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Standard/skin.conf for report StandardReport
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:18 debian weewx[6101]: cheetahgenerator: Generated 14 files for report StandardReport in 0.41 seconds
Aug 29 22:30:18 debian weewx[6101]: manager: Daily summary version is 2.0
Aug 29 22:30:19 debian weewx[6101]: imagegenerator: Generated 12 images for StandardReport in 0.19 seconds
Aug 29 22:30:19 debian weewx[6101]: copygenerator: copied 0 files to /var/www/html/weewx
Aug 29 22:30:19 debian weewx[6101]: reportengine: Running report FTP
Aug 29 22:30:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Ftp/skin.conf for report FTP
Aug 29 22:30:19 debian weewx[6101]: ftpgenerator: FTP upload not requested. Skipped.
Aug 29 22:30:19 debian weewx[6101]: reportengine: Running report RSYNC
Aug 29 22:30:19 debian weewx[6101]: reportengine: Found configuration file /etc/weewx/skins/Rsync/skin.conf for report RSYNC
Aug 29 22:30:19 debian weewx[6101]: rsyncgenerator: rsync upload not requested. Skipped.
Aug 29 22:30:22 debian weewx[6101]: vantage: retry  #0 failed
Aug 29 22:30:22 debian weewx[6101]: vantage: gentle wake up of console successful
Aug 29 22:30:32 debian zmc_m2[12122]: INF [Down-Driveway: 3282000 - Capturing at 10.00 fps]
Aug 29 22:30:42 debian zma_m2[12123]: INF [Down-Driveway: 3270362 - Gone into alarm state]
Aug 29 22:30:42 debian zma_m2[12123]: INF [Down-Driveway: 3270362 - Opening new event 1948, alarm start]
Aug 29 22:30:43 debian zma_m2[12123]: INF [Down-Driveway: 3270363 - Gone into alert state]
Aug 29 22:30:45 debian zma_m2[12123]: INF [Down-Driveway: 3270388 - Left alarm state (1948) - 51(1) images]
Aug 29 22:30:45 debian zma_m2[12123]: INF [Down-Driveway: 3270388 - Closing event 1948, alarm end]
--

Robert Schneider

unread,
Aug 30, 2017, 4:43:14 PM8/30/17
to weewx...@googlegroups.com
Ok i got it working , Thank you for your help , but i see wen you hover over the gage i see window open winch looks like it should show some type
of info 

gjr80

unread,
Aug 30, 2017, 6:11:25 PM8/30/17
to weewx-user
When you hover over a gauge you should (if enabled - which it is by deault) have a panel display with some words and some aggregates and a plot of the relevant obs. If the gauges are displaying correct values then the words and aggregates should be OK, they are pulled direct from gauge-data.txt. Missing plots is another issue.

If the plots are missing the first thing is to check the log, are there any errors. If there is post the relevant log extract. If no errors it is likely either the plots are not being copied to your web server or there is an incorrect setting in the SteelSeries script gauges.js. I can see the plots are in the weewx/ss directory on your web server (browse to http://kc2cwt.from-fl.com/weewx/ss/daybarometer.png) so they are being generated and correctly copied to your web server. So the likely issue in an incorrect setting in gauges.js. You will find gauges.js in 2 locations on your system, firstly it is in /etc/weewx/skins/ss/scripts, there will also be a copy in the weewx/ss/scripts directory on your web server. You can look at either (they will be the same) but it is important that lasting changes are only made to /etc/weewx/skins/ss/scripts/gauges.js as this file is copied to the web server each time weeWX is started (chnages to the other gauges.js will be lost on start).

Have a look at gauges.js, in particular line 38 at the moment you have:
imgPathURL : './images/', // *** Change this to the relative path for your 'Trend' graph images

it needs to be:

imgPathURL : '',            //*** Change this to the relative path for your 'Trend' graph images

Note there is no space between the quotes and the comma after the last quote.

While you are in gauges.js you might as well make a couple of other changes to remove unused gauges (unless you like that sort of thing). You don't appear to have UV or solar radiation sensors so you can disable these gauges. This skin slso does not populate the windrose gauge so that might as well be disabled as well. To do this the relevant lines should be as follows:

showUvGauge        : false,                   //Display the UV Index gauge
showSolarGauge    
: false,                   //Display the Solar gauge
showRoseGauge      
: false,                   //Show the optional Wind Rose gauge

Finally, your gauges page is showing a timeout before the gauge data is updated, to fix this check the stationTimeout setting in gauges.js, it should be set to 10 you currently have it set to 3:

stationTimeout     : 10,                      //period of no data change before we declare the station off-line, in minutes (default 3)

Save gauges.js then stop/start weeWX. On the next report cycle hopefully things will be fixed.

Gary

Robert Schneider

unread,
Aug 30, 2017, 7:21:37 PM8/30/17
to weewx...@googlegroups.com
I I fixed gauges.js file , but it still is not showing info on hoover 
---------------------------------------------------------------------------------
var gauges = (
function () {
    'use strict';
    var strings = LANG.EN,         // Set to your default language. Store all the strings in one object
        config = {
            // Script configuration parameters you may want to 'tweak'
            scriptVer          : '2.6.3',
            weatherProgram     : 6,                      // Set 0=Cumulus, 1=Weather Display, 2=VWS, 3=WeatherCat, 4=Meteobridge, 5=WView, 6=WeeWX, 7=WLCOM
            imgPathURL         : '',            // *** Change this to the relative path for your 'Trend' graph images
            oldGauges          : 'gauges.htm',           // *** Change this to the relative path for your 'old' gauges page.
            realtimeInterval   : 15,                     // *** Download data interval, set to your realtime data update interval in seconds
            longPoll           : false,                  // if enabled, use long polling and PHP generated data !!only enable if you understand how this is implemented!!
            gaugeMobileScaling : 0.85,                   // scaling factor to apply when displaying the gauges mobile devices, set to 1 to disable (default 0.85)
            graphUpdateTime    : 10,                     // period of pop-up data graph refresh, in minutes (default 15)
            stationTimeout     : 10,                      // period of no data change before we declare the station off-line, in minutes (default 3)
            pageUpdateLimit    : 20,                     // period after which the page stops automatically updating, in minutes (default 20),
                                                         // - set to 0 (zero) to disable this feature
            pageUpdatePswd     : 'its-me',               // password to over ride the page updates time-out, do not set to blank even if you do not use a password - http://<URL>&pageUpdate=its-me
            digitalFont        : true,                  // Font control for the gauges & timer
            digitalForecast    : true,                  // Font control for the status display, set this to false for languages that use accented characters in the forecasts
            showPopupData      : true,                   // Pop-up data displayed
            showPopupGraphs    : true,                   // If pop-up data is displayed, show the graphs?
            mobileShowGraphs   : true,                  // If false, on a mobile/narrow display, always disable the graphs
            showWindVariation  : true,                   // Show variation in wind direction over the last 10 minutes on the direction gauge
            showWindMetar      : true,                  // Show the METAR substring for wind speed/direction over the last 10 minutes on the direction gauge popup
            showIndoorTempHum  : true,                   // Show the indoor temperature/humidity options
            showCloudGauge     : true,                   // Display the Cloud Base gauge
            showUvGauge        : false,                   // Display the UV Index gauge
            showSolarGauge     : false,                   // Display the Solar gauge
            showSunshineLed    : true,                   // Show 'sun shining now' LED on solar gauge
            showRoseGauge      : false,                   // Show the optional Wind Rose gauge
            showRoseGaugeOdo   : true,                   // Show the optional Wind Rose gauge wind run Odometer
            showRoseOnDirGauge : true,                   // Show the rose data as sectors on the direction gauge
            showGaugeShadow    : true,                   // Show a drop shadow outside the gauges
            roundCloudbaseVal  : true,                   // Round the value shown on the cloud base gauge to make it easier to read
                                                         // The realtime files should be absolute paths, "/xxx.txt" refers to the public root of your web server
            realTimeUrlLongPoll: 'realtimegauges-longpoll.php',     // *** ALL Users: If using long polling, change to your location of the PHP long poll realtime file ***
                                                                    // *** the supplied file is for Cumulus only
            realTimeUrlCumulus : 'realtimegauges.txt',     // *** Cumulus Users: Change to your location of the realtime file ***
            realTimeUrlWD      : 'customclientraw.txt',    // *** WD Users: Change to your location of the ccr file ***
            realTimeUrlVWS     : 'steelseriesVWSjson.php', // *** VWS Users: Change to your location of the JSON script generator ***
            realTimeUrlWC      : 'realtimegaugesWC.txt',   // *** WeatherCat Users: Change to your location of the JSON script generator ***
            realTimeUrlMB      : 'MBrealtimegauges.txt',   // *** Meteobridge Users: Change to the location of the JSON file
            realTimeUrlWView   : 'customclientraw.txt',    // *** WView Users: Change to your location of the customclientraw.txt file ***
            realTimeUrlWeewx   : 'gauge-data.txt',         // *** WeeWX Users: Change to your location of the gauge data file ***
            realTimeUrlWLCOM   : 'WLrealtimegauges.php',   // *** WLCOM Users: change to location of WLCOMtags.php file ***
            useCookies         : true,                   // Persistently store user preferences in a cookie?
            tipImages          : [],

--

Robert Schneider

unread,
Aug 30, 2017, 7:27:53 PM8/30/17
to weewx...@googlegroups.com
Opps i did not restart .
Now its working 

Robert Schneider

unread,
Aug 30, 2017, 7:36:53 PM8/30/17
to weewx...@googlegroups.com
Thanks for all you help ,

Robert Schneider

unread,
Aug 31, 2017, 5:07:17 PM8/31/17
to weewx...@googlegroups.com
thanks it is working great . is thair a way to add radar and maybe a long-term forecast to that page

gjr80

unread,
Sep 2, 2017, 6:51:54 PM9/2/17
to weewx-user
On Friday, 1 September 2017 07:07:17 UTC+10, Robert Schneider wrote:
thanks it is working great .

That is good to hear.
 
is thair a way to add radar and maybe a long-term forecast to that page

Forecast wise with the current SteelSeries Gauges page/skin you are limited to what you can put in the scrolling text display. Putting text is the scrolling text display is a simple change to the template but the trick is in having the text available to include in the first place. The forecast extension could provide the Zambretti forecast and that could be used, the forecast extension does not provide the Weather Underground textual forecast and I am not sure about NWS, I am not in USA. I put together a weeWX extension that produces a loop based gauge-data.txt (the SteelSeries skin provides an archive based gauge-data.txt) that can add the Zambretti forecast text to the scroller or it can optionally use the contents of a text file in the scroller. I have been meaning to add the WU textual forecast but need to find the time. You can find the extension here.

In terms of radar, there is nothing that I am aware of. I have seen some folks incorporate some or all of the gauges on a page that displays other (not necessarily radar) info. The actual inclusion of one or more gauges on a page is quite simple, but it is something you would need to create yourself.

Gary

Robert Schneider

unread,
Sep 3, 2017, 10:24:18 AM9/3/17
to weewx...@googlegroups.com
Thanks for the info , Have a good weekend 

Reply all
Reply to author
Forward
0 new messages