Advertisement
martymoose

debug

Dec 1st, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.15 KB | None | 0 0
  1. DEBUG
  2. root@Wee_Wx:~# wee_debug --info
  3. Using verbosity=1, displaying most info
  4.  
  5. wee_debug output will be sent to stdout(console)
  6.  
  7. Using configuration file /etc/weewx/weewx.conf
  8. Using database binding 'wx_binding', which is bound to database 'archive_sqlite'
  9.  
  10. System info
  11. CPU implementer: 0x41
  12. Features: half thumb fastmult vfp edsp java tls
  13. CPU architecture: 7
  14. BogoMIPS: 697.95
  15. Hardware: BCM2708
  16. CPU revision: 7
  17. CPU part: 0xb76
  18. model name: ARMv6-compatible processor rev 7 (v6l)
  19. Serial: 000000006d665b92
  20. processor: 0
  21. CPU variant: 0x0
  22. Revision: 0003
  23.  
  24. Operating system: debian 8.0
  25. Linux Wee_Wx 4.4.34+ #930 Wed Nov 23 15:12:30 GMT 2016 armv6l
  26. 1 minute load average: 0.23
  27. 5 minute load average: 0.30
  28. 15 minute load average: 0.14
  29.  
  30. General weewx info
  31. Weewx version 3.6.2 detected.
  32.  
  33. Station info
  34. Station type: Vantage
  35. Driver: weewx.drivers.vantage
  36.  
  37. Driver info
  38. [Vantage]
  39. # This section is for the Davis Vantage series of weather stations.
  40.  
  41. # Connection type: serial or ethernet
  42. # serial (the classic VantagePro)
  43. # ethernet (the WeatherLinkIP)
  44. type = serial
  45.  
  46. # If the connection type is serial, a port must be specified:
  47. # Debian, Ubuntu, Redhat, Fedora, and SuSE:
  48. # /dev/ttyUSB0 is a common USB port name
  49. # /dev/ttyS0 is a common serial port name
  50. # BSD:
  51. # /dev/cuaU0 is a common serial port name
  52. port = /dev/ttyUSB0
  53.  
  54. # If the connection type is ethernet, an IP Address/hostname is required:
  55. host = 1.2.3.4
  56.  
  57. ######################################################
  58. # The rest of this section rarely needs any attention.
  59. # You can safely leave it "as is."
  60. ######################################################
  61.  
  62. # Serial baud rate (usually 19200)
  63. baudrate = 19200
  64.  
  65. # TCP port (when using the WeatherLinkIP)
  66. tcp_port = 22222
  67.  
  68. # TCP send delay (when using the WeatherLinkIP):
  69. tcp_send_delay = 0.5
  70.  
  71. # The id of your ISS station (usually 1). If you use a wind meter connected
  72. # to a anemometer transmitter kit, use its id
  73. iss_id = 1
  74.  
  75. # How long to wait for a response from the station before giving up (in
  76. # seconds; must be greater than 2)
  77. timeout = 4
  78.  
  79. # How long to wait before trying again (in seconds)
  80. wait_before_retry = 1.2
  81.  
  82. # How many times to try before giving up:
  83. max_tries = 4
  84.  
  85. # The driver to use:
  86. driver = weewx.drivers.vantage
  87.  
  88. Currently installed extensions
  89. No extensions installed
  90.  
  91. Archive info
  92. Database name: weewx.sdb
  93. Table name: archive
  94. Unit system: 1 (US)
  95. First good timestamp: 2016-11-20 21:15:00 AEST (1479640500)
  96. Last good timestamp: 2016-12-02 10:15:00 AEST (1480637700)
  97. Number of records: 3307
  98. weewx (weewx.conf) is set to use an archive interval of 300 seconds.
  99. The station hardware was not interrogated in determining archive interval.
  100.  
  101. Databases configured in weewx.conf
  102. Database name: weewx.sdb
  103. Database driver: weedb.sqlite
  104.  
  105. Database name: weewx
  106. Database driver: weedb.mysql
  107. Database host: localhost
  108.  
  109.  
  110. Parsed and obfuscated weewx.conf
  111. # WEEWX CONFIGURATION FILE
  112. #
  113. # Copyright (c) 2009-2015 Tom Keffer <tkeffer@gmail.com>
  114. # See the file LICENSE.txt for your rights.
  115.  
  116. ##############################################################################
  117.  
  118. # This section is for general configuration information.
  119.  
  120. # Set to 1 for extra debug info, otherwise comment it out or set to zero
  121. debug = 1
  122.  
  123. # Root directory of the weewx data file hierarchy for this station
  124. WEEWX_ROOT = /
  125.  
  126. # How long to wait before timing out a socket (FTP, HTTP) connection
  127. socket_timeout = 20
  128.  
  129. # Do not modify this. It is used when installing and updating weewx.
  130. version = 3.6.2
  131.  
  132. ##############################################################################
  133.  
  134. # This section is for information about the station.
  135.  
  136. [Station]
  137.  
  138. # Description of the station location
  139. location = "Ayr, Parkside, Queensland"
  140.  
  141. # Latitude and longitude in decimal degrees
  142. latitude = -19.576
  143. longitude = 147.422
  144.  
  145. # Altitude of the station, with unit it is in. This is downloaded from
  146. # from the station if the hardware supports it.
  147. altitude = 12, meter
  148.  
  149. # Set to type of station hardware. There must be a corresponding stanza
  150. # in this file with a 'driver' parameter indicating the driver to be used.
  151. station_type = Vantage
  152. # The start of the rain year (1=January; 10=October, etc.). This is
  153. # downloaded from the station if the hardware supports it.
  154. rain_year_start = 1
  155.  
  156. # Start of week (0=Monday, 6=Sunday)
  157. week_start = 1
  158.  
  159. # If you have a website, you may specify an URL
  160. station_url = XXX obfuscated by wee_debug XXX
  161.  
  162. ##############################################################################
  163.  
  164. [Vantage]
  165. # This section is for the Davis Vantage series of weather stations.
  166.  
  167. # Connection type: serial or ethernet
  168. # serial (the classic VantagePro)
  169. # ethernet (the WeatherLinkIP)
  170. type = serial
  171.  
  172. # If the connection type is serial, a port must be specified:
  173. # Debian, Ubuntu, Redhat, Fedora, and SuSE:
  174. # /dev/ttyUSB0 is a common USB port name
  175. # /dev/ttyS0 is a common serial port name
  176. # BSD:
  177. # /dev/cuaU0 is a common serial port name
  178. port = /dev/ttyUSB0
  179.  
  180. # If the connection type is ethernet, an IP Address/hostname is required:
  181. host = 1.2.3.4
  182.  
  183. ######################################################
  184. # The rest of this section rarely needs any attention.
  185. # You can safely leave it "as is."
  186. ######################################################
  187.  
  188. # Serial baud rate (usually 19200)
  189. baudrate = 19200
  190.  
  191. # TCP port (when using the WeatherLinkIP)
  192. tcp_port = 22222
  193.  
  194. # TCP send delay (when using the WeatherLinkIP):
  195. tcp_send_delay = 0.5
  196.  
  197. # The id of your ISS station (usually 1). If you use a wind meter connected
  198. # to a anemometer transmitter kit, use its id
  199. iss_id = 1
  200.  
  201. # How long to wait for a response from the station before giving up (in
  202. # seconds; must be greater than 2)
  203. timeout = 4
  204.  
  205. # How long to wait before trying again (in seconds)
  206. wait_before_retry = 1.2
  207.  
  208. # How many times to try before giving up:
  209. max_tries = 4
  210.  
  211. # The driver to use:
  212. driver = weewx.drivers.vantage
  213.  
  214. ##############################################################################
  215.  
  216. # This section is for uploading data to Internet sites
  217.  
  218. [StdRESTful]
  219.  
  220. [[StationRegistry]]
  221. # To register this weather station with weewx, set this to true
  222. register_this_station = True
  223.  
  224. [[AWEKAS]]
  225. # This section is for configuring posts to AWEKAS.
  226.  
  227. # If you wish to do this, set the option 'enable' to true,
  228. # and specify a username and password.
  229. enable = false
  230. username = XXX obfuscated by wee_debug XXX
  231. password = XXX obfuscated by wee_debug XXX
  232.  
  233. [[CWOP]]
  234. # This section is for configuring posts to CWOP.
  235.  
  236. # If you wish to do this, set the option 'enable' to true,
  237. # and specify the station ID (e.g., CW1234).
  238. enable = false
  239. station = XXX obfuscated by wee_debug XXX
  240.  
  241. # If this is an APRS (radio amateur) station, uncomment
  242. # the following and replace with a passcode (e.g., 12345).
  243. #passcode = replace_me (APRS stations only)
  244.  
  245. [[PWSweather]]
  246. # This section is for configuring posts to PWSweather.com.
  247.  
  248. # If you wish to do this, set the option 'enable' to true,
  249. # and specify a station and password.
  250. enable = false
  251. station = XXX obfuscated by wee_debug XXX
  252. password = XXX obfuscated by wee_debug XXX
  253.  
  254. [[WOW]]
  255. # This section is for configuring posts to WOW.
  256.  
  257. # If you wish to do this, set the option 'enable' to true,
  258. # and specify a station and password.
  259. enable = true
  260. station = XXX obfuscated by wee_debug XXX
  261. password = XXX obfuscated by wee_debug XXX
  262.  
  263. [[Wunderground]]
  264. # This section is for configuring posts to the Weather Underground.
  265.  
  266. # If you wish to do this, set the option 'enable' to true,
  267. # and specify a station (e.g., 'KORHOODR3') and password.
  268. enable = true
  269. station = XXX obfuscated by wee_debug XXX
  270. password = XXX obfuscated by wee_debug XXX
  271.  
  272. # Set the following to True to have weewx use the WU "Rapidfire"
  273. # protocol. Not all hardware can support it. See the User's Guide.
  274. rapidfire = True
  275.  
  276.  
  277.  
  278.  
  279.  
  280. ##############################################################################
  281.  
  282. # This section specifies what reports, using which skins, to generate.
  283.  
  284. [StdReport]
  285.  
  286. # Where the skins reside, relative to WEEWX_ROOT
  287. SKIN_ROOT = /etc/weewx/skins
  288.  
  289. # Where the generated reports should go, relative to WEEWX_ROOT
  290. HTML_ROOT = /var/www/html/weewx
  291.  
  292. # The database binding indicates which data should be used in reports.
  293. data_binding = wx_binding
  294.  
  295. # Each of the following subsections defines a report that will be run.
  296.  
  297. [[StandardReport]]
  298. # See the customizing guide to change the units, plot types and line
  299. # colors, modify the fonts, display additional sensor data, and other
  300. # customizations. Many of those changes can be made here by overriding
  301. # parameters, or by modifying templates within the skin itself.
  302.  
  303. # The StandardReport uses the 'Standard' skin, which contains the
  304. # images, templates and plots for the report.
  305. skin = Standard
  306. [[[Units]]]
  307. [[[[Groups]]]]
  308. group_altitude = meter
  309. group_speed2 = meter_per_second2
  310. group_pressure = mbar
  311. group_rain = mm
  312. group_rainrate = mm_per_hour
  313. group_temperature = degree_C
  314. group_degree_day = degree_C_day
  315. group_speed = meter_per_second
  316.  
  317. [[FTP]]
  318. # FTP'ing the results to a webserver is treated as just another report,
  319. # albeit one with an unusual report generator!
  320. skin = Ftp
  321.  
  322. # Set to True for an FTP over TLS (FTPS) connection. Not all servers
  323. # support this.
  324. secure_ftp = true
  325.  
  326. # Most FTP servers use port 21
  327. port = 21
  328.  
  329. # Set to 1 to use passive mode, zero for active mode
  330. passive = 1
  331.  
  332. # If you wish to use FTP, uncomment and fill out the next four lines.
  333. user = XXX obfuscated by wee_debug XXX
  334. password = XXX obfuscated by wee_debug XXX
  335. server = ftp.martymandy.com
  336. path = /
  337.  
  338. # To upload files from something other than what HTML_ROOT is set
  339. # to above, specify a different HTML_ROOT here.
  340. HTML_ROOT = /var/www/html/weewx
  341.  
  342. [[RSYNC]]
  343. # rsync'ing to a webserver is treated as just another report
  344. skin = Rsync
  345.  
  346. # If you wish to use rsync, you must configure passwordless ssh using
  347. # public/private key authentication from the user account that weewx
  348. # runs as to the user account on the remote machine where the files
  349. # will be copied.
  350. #
  351. # The following three lines determine where files will be sent.
  352. #server = replace with the rsync server name, e.g, www.threefools.org
  353. #path = replace with the rsync destination directory (e.g., /weather)
  354. #user = replace with the rsync username
  355.  
  356. # Rsync can be configured to remove files from the remote server if
  357. # they don't exist under HTML_ROOT locally. USE WITH CAUTION: if you
  358. # make a mistake in the remote path, you could could unintentionally
  359. # cause unrelated files to be deleted. Set to 1 to enable remote file
  360. # deletion, zero to allow files to accumulate remotely.
  361. delete = 0
  362.  
  363. ##############################################################################
  364.  
  365. # This service acts as a filter, converting the unit system coming from
  366. # the hardware to a unit system in the database.
  367.  
  368. [StdConvert]
  369.  
  370. # The target_unit affects only the unit system in the database. Once
  371. # chosen it cannot be changed without converting the entire database.
  372. # Modification of target_unit after starting weewx will result in
  373. # corrupt data - the database will contain a mix of US and METRIC data.
  374. #
  375. # The value of target_unit does not affect the unit system for
  376. # reporting - reports can display US, Metric, or any combination of units.
  377. #
  378. # In most cases, target_unit should be left as the default: US
  379. #
  380. # In particular, those migrating from a standard wview installation
  381. # should use US since that is what the wview database contains.
  382.  
  383. # DO NOT MODIFY THIS VALUE UNLESS YOU KNOW WHAT YOU ARE DOING!
  384. target_unit = US # Options are 'US', 'METRICWX', or 'METRIC'
  385.  
  386. ##############################################################################
  387.  
  388. # This section can adjust data using calibration expressions.
  389.  
  390. [StdCalibrate]
  391.  
  392. [[Corrections]]
  393. # For each type, an arbitrary calibration expression can be given.
  394. # It should be in the units defined in the StdConvert section.
  395. # Example:
  396. foo = foo + 0.2
  397.  
  398. ##############################################################################
  399.  
  400. # This section is for quality control checks. If units are not specified,
  401. # values must be in the units defined in the StdConvert section.
  402.  
  403. [StdQC]
  404.  
  405. [[MinMax]]
  406. barometer = 26, 32.5, inHg
  407. outTemp = -40, 120, degree_F
  408. inTemp = 10, 120, degree_F
  409. outHumidity = 0, 100
  410. inHumidity = 0, 100
  411. windSpeed = 0, 120, mile_per_hour
  412. pressure = 24, 34.5, inHg
  413.  
  414. ##############################################################################
  415.  
  416. # This section controls the origin of derived values.
  417.  
  418. [StdWXCalculate]
  419.  
  420. [[Calculations]]
  421. # Derived quantities are calculated by this service. Possible values are:
  422. # hardware - use the value provided by hardware
  423. # software - use the value calculated by weewx
  424. # prefer_hardware - use value provide by hardware if available,
  425. # otherwise use value calculated by weewx
  426.  
  427. pressure = prefer_hardware
  428. barometer = prefer_hardware
  429. altimeter = prefer_hardware
  430. windchill = prefer_hardware
  431. heatindex = prefer_hardware
  432. dewpoint = prefer_hardware
  433. inDewpoint = prefer_hardware
  434. rainRate = prefer_hardware
  435.  
  436. ##############################################################################
  437.  
  438. # For hardware that supports it, this section controls how often the
  439. # onboard clock gets updated.
  440.  
  441. [StdTimeSynch]
  442.  
  443. # How often to check the weather station clock for drift (in seconds)
  444. clock_check = 14400
  445.  
  446. # How much it can drift before we will correct it (in seconds)
  447. max_drift = 5
  448.  
  449. ##############################################################################
  450.  
  451. # This section is for configuring the archive service.
  452.  
  453. [StdArchive]
  454.  
  455. # If the station hardware supports data logging then the archive interval
  456. # will be downloaded from the station. Otherwise, specify it (in seconds).
  457. archive_interval = 300
  458.  
  459. # How long to wait (in seconds) before processing new archive data. Must
  460. # be greater than zero.
  461. archive_delay = 15
  462.  
  463. # If possible, new archive records are downloaded from the station
  464. # hardware. If the hardware does not support this, then new archive
  465. # records will be generated in software.
  466. # Set the following to "software" to force software record generation.
  467. record_generation = hardware
  468.  
  469. # Whether to include LOOP data in hi/low statistics
  470. loop_hilo = True
  471.  
  472. # The data binding used to save archive records
  473. data_binding = wx_binding
  474.  
  475. ##############################################################################
  476.  
  477. # This section binds a data store to a database.
  478.  
  479. [DataBindings]
  480.  
  481. [[wx_binding]]
  482. # The database must match one of the sections in [Databases].
  483. # This is likely to be the only option you would want to change.
  484. database = archive_sqlite
  485. # The name of the table within the database
  486. table_name = archive
  487. # The manager handles aggregation of data for historical summaries
  488. manager = weewx.wxmanager.WXDaySummaryManager
  489. # The schema defines the structure of the database.
  490. # It is *only* used when the database is created.
  491. schema = schemas.wview.schema
  492.  
  493. ##############################################################################
  494.  
  495. # This section defines various databases.
  496.  
  497. [Databases]
  498.  
  499. # A SQLite database is simply a single file
  500. [[archive_sqlite]]
  501. database_type = SQLite
  502. database_name = weewx.sdb
  503.  
  504. # MySQL
  505. [[archive_mysql]]
  506. database_type = MySQL
  507. database_name = weewx
  508.  
  509. ##############################################################################
  510.  
  511. # This section defines defaults for the different types of databases.
  512.  
  513. [DatabaseTypes]
  514.  
  515. # Defaults for SQLite databases
  516. [[SQLite]]
  517. driver = weedb.sqlite
  518. # Directory in which the database files are located
  519. SQLITE_ROOT = /var/lib/weewx
  520.  
  521. # Defaults for MySQL databases
  522. [[MySQL]]
  523. driver = weedb.mysql
  524. # The host where the database is located
  525. host = localhost
  526. # The user name for logging in to the host
  527. user = XXX obfuscated by wee_debug XXX
  528. # The password for the user name
  529. password = XXX obfuscated by wee_debug XXX
  530.  
  531. ##############################################################################
  532.  
  533. # This section configures the internal weewx engine.
  534.  
  535. [Engine]
  536.  
  537. [[Services]]
  538. # This section specifies the services that should be run. They are
  539. # grouped by type, and the order of services within each group
  540. # determines the order in which the services will be run.
  541. prep_services = weewx.engine.StdTimeSynch
  542. data_services = ,
  543. process_services = weewx.engine.StdConvert, weewx.engine.StdCalibrate, weewx.engine.StdQC, weewx.wxservices.StdWXCalculate
  544. archive_services = weewx.engine.StdArchive
  545. restful_services = weewx.restx.StdStationRegistry, weewx.restx.StdWunderground, weewx.restx.StdPWSweather, weewx.restx.StdCWOP, weewx.restx.StdWOW, weewx.restx.StdAWEKAS
  546. report_services = weewx.engine.StdPrint, weewx.engine.StdReport
  547.  
  548. wee_debug report successfully generated
  549.  
  550.  
  551.  
  552. MESSAGES LOG
  553.  
  554. Dec 2 10:15:06 Wee_Wx weewx[445]: engine: Initializing weewx version 3.6.2
  555. Dec 2 10:15:06 Wee_Wx weewx[445]: engine: Using Python 2.7.9 (default, Sep 17 2016, 20:26:04) #012[GCC 4.9.2]
  556. Dec 2 10:15:06 Wee_Wx weewx[445]: engine: Platform Linux-4.4.34+-armv6l-with-debian-8.0
  557. Dec 2 10:15:06 Wee_Wx weewx[445]: engine: pid file is /var/run/weewx.pid
  558. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Using configuration file /etc/weewx/weewx.conf
  559. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Loading station type Vantage (weewx.drivers.vantage)
  560. Dec 2 10:15:07 Wee_Wx kernel: [ 21.085574] smsc95xx 1-1.1:1.0 eth0: link up, 100Mbps, full-duplex, lpa 0xC5E1
  561. Dec 2 10:15:07 Wee_Wx kernel: [ 21.096467] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
  562. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: StdConvert target unit is 0x1
  563. Dec 2 10:15:07 Wee_Wx weewx[544]: wxcalculate: The following values will be calculated: barometer=prefer_hardware, windchill=prefer_hardware, dewpoint=prefer_hardware, appTemp=prefer_hardware, rainRate=prefer_hardware, windrun=prefer_hardware, heatindex=prefer_hardware, maxSolarRad=prefer_hardware, humidex=prefer_hardware, pressure=prefer_hardware, inDewpoint=prefer_hardware, ET=prefer_hardware, altimeter=prefer_hardware, cloudbase=prefer_hardware
  564. Dec 2 10:15:07 Wee_Wx weewx[544]: wxcalculate: The following algorithms will be used for calculations: altimeter=aaNOAA, maxSolarRad=RS
  565. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Archive will use data binding wx_binding
  566. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Record generation will be attempted in 'hardware'
  567. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Using archive interval of 300 seconds (specified by hardware)
  568. Dec 2 10:15:07 Wee_Wx weewx[544]: engine: Using binding 'wx_binding' to database 'weewx.sdb'
  569. Dec 2 10:15:07 Wee_Wx weewx[544]: manager: Starting backfill of daily summaries
  570. Dec 2 10:15:07 Wee_Wx weewx[544]: manager: Daily summaries up to date
  571. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: StationRegistry: Station will be registered.
  572. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: Wunderground-RF: Data for station IQLDAYR2 will be posted
  573. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: PWSweather: Posting not enabled.
  574. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: CWOP: Posting not enabled.
  575. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: WOW: Data for station 915966001 will be posted
  576. Dec 2 10:15:08 Wee_Wx weewx[544]: restx: AWEKAS: Posting not enabled.
  577. Dec 2 10:15:08 Wee_Wx weewx[544]: engine: Starting up weewx version 3.6.2
  578. Dec 2 10:15:08 Wee_Wx weewx[544]: engine: Clock error is 8.62 seconds (positive is fast)
  579. Dec 2 10:15:08 Wee_Wx weewx[544]: vantage: Clock set to 2016-12-02 10:15:09 AEST (1480637709)
  580. Dec 2 10:15:10 Wee_Wx weewx[544]: manager: added record 2016-12-02 10:15:00 AEST (1480637700) to database 'weewx.sdb'
  581. Dec 2 10:15:10 Wee_Wx weewx[544]: manager: added record 2016-12-02 10:15:00 AEST (1480637700) to daily summary in 'weewx.sdb'
  582. Dec 2 10:15:10 Wee_Wx weewx[544]: engine: Starting main packet loop.
  583. Dec 2 10:15:17 Wee_Wx weewx[544]: restx: WOW: Published record 2016-12-02 10:15:00 AEST (1480637700)
  584. Dec 2 10:15:36 Wee_Wx weewx[544]: restx: StationRegistry: Published record 2016-12-02 10:15:00 AEST (1480637700)
  585. Dec 2 10:21:34 Wee_Wx weewx[785]: engine: Initializing weewx version 3.6.2
  586. Dec 2 10:21:34 Wee_Wx weewx[785]: engine: Using Python 2.7.9 (default, Sep 17 2016, 20:26:04) #012[GCC 4.9.2]
  587. Dec 2 10:21:34 Wee_Wx weewx[785]: engine: Platform Linux-4.4.34+-armv6l-with-debian-8.0
  588. Dec 2 10:21:34 Wee_Wx weewx[785]: engine: pid file is /var/run/weewx.pid
  589. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: Using configuration file /etc/weewx/weewx.conf
  590. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: Loading station type Vantage (weewx.drivers.vantage)
  591. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: StdConvert target unit is 0x1
  592. Dec 2 10:21:34 Wee_Wx rsyslogd-2007: action 'action 17' suspended, next retry is Fri Dec 2 10:22:04 2016 [try http://www.rsyslog.com/e/2007 ]
  593. Dec 2 10:21:34 Wee_Wx weewx[789]: wxcalculate: The following values will be calculated: barometer=prefer_hardware, windchill=prefer_hardware, dewpoint=prefer_hardware, appTemp=prefer_hardware, rainRate=prefer_hardware, windrun=prefer_hardware, heatindex=prefer_hardware, maxSolarRad=prefer_hardware, humidex=prefer_hardware, pressure=prefer_hardware, inDewpoint=prefer_hardware, ET=prefer_hardware, altimeter=prefer_hardware, cloudbase=prefer_hardware
  594. Dec 2 10:21:34 Wee_Wx weewx[789]: wxcalculate: The following algorithms will be used for calculations: altimeter=aaNOAA, maxSolarRad=RS
  595. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: Archive will use data binding wx_binding
  596. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: Record generation will be attempted in 'hardware'
  597. Dec 2 10:21:34 Wee_Wx weewx[789]: engine: Using archive interval of 300 seconds (specified by hardware)
  598. Dec 2 10:21:35 Wee_Wx weewx[789]: engine: Using binding 'wx_binding' to database 'weewx.sdb'
  599. Dec 2 10:21:35 Wee_Wx weewx[789]: manager: Starting backfill of daily summaries
  600. Dec 2 10:21:35 Wee_Wx weewx[789]: manager: Daily summaries up to date
  601. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: StationRegistry: Station will be registered.
  602. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: Wunderground-RF: Data for station IQLDAYR2 will be posted
  603. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: PWSweather: Posting not enabled.
  604. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: CWOP: Posting not enabled.
  605. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: WOW: Data for station 915966001 will be posted
  606. Dec 2 10:21:35 Wee_Wx weewx[789]: restx: AWEKAS: Posting not enabled.
  607. Dec 2 10:21:35 Wee_Wx weewx[789]: engine: Starting up weewx version 3.6.2
  608. Dec 2 10:21:35 Wee_Wx weewx[789]: engine: Clock error is -7.58 seconds (positive is fast)
  609. Dec 2 10:21:35 Wee_Wx weewx[789]: vantage: Clock set to 2016-12-02 10:21:36 AEST (1480638096)
  610. Dec 2 10:21:37 Wee_Wx weewx[789]: manager: added record 2016-12-02 10:20:00 AEST (1480638000) to database 'weewx.sdb'
  611. Dec 2 10:21:37 Wee_Wx weewx[789]: manager: added record 2016-12-02 10:20:00 AEST (1480638000) to daily summary in 'weewx.sdb'
  612. Dec 2 10:21:38 Wee_Wx weewx[789]: engine: Starting main packet loop.
  613. Dec 2 10:21:39 Wee_Wx weewx[789]: restx: WOW: Published record 2016-12-02 10:20:00 AEST (1480638000)
  614. Dec 2 10:21:50 Wee_Wx weewx[789]: restx: StationRegistry: Published record 2016-12-02 10:20:00 AEST (1480638000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement