[vz-users] Falscher Zählerwert im Frontend

Daniel Schwarz mail at create-stuff.de
So Feb 2 20:09:26 CET 2020


Hallo zusammen,

auch ich möchte meinen Zähler mit dem Volkszähler loggen und 
visualisieren. Dazu habe ich mir das Image heruntergeladen und 
installiert. Mein Setup:

-Raspberry Pi 1 Mod. B
- Image von volkszaehler.org (2019-07-07-volkszaehler_raspian_buster.img)
- Schreib-Lesekopf im Selbstbau an USB (ttyUSB0)
- Zähler EMH eHZ Gen. K (SML)
- Middlware/Frontend version: vom  Sun Jun 2 12:04:35 2019 +0200
- vzlogger Version 0.7.0

Den Kanal habe ich angelegt (Typ El. Energie (Leistungswerte)) und die 
vzlogger.conf entsprechend angepasst. Allerdings zeigt mir das Frontend 
nur den Gesamtzählerstand an (meine bisher verbrauchten 4,7 MWh). Ich 
hätte aber eher gerne den aktuellen Verbrauch. Min, Max und Durchschnitt 
sind bei mir jeweils identisch, der Wert "Verbrauch" erschließt sich mir 
derzeit gar nicht. Ich habe auch schon mit diversen Skalierungen 
herumexperimentiert und einen Zählerwert (der zur IBN angezeigte Wert) 
vorbelegt.

Die Daten, die vom Zähler gesendet werden, habe ich manuell decodiert, 
diese sind plausibel (Wirkleistung je Phase, Gesamtwirkleistung und 
Bezug für den Tarif stimmen mit Anzeige überein).

Meine vzlogger.conf ist im Anhang. Ein Logfile habe ich auch eine 
zeitlang mitschreiben lassen. Ich werde aber aus einigen 
OBIS-Identifiern nicht wirklich schlau. Ich weiß nicht mehr, wo ich noch 
ansetzen kann. Vielleicht könnt ihr euch mal bitte meine Dateien anschauen.

Danke!

Daniel



-------------- nächster Teil --------------
{
    // General settings
    "daemon": true,        // run periodically
    "verbosity": 0,         // log verbosity (0=log_alert, 1=log_error, 3=log_warning, 5=log_info, 10=log_debug, 15=log_finest)
    "log": "/var/log/vzlogger.log", // log file, optional
    "retry": 0,            // http retry delay in seconds

    // Build-in HTTP server
    "local": {
        "enabled": false,   // enable local HTTPd for serving live readings
        "port": 8080,       // TCP port for local HTTPd
        "index": true,      // provide index listing of available channels if no UUID was requested
        "timeout": 30,      // timeout for long polling comet requests in seconds (0 disables comet)
        "buffer": 600        // HTTPd buffer configuration for serving readings, default -1
                            //   >0: number of seconds of readings to serve
                            //   <0: number of tuples to server per channel (e.g. -3 will serve 3 tuples)
    },

    // realtime notification settings
    "push": [],

    // Meter configuration
    "meters": [
    {
      "enabled": true,
      "allowskip": true,
      "interval": -1,
      "aggtime": -1,
      "aggfixedinterval": true,
      "channels": [
        {
          "uuid": "d64577c0-439a-11ea-b60c-d94de65a2849",
          "identifier": "1-0:1.8.0",
          "api": "volkszaehler",
          "middleware": "http://localhost/middleware.php",
          "aggmode": "max",
          "duplicates": 60
        }
      ],
      "protocol": "sml",
      "device": "/dev/ttyUSB0",
      "baudrate": 9600,
      "parity": "8n1"
    }
  ]

}
-------------- nächster Teil --------------
[Feb 02 20:01:57][chn0] CURL: Sent '[ [ 1580670117953, 4179676.7000000002 ] ]' bytes
[Feb 02 20:01:57][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:01:58][chn0] CURL: Received 26 bytes
[Feb 02 20:01:58][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:01:58][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:01:58][chn0] CURL Request succeeded with code: 200
[Feb 02 20:01:58][chn0] emptied all (1) values
[Feb 02 20:02:00][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:00][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179677.00 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179677.00 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.60 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670120105
[Feb 02 20:02:00][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.30 ts=1580670120105
[Feb 02 20:02:00][chn0] Adding reading to queue (value=4179677.00 ts=1580670120105)
[Feb 02 20:02:00][MAX]  4179677.000000 @ 1580670120105
[Feb 02 20:02:00][MAX]  RESULT 4179677.000000 @ 1580670120105
[Feb 02 20:02:00][chn0] ==> number of tuples: 1
[Feb 02 20:02:00][chn0] compare: 1580670117953 1580670120105
[Feb 02 20:02:00][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:00][chn0] JSON request body: [ [ 1580670120105, 4179677 ] ]
[Feb 02 20:02:00][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:00][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:00][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:00][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:00][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:00][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:00][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:00][chn0] CURL: Sent 30 bytes..
[Feb 02 20:02:00][chn0] CURL: Sent '[ [ 1580670120105, 4179677 ] ]' bytes
[Feb 02 20:02:00][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:02:00][chn0] CURL: Received 26 bytes
[Feb 02 20:02:00][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:00][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:00][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:00][chn0] emptied all (1) values
[Feb 02 20:02:02][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:02][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179677.30 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179677.30 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670122257
[Feb 02 20:02:02][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670122257
[Feb 02 20:02:02][chn0] Adding reading to queue (value=4179677.30 ts=1580670122257)
[Feb 02 20:02:02][MAX]  4179677.300000 @ 1580670122257
[Feb 02 20:02:02][MAX]  RESULT 4179677.300000 @ 1580670122257
[Feb 02 20:02:02][chn0] ==> number of tuples: 1
[Feb 02 20:02:02][chn0] compare: 1580670120105 1580670122257
[Feb 02 20:02:02][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:02][chn0] JSON request body: [ [ 1580670122257, 4179677.3000000003 ] ]
[Feb 02 20:02:02][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:02][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:02][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:02][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:02][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:02][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:02][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:02][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:02][chn0] CURL: Sent '[ [ 1580670122257, 4179677.3000000003 ] ]' bytes
[Feb 02 20:02:02][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:02][chn0] CURL: Received 26 bytes
[Feb 02 20:02:02][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:02][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:02][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:02][chn0] emptied all (1) values
[Feb 02 20:02:03][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:03][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179677.50 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179677.50 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=494.90 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670123716
[Feb 02 20:02:03][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670123716
[Feb 02 20:02:03][chn0] Adding reading to queue (value=4179677.50 ts=1580670123716)
[Feb 02 20:02:03][MAX]  4179677.500000 @ 1580670123716
[Feb 02 20:02:03][MAX]  RESULT 4179677.500000 @ 1580670123716
[Feb 02 20:02:03][chn0] ==> number of tuples: 1
[Feb 02 20:02:03][chn0] compare: 1580670122257 1580670123716
[Feb 02 20:02:03][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:03][chn0] JSON request body: [ [ 1580670123716, 4179677.5 ] ]
[Feb 02 20:02:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:03][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:03][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:03][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:03][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:03][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:03][chn0] CURL: Sent 32 bytes..
[Feb 02 20:02:03][chn0] CURL: Sent '[ [ 1580670123716, 4179677.5 ] ]' bytes
[Feb 02 20:02:03][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:02:03][chn0] CURL: Received 26 bytes
[Feb 02 20:02:03][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:03][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:03][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:03][chn0] emptied all (1) values
[Feb 02 20:02:05][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:05][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179677.80 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179677.80 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670125880
[Feb 02 20:02:05][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670125880
[Feb 02 20:02:05][chn0] Adding reading to queue (value=4179677.80 ts=1580670125880)
[Feb 02 20:02:05][MAX]  4179677.800000 @ 1580670125880
[Feb 02 20:02:05][MAX]  RESULT 4179677.800000 @ 1580670125880
[Feb 02 20:02:05][chn0] ==> number of tuples: 1
[Feb 02 20:02:05][chn0] compare: 1580670123716 1580670125880
[Feb 02 20:02:05][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:05][chn0] JSON request body: [ [ 1580670125880, 4179677.8000000003 ] ]
[Feb 02 20:02:05][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:05][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:05][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:05][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:05][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:05][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:05][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:05][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:05][chn0] CURL: Sent '[ [ 1580670125880, 4179677.8000000003 ] ]' bytes
[Feb 02 20:02:05][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:05][chn0] CURL: Received 26 bytes
[Feb 02 20:02:05][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:05][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:05][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:05][chn0] emptied all (1) values
[Feb 02 20:02:08][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:08][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179678.10 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179678.10 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.30 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670128033
[Feb 02 20:02:08][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.80 ts=1580670128033
[Feb 02 20:02:08][chn0] Adding reading to queue (value=4179678.10 ts=1580670128033)
[Feb 02 20:02:08][MAX]  4179678.100000 @ 1580670128033
[Feb 02 20:02:08][MAX]  RESULT 4179678.100000 @ 1580670128033
[Feb 02 20:02:08][chn0] ==> number of tuples: 1
[Feb 02 20:02:08][chn0] compare: 1580670125880 1580670128033
[Feb 02 20:02:08][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:08][chn0] JSON request body: [ [ 1580670128033, 4179678.1000000001 ] ]
[Feb 02 20:02:08][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:08][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:08][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:08][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:08][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:08][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:08][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:08][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:08][chn0] CURL: Sent '[ [ 1580670128033, 4179678.1000000001 ] ]' bytes
[Feb 02 20:02:08][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:08][chn0] CURL: Received 26 bytes
[Feb 02 20:02:08][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:08][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:08][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:08][chn0] emptied all (1) values
[Feb 02 20:02:10][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:10][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179678.40 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179678.40 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.30 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670130195
[Feb 02 20:02:10][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670130195
[Feb 02 20:02:10][chn0] Adding reading to queue (value=4179678.40 ts=1580670130195)
[Feb 02 20:02:10][MAX]  4179678.400000 @ 1580670130195
[Feb 02 20:02:10][MAX]  RESULT 4179678.400000 @ 1580670130195
[Feb 02 20:02:10][chn0] ==> number of tuples: 1
[Feb 02 20:02:10][chn0] compare: 1580670128033 1580670130195
[Feb 02 20:02:10][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:10][chn0] JSON request body: [ [ 1580670130195, 4179678.4000000004 ] ]
[Feb 02 20:02:10][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:10][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:10][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:10][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:10][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:10][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:10][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:10][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:10][chn0] CURL: Sent '[ [ 1580670130195, 4179678.4000000004 ] ]' bytes
[Feb 02 20:02:10][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:10][chn0] CURL: Received 26 bytes
[Feb 02 20:02:10][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:10][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:10][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:10][chn0] emptied all (1) values
[Feb 02 20:02:11][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:11][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179678.60 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179678.60 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670131654
[Feb 02 20:02:11][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.30 ts=1580670131654
[Feb 02 20:02:11][chn0] Adding reading to queue (value=4179678.60 ts=1580670131654)
[Feb 02 20:02:11][MAX]  4179678.600000 @ 1580670131654
[Feb 02 20:02:11][MAX]  RESULT 4179678.600000 @ 1580670131654
[Feb 02 20:02:11][chn0] ==> number of tuples: 1
[Feb 02 20:02:11][chn0] compare: 1580670130195 1580670131654
[Feb 02 20:02:11][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:11][chn0] JSON request body: [ [ 1580670131654, 4179678.6000000001 ] ]
[Feb 02 20:02:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:11][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:11][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:11][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:11][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:11][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:11][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:11][chn0] CURL: Sent '[ [ 1580670131654, 4179678.6000000001 ] ]' bytes
[Feb 02 20:02:11][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:11][chn0] CURL: Received 26 bytes
[Feb 02 20:02:11][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:11][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:11][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:11][chn0] emptied all (1) values
[Feb 02 20:02:13][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:13][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179678.90 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179678.90 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.70 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670133808
[Feb 02 20:02:13][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670133808
[Feb 02 20:02:13][chn0] Adding reading to queue (value=4179678.90 ts=1580670133808)
[Feb 02 20:02:13][MAX]  4179678.900000 @ 1580670133808
[Feb 02 20:02:13][MAX]  RESULT 4179678.900000 @ 1580670133808
[Feb 02 20:02:13][chn0] ==> number of tuples: 1
[Feb 02 20:02:13][chn0] compare: 1580670131654 1580670133808
[Feb 02 20:02:13][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:13][chn0] JSON request body: [ [ 1580670133808, 4179678.9000000004 ] ]
[Feb 02 20:02:13][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:13][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:13][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:13][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:13][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:13][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:13][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:13][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:13][chn0] CURL: Sent '[ [ 1580670133808, 4179678.9000000004 ] ]' bytes
[Feb 02 20:02:13][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:13][chn0] CURL: Received 26 bytes
[Feb 02 20:02:13][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:13][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:13][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:13][chn0] emptied all (1) values
[Feb 02 20:02:15][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:15][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179679.20 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179679.20 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.10 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670135960
[Feb 02 20:02:15][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670135960
[Feb 02 20:02:15][chn0] Adding reading to queue (value=4179679.20 ts=1580670135960)
[Feb 02 20:02:15][MAX]  4179679.200000 @ 1580670135960
[Feb 02 20:02:15][MAX]  RESULT 4179679.200000 @ 1580670135960
[Feb 02 20:02:15][chn0] ==> number of tuples: 1
[Feb 02 20:02:15][chn0] compare: 1580670133808 1580670135960
[Feb 02 20:02:15][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:15][chn0] JSON request body: [ [ 1580670135960, 4179679.2000000002 ] ]
[Feb 02 20:02:15][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:15][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:15][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:15][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:15][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:15][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:15][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:15][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:15][chn0] CURL: Sent '[ [ 1580670135960, 4179679.2000000002 ] ]' bytes
[Feb 02 20:02:15][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:16][chn0] CURL: Received 26 bytes
[Feb 02 20:02:16][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:16][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:16][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:16][chn0] emptied all (1) values
[Feb 02 20:02:18][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:18][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179679.50 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179679.50 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=499.60 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=291.50 ts=1580670138070
[Feb 02 20:02:18][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670138070
[Feb 02 20:02:18][chn0] Adding reading to queue (value=4179679.50 ts=1580670138070)
[Feb 02 20:02:18][MAX]  4179679.500000 @ 1580670138070
[Feb 02 20:02:18][MAX]  RESULT 4179679.500000 @ 1580670138070
[Feb 02 20:02:18][chn0] ==> number of tuples: 1
[Feb 02 20:02:18][chn0] compare: 1580670135960 1580670138070
[Feb 02 20:02:18][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:18][chn0] JSON request body: [ [ 1580670138070, 4179679.5 ] ]
[Feb 02 20:02:18][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:18][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:18][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:18][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:18][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:18][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:18][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:18][chn0] CURL: Sent 32 bytes..
[Feb 02 20:02:18][chn0] CURL: Sent '[ [ 1580670138070, 4179679.5 ] ]' bytes
[Feb 02 20:02:18][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:02:18][chn0] CURL: Received 26 bytes
[Feb 02 20:02:18][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:18][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:18][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:18][chn0] emptied all (1) values
[Feb 02 20:02:20][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:20][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179679.80 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179679.80 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.20 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670140222
[Feb 02 20:02:20][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670140222
[Feb 02 20:02:20][chn0] Adding reading to queue (value=4179679.80 ts=1580670140222)
[Feb 02 20:02:20][MAX]  4179679.800000 @ 1580670140222
[Feb 02 20:02:20][MAX]  RESULT 4179679.800000 @ 1580670140222
[Feb 02 20:02:20][chn0] ==> number of tuples: 1
[Feb 02 20:02:20][chn0] compare: 1580670138070 1580670140222
[Feb 02 20:02:20][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:20][chn0] JSON request body: [ [ 1580670140222, 4179679.8000000003 ] ]
[Feb 02 20:02:20][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:20][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:20][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:20][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:20][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:20][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:20][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:20][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:20][chn0] CURL: Sent '[ [ 1580670140222, 4179679.8000000003 ] ]' bytes
[Feb 02 20:02:20][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:20][chn0] CURL: Received 26 bytes
[Feb 02 20:02:20][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:20][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:20][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:20][chn0] emptied all (1) values
[Feb 02 20:02:21][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:21][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179680.00 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179680.00 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.70 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670141682
[Feb 02 20:02:21][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670141682
[Feb 02 20:02:21][chn0] Adding reading to queue (value=4179680.00 ts=1580670141682)
[Feb 02 20:02:21][MAX]  4179680.000000 @ 1580670141682
[Feb 02 20:02:21][MAX]  RESULT 4179680.000000 @ 1580670141682
[Feb 02 20:02:21][chn0] ==> number of tuples: 1
[Feb 02 20:02:21][chn0] compare: 1580670140222 1580670141682
[Feb 02 20:02:21][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:21][chn0] JSON request body: [ [ 1580670141682, 4179680 ] ]
[Feb 02 20:02:21][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:21][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:21][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:21][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:21][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:21][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:21][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:21][chn0] CURL: Sent 30 bytes..
[Feb 02 20:02:21][chn0] CURL: Sent '[ [ 1580670141682, 4179680 ] ]' bytes
[Feb 02 20:02:21][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:02:21][chn0] CURL: Received 26 bytes
[Feb 02 20:02:21][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:21][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:21][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:21][chn0] emptied all (1) values
[Feb 02 20:02:23][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:23][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179680.30 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179680.30 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=499.40 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=280.20 ts=1580670143835
[Feb 02 20:02:23][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670143835
[Feb 02 20:02:23][chn0] Adding reading to queue (value=4179680.30 ts=1580670143835)
[Feb 02 20:02:23][MAX]  4179680.300000 @ 1580670143835
[Feb 02 20:02:23][MAX]  RESULT 4179680.300000 @ 1580670143835
[Feb 02 20:02:23][chn0] ==> number of tuples: 1
[Feb 02 20:02:23][chn0] compare: 1580670141682 1580670143835
[Feb 02 20:02:23][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:23][chn0] JSON request body: [ [ 1580670143835, 4179680.3000000003 ] ]
[Feb 02 20:02:23][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:23][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:23][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:23][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:23][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:23][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:23][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:23][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:23][chn0] CURL: Sent '[ [ 1580670143835, 4179680.3000000003 ] ]' bytes
[Feb 02 20:02:23][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:23][chn0] CURL: Received 26 bytes
[Feb 02 20:02:23][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:23][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:23][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:23][chn0] emptied all (1) values
[Feb 02 20:02:25][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:25][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179680.60 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179680.60 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=501.90 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=282.30 ts=1580670145945
[Feb 02 20:02:25][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670145945
[Feb 02 20:02:25][chn0] Adding reading to queue (value=4179680.60 ts=1580670145945)
[Feb 02 20:02:25][MAX]  4179680.600000 @ 1580670145945
[Feb 02 20:02:25][MAX]  RESULT 4179680.600000 @ 1580670145945
[Feb 02 20:02:25][chn0] ==> number of tuples: 1
[Feb 02 20:02:25][chn0] compare: 1580670143835 1580670145945
[Feb 02 20:02:25][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:25][chn0] JSON request body: [ [ 1580670145945, 4179680.6000000001 ] ]
[Feb 02 20:02:25][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:25][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:25][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:25][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:25][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:25][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:25][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:25][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:25][chn0] CURL: Sent '[ [ 1580670145945, 4179680.6000000001 ] ]' bytes
[Feb 02 20:02:25][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:26][chn0] CURL: Received 26 bytes
[Feb 02 20:02:26][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:26][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:26][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:26][chn0] emptied all (1) values
[Feb 02 20:02:27][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:27][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179680.80 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179680.80 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.30 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670147393
[Feb 02 20:02:27][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670147393
[Feb 02 20:02:27][chn0] Adding reading to queue (value=4179680.80 ts=1580670147393)
[Feb 02 20:02:27][MAX]  4179680.800000 @ 1580670147393
[Feb 02 20:02:27][MAX]  RESULT 4179680.800000 @ 1580670147393
[Feb 02 20:02:27][chn0] ==> number of tuples: 1
[Feb 02 20:02:27][chn0] compare: 1580670145945 1580670147393
[Feb 02 20:02:27][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:27][chn0] JSON request body: [ [ 1580670147393, 4179680.8000000003 ] ]
[Feb 02 20:02:27][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:27][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:27][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:27][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:27][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:27][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:27][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:27][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:27][chn0] CURL: Sent '[ [ 1580670147393, 4179680.8000000003 ] ]' bytes
[Feb 02 20:02:27][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:27][chn0] CURL: Received 26 bytes
[Feb 02 20:02:27][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:27][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:27][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:27][chn0] emptied all (1) values
[Feb 02 20:02:29][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:29][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179681.10 ts=1580670149556
[Feb 02 20:02:29][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179681.10 ts=1580670149556
[Feb 02 20:02:29][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670149556
[Feb 02 20:02:29][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.60 ts=1580670149556
[Feb 02 20:02:29][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670149556
[Feb 02 20:02:29][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670149557
[Feb 02 20:02:29][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670149557
[Feb 02 20:02:29][chn0] Adding reading to queue (value=4179681.10 ts=1580670149556)
[Feb 02 20:02:29][MAX]  4179681.100000 @ 1580670149556
[Feb 02 20:02:29][MAX]  RESULT 4179681.100000 @ 1580670149556
[Feb 02 20:02:29][chn0] ==> number of tuples: 1
[Feb 02 20:02:29][chn0] compare: 1580670147393 1580670149556
[Feb 02 20:02:29][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:29][chn0] JSON request body: [ [ 1580670149556, 4179681.1000000001 ] ]
[Feb 02 20:02:29][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:29][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:29][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:29][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:29][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:29][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:29][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:29][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:29][chn0] CURL: Sent '[ [ 1580670149556, 4179681.1000000001 ] ]' bytes
[Feb 02 20:02:29][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:29][chn0] CURL: Received 26 bytes
[Feb 02 20:02:29][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:29][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:29][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:29][chn0] emptied all (1) values
[Feb 02 20:02:31][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:31][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179681.40 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179681.40 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=514.30 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=295.10 ts=1580670151657
[Feb 02 20:02:31][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670151657
[Feb 02 20:02:31][chn0] Adding reading to queue (value=4179681.40 ts=1580670151657)
[Feb 02 20:02:31][MAX]  4179681.400000 @ 1580670151657
[Feb 02 20:02:31][MAX]  RESULT 4179681.400000 @ 1580670151657
[Feb 02 20:02:31][chn0] ==> number of tuples: 1
[Feb 02 20:02:31][chn0] compare: 1580670149556 1580670151657
[Feb 02 20:02:31][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:31][chn0] JSON request body: [ [ 1580670151657, 4179681.4000000004 ] ]
[Feb 02 20:02:31][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:31][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:31][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:31][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:31][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:31][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:31][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:31][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:31][chn0] CURL: Sent '[ [ 1580670151657, 4179681.4000000004 ] ]' bytes
[Feb 02 20:02:31][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:31][chn0] CURL: Received 26 bytes
[Feb 02 20:02:31][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:31][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:31][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:31][chn0] emptied all (1) values
[Feb 02 20:02:33][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:33][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179681.60 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179681.60 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.80 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670153116
[Feb 02 20:02:33][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670153116
[Feb 02 20:02:33][chn0] Adding reading to queue (value=4179681.60 ts=1580670153116)
[Feb 02 20:02:33][MAX]  4179681.600000 @ 1580670153116
[Feb 02 20:02:33][MAX]  RESULT 4179681.600000 @ 1580670153116
[Feb 02 20:02:33][chn0] ==> number of tuples: 1
[Feb 02 20:02:33][chn0] compare: 1580670151657 1580670153116
[Feb 02 20:02:33][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:33][chn0] JSON request body: [ [ 1580670153116, 4179681.6000000001 ] ]
[Feb 02 20:02:33][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:33][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:33][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:33][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:33][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:33][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:33][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:33][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:33][chn0] CURL: Sent '[ [ 1580670153116, 4179681.6000000001 ] ]' bytes
[Feb 02 20:02:33][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:33][chn0] CURL: Received 26 bytes
[Feb 02 20:02:33][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:33][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:33][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:33][chn0] emptied all (1) values
[Feb 02 20:02:35][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:35][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179681.90 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179681.90 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.70 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670155268
[Feb 02 20:02:35][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670155268
[Feb 02 20:02:35][chn0] Adding reading to queue (value=4179681.90 ts=1580670155268)
[Feb 02 20:02:35][MAX]  4179681.900000 @ 1580670155268
[Feb 02 20:02:35][MAX]  RESULT 4179681.900000 @ 1580670155268
[Feb 02 20:02:35][chn0] ==> number of tuples: 1
[Feb 02 20:02:35][chn0] compare: 1580670153116 1580670155268
[Feb 02 20:02:35][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:35][chn0] JSON request body: [ [ 1580670155268, 4179681.9000000004 ] ]
[Feb 02 20:02:35][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:35][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:35][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:35][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:35][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:35][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:35][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:35][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:35][chn0] CURL: Sent '[ [ 1580670155268, 4179681.9000000004 ] ]' bytes
[Feb 02 20:02:35][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:35][chn0] CURL: Received 26 bytes
[Feb 02 20:02:35][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:35][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:35][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:35][chn0] emptied all (1) values
[Feb 02 20:02:37][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:37][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179682.20 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179682.20 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.60 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670157432
[Feb 02 20:02:37][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670157432
[Feb 02 20:02:37][chn0] Adding reading to queue (value=4179682.20 ts=1580670157432)
[Feb 02 20:02:37][MAX]  4179682.200000 @ 1580670157432
[Feb 02 20:02:37][MAX]  RESULT 4179682.200000 @ 1580670157432
[Feb 02 20:02:37][chn0] ==> number of tuples: 1
[Feb 02 20:02:37][chn0] compare: 1580670155268 1580670157432
[Feb 02 20:02:37][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:37][chn0] JSON request body: [ [ 1580670157432, 4179682.2000000002 ] ]
[Feb 02 20:02:37][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:37][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:37][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:37][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:37][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:37][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:37][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:37][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:37][chn0] CURL: Sent '[ [ 1580670157432, 4179682.2000000002 ] ]' bytes
[Feb 02 20:02:37][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:37][chn0] CURL: Received 26 bytes
[Feb 02 20:02:37][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:37][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:37][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:37][chn0] emptied all (1) values
[Feb 02 20:02:39][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:39][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179682.50 ts=1580670159583
[Feb 02 20:02:39][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179682.50 ts=1580670159584
[Feb 02 20:02:39][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670159584
[Feb 02 20:02:39][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.40 ts=1580670159584
[Feb 02 20:02:39][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670159584
[Feb 02 20:02:39][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670159584
[Feb 02 20:02:39][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670159584
[Feb 02 20:02:39][chn0] Adding reading to queue (value=4179682.50 ts=1580670159583)
[Feb 02 20:02:39][MAX]  4179682.500000 @ 1580670159583
[Feb 02 20:02:39][MAX]  RESULT 4179682.500000 @ 1580670159583
[Feb 02 20:02:39][chn0] ==> number of tuples: 1
[Feb 02 20:02:39][chn0] compare: 1580670157432 1580670159583
[Feb 02 20:02:39][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:39][chn0] JSON request body: [ [ 1580670159583, 4179682.5 ] ]
[Feb 02 20:02:39][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:39][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:39][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:39][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:39][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:39][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:39][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:39][chn0] CURL: Sent 32 bytes..
[Feb 02 20:02:39][chn0] CURL: Sent '[ [ 1580670159583, 4179682.5 ] ]' bytes
[Feb 02 20:02:39][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:02:39][chn0] CURL: Received 26 bytes
[Feb 02 20:02:39][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:39][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:39][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:39][chn0] emptied all (1) values
[Feb 02 20:02:41][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:41][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179682.70 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179682.70 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.70 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670161043
[Feb 02 20:02:41][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670161043
[Feb 02 20:02:41][chn0] Adding reading to queue (value=4179682.70 ts=1580670161043)
[Feb 02 20:02:41][MAX]  4179682.700000 @ 1580670161043
[Feb 02 20:02:41][MAX]  RESULT 4179682.700000 @ 1580670161043
[Feb 02 20:02:41][chn0] ==> number of tuples: 1
[Feb 02 20:02:41][chn0] compare: 1580670159583 1580670161043
[Feb 02 20:02:41][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:41][chn0] JSON request body: [ [ 1580670161043, 4179682.7000000002 ] ]
[Feb 02 20:02:41][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:41][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:41][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:41][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:41][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:41][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:41][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:41][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:41][chn0] CURL: Sent '[ [ 1580670161043, 4179682.7000000002 ] ]' bytes
[Feb 02 20:02:41][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:41][chn0] CURL: Received 26 bytes
[Feb 02 20:02:41][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:41][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:41][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:41][chn0] emptied all (1) values
[Feb 02 20:02:43][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:43][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179683.00 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179683.00 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=494.70 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670163196
[Feb 02 20:02:43][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670163196
[Feb 02 20:02:43][chn0] Adding reading to queue (value=4179683.00 ts=1580670163196)
[Feb 02 20:02:43][MAX]  4179683.000000 @ 1580670163196
[Feb 02 20:02:43][MAX]  RESULT 4179683.000000 @ 1580670163196
[Feb 02 20:02:43][chn0] ==> number of tuples: 1
[Feb 02 20:02:43][chn0] compare: 1580670161043 1580670163196
[Feb 02 20:02:43][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:43][chn0] JSON request body: [ [ 1580670163196, 4179683 ] ]
[Feb 02 20:02:43][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:43][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:43][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:43][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:43][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:43][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:43][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:43][chn0] CURL: Sent 30 bytes..
[Feb 02 20:02:43][chn0] CURL: Sent '[ [ 1580670163196, 4179683 ] ]' bytes
[Feb 02 20:02:43][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:02:43][chn0] CURL: Received 26 bytes
[Feb 02 20:02:43][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:43][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:43][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:43][chn0] emptied all (1) values
[Feb 02 20:02:45][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:45][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179683.30 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179683.30 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=500.30 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=280.90 ts=1580670165359
[Feb 02 20:02:45][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670165359
[Feb 02 20:02:45][chn0] Adding reading to queue (value=4179683.30 ts=1580670165359)
[Feb 02 20:02:45][MAX]  4179683.300000 @ 1580670165359
[Feb 02 20:02:45][MAX]  RESULT 4179683.300000 @ 1580670165359
[Feb 02 20:02:45][chn0] ==> number of tuples: 1
[Feb 02 20:02:45][chn0] compare: 1580670163196 1580670165359
[Feb 02 20:02:45][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:45][chn0] JSON request body: [ [ 1580670165359, 4179683.3000000003 ] ]
[Feb 02 20:02:45][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:45][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:45][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:45][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:45][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:45][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:45][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:45][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:45][chn0] CURL: Sent '[ [ 1580670165359, 4179683.3000000003 ] ]' bytes
[Feb 02 20:02:45][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:45][chn0] CURL: Received 26 bytes
[Feb 02 20:02:45][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:45][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:45][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:45][chn0] emptied all (1) values
[Feb 02 20:02:47][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:47][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179683.60 ts=1580670167510
[Feb 02 20:02:47][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179683.60 ts=1580670167510
[Feb 02 20:02:47][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670167511
[Feb 02 20:02:47][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.60 ts=1580670167511
[Feb 02 20:02:47][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670167511
[Feb 02 20:02:47][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670167511
[Feb 02 20:02:47][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.80 ts=1580670167511
[Feb 02 20:02:47][chn0] Adding reading to queue (value=4179683.60 ts=1580670167510)
[Feb 02 20:02:47][MAX]  4179683.600000 @ 1580670167510
[Feb 02 20:02:47][MAX]  RESULT 4179683.600000 @ 1580670167510
[Feb 02 20:02:47][chn0] ==> number of tuples: 1
[Feb 02 20:02:47][chn0] compare: 1580670165359 1580670167510
[Feb 02 20:02:47][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:47][chn0] JSON request body: [ [ 1580670167510, 4179683.6000000001 ] ]
[Feb 02 20:02:47][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:47][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:47][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:47][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:47][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:47][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:47][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:47][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:47][chn0] CURL: Sent '[ [ 1580670167510, 4179683.6000000001 ] ]' bytes
[Feb 02 20:02:47][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:47][chn0] CURL: Received 26 bytes
[Feb 02 20:02:47][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:47][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:47][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:47][chn0] emptied all (1) values
[Feb 02 20:02:49][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:49][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179683.90 ts=1580670169663
[Feb 02 20:02:49][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179683.90 ts=1580670169663
[Feb 02 20:02:49][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670169663
[Feb 02 20:02:49][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.70 ts=1580670169664
[Feb 02 20:02:49][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670169664
[Feb 02 20:02:49][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670169664
[Feb 02 20:02:49][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670169664
[Feb 02 20:02:49][chn0] Adding reading to queue (value=4179683.90 ts=1580670169663)
[Feb 02 20:02:49][MAX]  4179683.900000 @ 1580670169663
[Feb 02 20:02:49][MAX]  RESULT 4179683.900000 @ 1580670169663
[Feb 02 20:02:49][chn0] ==> number of tuples: 1
[Feb 02 20:02:49][chn0] compare: 1580670167510 1580670169663
[Feb 02 20:02:49][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:49][chn0] JSON request body: [ [ 1580670169663, 4179683.9000000004 ] ]
[Feb 02 20:02:49][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:49][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:49][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:49][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:49][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:49][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:49][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:49][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:49][chn0] CURL: Sent '[ [ 1580670169663, 4179683.9000000004 ] ]' bytes
[Feb 02 20:02:49][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:49][chn0] CURL: Received 26 bytes
[Feb 02 20:02:49][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:49][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:49][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:49][chn0] emptied all (1) values
[Feb 02 20:02:51][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:51][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179684.10 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179684.10 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670171123
[Feb 02 20:02:51][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670171123
[Feb 02 20:02:51][chn0] Adding reading to queue (value=4179684.10 ts=1580670171123)
[Feb 02 20:02:51][MAX]  4179684.100000 @ 1580670171123
[Feb 02 20:02:51][MAX]  RESULT 4179684.100000 @ 1580670171123
[Feb 02 20:02:51][chn0] ==> number of tuples: 1
[Feb 02 20:02:51][chn0] compare: 1580670169663 1580670171123
[Feb 02 20:02:51][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:51][chn0] JSON request body: [ [ 1580670171123, 4179684.1000000001 ] ]
[Feb 02 20:02:51][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:51][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:51][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:51][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:51][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:51][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:51][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:51][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:51][chn0] CURL: Sent '[ [ 1580670171123, 4179684.1000000001 ] ]' bytes
[Feb 02 20:02:51][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:51][chn0] CURL: Received 26 bytes
[Feb 02 20:02:51][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:51][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:51][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:51][chn0] emptied all (1) values
[Feb 02 20:02:53][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:53][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179684.40 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179684.40 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670173286
[Feb 02 20:02:53][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670173286
[Feb 02 20:02:53][chn0] Adding reading to queue (value=4179684.40 ts=1580670173286)
[Feb 02 20:02:53][MAX]  4179684.400000 @ 1580670173286
[Feb 02 20:02:53][MAX]  RESULT 4179684.400000 @ 1580670173286
[Feb 02 20:02:53][chn0] ==> number of tuples: 1
[Feb 02 20:02:53][chn0] compare: 1580670171123 1580670173286
[Feb 02 20:02:53][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:53][chn0] JSON request body: [ [ 1580670173286, 4179684.4000000004 ] ]
[Feb 02 20:02:53][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:53][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:53][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:53][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:53][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:53][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:53][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:53][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:53][chn0] CURL: Sent '[ [ 1580670173286, 4179684.4000000004 ] ]' bytes
[Feb 02 20:02:53][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:53][chn0] CURL: Received 26 bytes
[Feb 02 20:02:53][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:53][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:53][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:53][chn0] emptied all (1) values
[Feb 02 20:02:55][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:55][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179684.70 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179684.70 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.70 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670175439
[Feb 02 20:02:55][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670175439
[Feb 02 20:02:55][chn0] Adding reading to queue (value=4179684.70 ts=1580670175439)
[Feb 02 20:02:55][MAX]  4179684.700000 @ 1580670175439
[Feb 02 20:02:55][MAX]  RESULT 4179684.700000 @ 1580670175439
[Feb 02 20:02:55][chn0] ==> number of tuples: 1
[Feb 02 20:02:55][chn0] compare: 1580670173286 1580670175439
[Feb 02 20:02:55][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:55][chn0] JSON request body: [ [ 1580670175439, 4179684.7000000002 ] ]
[Feb 02 20:02:55][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:55][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:55][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:55][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:55][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:55][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:55][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:55][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:55][chn0] CURL: Sent '[ [ 1580670175439, 4179684.7000000002 ] ]' bytes
[Feb 02 20:02:55][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:55][chn0] CURL: Received 26 bytes
[Feb 02 20:02:55][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:55][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:55][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:55][chn0] emptied all (1) values
[Feb 02 20:02:57][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:57][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179685.00 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179685.00 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670177590
[Feb 02 20:02:57][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670177590
[Feb 02 20:02:57][chn0] Adding reading to queue (value=4179685.00 ts=1580670177590)
[Feb 02 20:02:57][MAX]  4179685.000000 @ 1580670177590
[Feb 02 20:02:57][MAX]  RESULT 4179685.000000 @ 1580670177590
[Feb 02 20:02:57][chn0] ==> number of tuples: 1
[Feb 02 20:02:57][chn0] compare: 1580670175439 1580670177590
[Feb 02 20:02:57][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:57][chn0] JSON request body: [ [ 1580670177590, 4179685 ] ]
[Feb 02 20:02:57][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:57][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:57][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:57][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:57][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:57][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:57][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:57][chn0] CURL: Sent 30 bytes..
[Feb 02 20:02:57][chn0] CURL: Sent '[ [ 1580670177590, 4179685 ] ]' bytes
[Feb 02 20:02:57][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:02:57][chn0] CURL: Received 26 bytes
[Feb 02 20:02:57][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:57][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:57][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:57][chn0] emptied all (1) values
[Feb 02 20:02:59][mtr0] Got 7 new readings from meter:
[Feb 02 20:02:59][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179685.30 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179685.30 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670179743
[Feb 02 20:02:59][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670179743
[Feb 02 20:02:59][chn0] Adding reading to queue (value=4179685.30 ts=1580670179743)
[Feb 02 20:02:59][MAX]  4179685.300000 @ 1580670179743
[Feb 02 20:02:59][MAX]  RESULT 4179685.300000 @ 1580670179743
[Feb 02 20:02:59][chn0] ==> number of tuples: 1
[Feb 02 20:02:59][chn0] compare: 1580670177590 1580670179743
[Feb 02 20:02:59][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:02:59][chn0] JSON request body: [ [ 1580670179743, 4179685.3000000003 ] ]
[Feb 02 20:02:59][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:59][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:02:59][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:02:59][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:02:59][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:02:59][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:02:59][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:02:59][chn0] CURL: Sent 41 bytes..
[Feb 02 20:02:59][chn0] CURL: Sent '[ [ 1580670179743, 4179685.3000000003 ] ]' bytes
[Feb 02 20:02:59][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:02:59][chn0] CURL: Received 26 bytes
[Feb 02 20:02:59][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:02:59][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:02:59][chn0] CURL Request succeeded with code: 200
[Feb 02 20:02:59][chn0] emptied all (1) values
[Feb 02 20:03:01][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:01][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179685.50 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179685.50 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670181214
[Feb 02 20:03:01][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670181214
[Feb 02 20:03:01][chn0] Adding reading to queue (value=4179685.50 ts=1580670181214)
[Feb 02 20:03:01][MAX]  4179685.500000 @ 1580670181214
[Feb 02 20:03:01][MAX]  RESULT 4179685.500000 @ 1580670181214
[Feb 02 20:03:01][chn0] ==> number of tuples: 1
[Feb 02 20:03:01][chn0] compare: 1580670179743 1580670181214
[Feb 02 20:03:01][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:01][chn0] JSON request body: [ [ 1580670181214, 4179685.5 ] ]
[Feb 02 20:03:01][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:01][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:01][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:01][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:01][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:01][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:01][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:01][chn0] CURL: Sent 32 bytes..
[Feb 02 20:03:01][chn0] CURL: Sent '[ [ 1580670181214, 4179685.5 ] ]' bytes
[Feb 02 20:03:01][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:03:01][chn0] CURL: Received 26 bytes
[Feb 02 20:03:01][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:01][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:01][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:01][chn0] emptied all (1) values
[Feb 02 20:03:03][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:03][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179685.80 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179685.80 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.90 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670183366
[Feb 02 20:03:03][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670183366
[Feb 02 20:03:03][chn0] Adding reading to queue (value=4179685.80 ts=1580670183366)
[Feb 02 20:03:03][MAX]  4179685.800000 @ 1580670183366
[Feb 02 20:03:03][MAX]  RESULT 4179685.800000 @ 1580670183366
[Feb 02 20:03:03][chn0] ==> number of tuples: 1
[Feb 02 20:03:03][chn0] compare: 1580670181214 1580670183366
[Feb 02 20:03:03][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:03][chn0] JSON request body: [ [ 1580670183366, 4179685.8000000003 ] ]
[Feb 02 20:03:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:03][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:03][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:03][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:03][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:03][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:03][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:03][chn0] CURL: Sent '[ [ 1580670183366, 4179685.8000000003 ] ]' bytes
[Feb 02 20:03:03][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:03][chn0] CURL: Received 26 bytes
[Feb 02 20:03:03][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:03][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:03][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:03][chn0] emptied all (1) values
[Feb 02 20:03:05][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:05][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179686.10 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179686.10 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.50 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670185517
[Feb 02 20:03:05][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670185517
[Feb 02 20:03:05][chn0] Adding reading to queue (value=4179686.10 ts=1580670185517)
[Feb 02 20:03:05][MAX]  4179686.100000 @ 1580670185517
[Feb 02 20:03:05][MAX]  RESULT 4179686.100000 @ 1580670185517
[Feb 02 20:03:05][chn0] ==> number of tuples: 1
[Feb 02 20:03:05][chn0] compare: 1580670183366 1580670185517
[Feb 02 20:03:05][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:05][chn0] JSON request body: [ [ 1580670185517, 4179686.1000000001 ] ]
[Feb 02 20:03:05][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:05][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:05][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:05][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:05][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:05][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:05][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:05][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:05][chn0] CURL: Sent '[ [ 1580670185517, 4179686.1000000001 ] ]' bytes
[Feb 02 20:03:05][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:05][chn0] CURL: Received 26 bytes
[Feb 02 20:03:05][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:05][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:05][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:05][chn0] emptied all (1) values
[Feb 02 20:03:06][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:06][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179686.30 ts=1580670186976
[Feb 02 20:03:06][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179686.30 ts=1580670186977
[Feb 02 20:03:06][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670186977
[Feb 02 20:03:06][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=494.80 ts=1580670186977
[Feb 02 20:03:06][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670186977
[Feb 02 20:03:06][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670186977
[Feb 02 20:03:06][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670186977
[Feb 02 20:03:06][chn0] Adding reading to queue (value=4179686.30 ts=1580670186976)
[Feb 02 20:03:06][MAX]  4179686.300000 @ 1580670186976
[Feb 02 20:03:06][MAX]  RESULT 4179686.300000 @ 1580670186976
[Feb 02 20:03:06][chn0] ==> number of tuples: 1
[Feb 02 20:03:06][chn0] compare: 1580670185517 1580670186976
[Feb 02 20:03:06][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:06][chn0] JSON request body: [ [ 1580670186976, 4179686.3000000003 ] ]
[Feb 02 20:03:06][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:06][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:06][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:06][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:06][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:06][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:06][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:06][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:06][chn0] CURL: Sent '[ [ 1580670186976, 4179686.3000000003 ] ]' bytes
[Feb 02 20:03:06][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:07][chn0] CURL: Received 26 bytes
[Feb 02 20:03:07][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:07][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:07][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:07][chn0] emptied all (1) values
[Feb 02 20:03:09][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:09][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179686.60 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179686.60 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=494.90 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.10 ts=1580670189141
[Feb 02 20:03:09][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.80 ts=1580670189141
[Feb 02 20:03:09][chn0] Adding reading to queue (value=4179686.60 ts=1580670189141)
[Feb 02 20:03:09][MAX]  4179686.600000 @ 1580670189141
[Feb 02 20:03:09][MAX]  RESULT 4179686.600000 @ 1580670189141
[Feb 02 20:03:09][chn0] ==> number of tuples: 1
[Feb 02 20:03:09][chn0] compare: 1580670186976 1580670189141
[Feb 02 20:03:09][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:09][chn0] JSON request body: [ [ 1580670189141, 4179686.6000000001 ] ]
[Feb 02 20:03:09][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:09][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:09][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:09][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:09][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:09][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:09][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:09][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:09][chn0] CURL: Sent '[ [ 1580670189141, 4179686.6000000001 ] ]' bytes
[Feb 02 20:03:09][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:09][chn0] CURL: Received 26 bytes
[Feb 02 20:03:09][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:09][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:09][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:09][chn0] emptied all (1) values
[Feb 02 20:03:11][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:11][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179686.90 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179686.90 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.70 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670191292
[Feb 02 20:03:11][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670191293
[Feb 02 20:03:11][chn0] Adding reading to queue (value=4179686.90 ts=1580670191292)
[Feb 02 20:03:11][MAX]  4179686.900000 @ 1580670191292
[Feb 02 20:03:11][MAX]  RESULT 4179686.900000 @ 1580670191292
[Feb 02 20:03:11][chn0] ==> number of tuples: 1
[Feb 02 20:03:11][chn0] compare: 1580670189141 1580670191292
[Feb 02 20:03:11][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:11][chn0] JSON request body: [ [ 1580670191292, 4179686.9000000004 ] ]
[Feb 02 20:03:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:11][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:11][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:11][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:11][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:11][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:11][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:11][chn0] CURL: Sent '[ [ 1580670191292, 4179686.9000000004 ] ]' bytes
[Feb 02 20:03:11][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:11][chn0] CURL: Received 26 bytes
[Feb 02 20:03:11][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:11][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:11][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:11][chn0] emptied all (1) values
[Feb 02 20:03:12][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:12][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179687.10 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179687.10 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.80 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670192752
[Feb 02 20:03:12][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670192752
[Feb 02 20:03:12][chn0] Adding reading to queue (value=4179687.10 ts=1580670192752)
[Feb 02 20:03:12][MAX]  4179687.100000 @ 1580670192752
[Feb 02 20:03:12][MAX]  RESULT 4179687.100000 @ 1580670192752
[Feb 02 20:03:12][chn0] ==> number of tuples: 1
[Feb 02 20:03:12][chn0] compare: 1580670191292 1580670192752
[Feb 02 20:03:12][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:12][chn0] JSON request body: [ [ 1580670192752, 4179687.1000000001 ] ]
[Feb 02 20:03:12][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:12][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:12][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:12][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:12][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:12][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:12][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:12][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:12][chn0] CURL: Sent '[ [ 1580670192752, 4179687.1000000001 ] ]' bytes
[Feb 02 20:03:12][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:12][chn0] CURL: Received 26 bytes
[Feb 02 20:03:12][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:12][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:12][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:12][chn0] emptied all (1) values
[Feb 02 20:03:14][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:14][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179687.40 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179687.40 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.90 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670194903
[Feb 02 20:03:14][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.40 ts=1580670194903
[Feb 02 20:03:14][chn0] Adding reading to queue (value=4179687.40 ts=1580670194903)
[Feb 02 20:03:14][MAX]  4179687.400000 @ 1580670194903
[Feb 02 20:03:14][MAX]  RESULT 4179687.400000 @ 1580670194903
[Feb 02 20:03:14][chn0] ==> number of tuples: 1
[Feb 02 20:03:14][chn0] compare: 1580670192752 1580670194903
[Feb 02 20:03:14][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:14][chn0] JSON request body: [ [ 1580670194903, 4179687.4000000004 ] ]
[Feb 02 20:03:14][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:14][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:14][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:14][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:14][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:14][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:14][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:14][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:14][chn0] CURL: Sent '[ [ 1580670194903, 4179687.4000000004 ] ]' bytes
[Feb 02 20:03:14][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:14][chn0] CURL: Received 26 bytes
[Feb 02 20:03:14][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:14][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:14][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:14][chn0] emptied all (1) values
[Feb 02 20:03:17][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:17][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179687.70 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179687.70 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.50 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670197068
[Feb 02 20:03:17][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670197068
[Feb 02 20:03:17][chn0] Adding reading to queue (value=4179687.70 ts=1580670197068)
[Feb 02 20:03:17][MAX]  4179687.700000 @ 1580670197068
[Feb 02 20:03:17][MAX]  RESULT 4179687.700000 @ 1580670197068
[Feb 02 20:03:17][chn0] ==> number of tuples: 1
[Feb 02 20:03:17][chn0] compare: 1580670194903 1580670197068
[Feb 02 20:03:17][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:17][chn0] JSON request body: [ [ 1580670197068, 4179687.7000000002 ] ]
[Feb 02 20:03:17][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:17][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:17][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:17][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:17][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:17][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:17][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:17][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:17][chn0] CURL: Sent '[ [ 1580670197068, 4179687.7000000002 ] ]' bytes
[Feb 02 20:03:17][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:17][chn0] CURL: Received 26 bytes
[Feb 02 20:03:17][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:17][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:17][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:17][chn0] emptied all (1) values
[Feb 02 20:03:19][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:19][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179688.00 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179688.00 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670199221
[Feb 02 20:03:19][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670199221
[Feb 02 20:03:19][chn0] Adding reading to queue (value=4179688.00 ts=1580670199221)
[Feb 02 20:03:19][MAX]  4179688.000000 @ 1580670199221
[Feb 02 20:03:19][MAX]  RESULT 4179688.000000 @ 1580670199221
[Feb 02 20:03:19][chn0] ==> number of tuples: 1
[Feb 02 20:03:19][chn0] compare: 1580670197068 1580670199221
[Feb 02 20:03:19][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:19][chn0] JSON request body: [ [ 1580670199221, 4179688 ] ]
[Feb 02 20:03:19][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:19][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:19][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:19][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:19][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:19][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:19][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:19][chn0] CURL: Sent 30 bytes..
[Feb 02 20:03:19][chn0] CURL: Sent '[ [ 1580670199221, 4179688 ] ]' bytes
[Feb 02 20:03:19][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:03:19][chn0] CURL: Received 26 bytes
[Feb 02 20:03:19][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:19][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:19][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:19][chn0] emptied all (1) values
[Feb 02 20:03:20][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:20][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179688.20 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179688.20 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.40 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670200679
[Feb 02 20:03:20][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670200679
[Feb 02 20:03:20][chn0] Adding reading to queue (value=4179688.20 ts=1580670200679)
[Feb 02 20:03:20][MAX]  4179688.200000 @ 1580670200679
[Feb 02 20:03:20][MAX]  RESULT 4179688.200000 @ 1580670200679
[Feb 02 20:03:20][chn0] ==> number of tuples: 1
[Feb 02 20:03:20][chn0] compare: 1580670199221 1580670200679
[Feb 02 20:03:20][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:20][chn0] JSON request body: [ [ 1580670200679, 4179688.2000000002 ] ]
[Feb 02 20:03:20][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:20][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:20][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:20][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:20][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:20][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:20][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:20][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:20][chn0] CURL: Sent '[ [ 1580670200679, 4179688.2000000002 ] ]' bytes
[Feb 02 20:03:20][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:20][chn0] CURL: Received 26 bytes
[Feb 02 20:03:20][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:20][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:20][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:20][chn0] emptied all (1) values
[Feb 02 20:03:22][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:22][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179688.50 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179688.50 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.80 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670202843
[Feb 02 20:03:22][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670202843
[Feb 02 20:03:22][chn0] Adding reading to queue (value=4179688.50 ts=1580670202843)
[Feb 02 20:03:22][MAX]  4179688.500000 @ 1580670202843
[Feb 02 20:03:22][MAX]  RESULT 4179688.500000 @ 1580670202843
[Feb 02 20:03:22][chn0] ==> number of tuples: 1
[Feb 02 20:03:22][chn0] compare: 1580670200679 1580670202843
[Feb 02 20:03:22][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:22][chn0] JSON request body: [ [ 1580670202843, 4179688.5 ] ]
[Feb 02 20:03:22][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:22][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:22][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:22][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:22][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:22][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:22][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:22][chn0] CURL: Sent 32 bytes..
[Feb 02 20:03:22][chn0] CURL: Sent '[ [ 1580670202843, 4179688.5 ] ]' bytes
[Feb 02 20:03:22][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:03:22][chn0] CURL: Received 26 bytes
[Feb 02 20:03:22][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:22][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:22][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:22][chn0] emptied all (1) values
[Feb 02 20:03:24][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:24][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179688.80 ts=1580670204996
[Feb 02 20:03:24][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179688.80 ts=1580670204996
[Feb 02 20:03:24][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670204996
[Feb 02 20:03:24][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.50 ts=1580670204996
[Feb 02 20:03:24][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670204996
[Feb 02 20:03:24][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670204996
[Feb 02 20:03:25][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670204996
[Feb 02 20:03:25][chn0] Adding reading to queue (value=4179688.80 ts=1580670204996)
[Feb 02 20:03:25][MAX]  4179688.800000 @ 1580670204996
[Feb 02 20:03:25][MAX]  RESULT 4179688.800000 @ 1580670204996
[Feb 02 20:03:25][chn0] ==> number of tuples: 1
[Feb 02 20:03:25][chn0] compare: 1580670202843 1580670204996
[Feb 02 20:03:25][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:25][chn0] JSON request body: [ [ 1580670204996, 4179688.8000000003 ] ]
[Feb 02 20:03:25][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:25][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:25][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:25][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:25][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:25][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:25][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:25][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:25][chn0] CURL: Sent '[ [ 1580670204996, 4179688.8000000003 ] ]' bytes
[Feb 02 20:03:25][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:25][chn0] CURL: Received 26 bytes
[Feb 02 20:03:25][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:25][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:25][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:25][chn0] emptied all (1) values
[Feb 02 20:03:27][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:27][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179689.10 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179689.10 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.00 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670207158
[Feb 02 20:03:27][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670207158
[Feb 02 20:03:27][chn0] Adding reading to queue (value=4179689.10 ts=1580670207158)
[Feb 02 20:03:27][MAX]  4179689.100000 @ 1580670207158
[Feb 02 20:03:27][MAX]  RESULT 4179689.100000 @ 1580670207158
[Feb 02 20:03:27][chn0] ==> number of tuples: 1
[Feb 02 20:03:27][chn0] compare: 1580670204996 1580670207158
[Feb 02 20:03:27][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:27][chn0] JSON request body: [ [ 1580670207158, 4179689.1000000001 ] ]
[Feb 02 20:03:27][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:27][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:27][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:27][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:27][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:27][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:27][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:27][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:27][chn0] CURL: Sent '[ [ 1580670207158, 4179689.1000000001 ] ]' bytes
[Feb 02 20:03:27][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:27][chn0] CURL: Received 26 bytes
[Feb 02 20:03:27][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:27][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:27][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:27][chn0] emptied all (1) values
[Feb 02 20:03:29][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:29][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179689.40 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179689.40 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.80 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670209311
[Feb 02 20:03:29][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.30 ts=1580670209311
[Feb 02 20:03:29][chn0] Adding reading to queue (value=4179689.40 ts=1580670209311)
[Feb 02 20:03:29][MAX]  4179689.400000 @ 1580670209311
[Feb 02 20:03:29][MAX]  RESULT 4179689.400000 @ 1580670209311
[Feb 02 20:03:29][chn0] ==> number of tuples: 1
[Feb 02 20:03:29][chn0] compare: 1580670207158 1580670209311
[Feb 02 20:03:29][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:29][chn0] JSON request body: [ [ 1580670209311, 4179689.4000000004 ] ]
[Feb 02 20:03:29][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:29][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:29][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:29][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:29][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:29][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:29][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:29][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:29][chn0] CURL: Sent '[ [ 1580670209311, 4179689.4000000004 ] ]' bytes
[Feb 02 20:03:29][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:29][chn0] CURL: Received 26 bytes
[Feb 02 20:03:29][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:29][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:29][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:29][chn0] emptied all (1) values
[Feb 02 20:03:30][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:30][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179689.60 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179689.60 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.30 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670210780
[Feb 02 20:03:30][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670210780
[Feb 02 20:03:30][chn0] Adding reading to queue (value=4179689.60 ts=1580670210780)
[Feb 02 20:03:30][MAX]  4179689.600000 @ 1580670210780
[Feb 02 20:03:30][MAX]  RESULT 4179689.600000 @ 1580670210780
[Feb 02 20:03:30][chn0] ==> number of tuples: 1
[Feb 02 20:03:30][chn0] compare: 1580670209311 1580670210780
[Feb 02 20:03:30][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:30][chn0] JSON request body: [ [ 1580670210780, 4179689.6000000001 ] ]
[Feb 02 20:03:30][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:30][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:30][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:30][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:30][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:30][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:30][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:30][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:30][chn0] CURL: Sent '[ [ 1580670210780, 4179689.6000000001 ] ]' bytes
[Feb 02 20:03:30][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:30][chn0] CURL: Received 26 bytes
[Feb 02 20:03:30][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:30][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:30][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:30][chn0] emptied all (1) values
[Feb 02 20:03:32][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:32][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179689.90 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179689.90 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.50 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670212922
[Feb 02 20:03:32][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670212922
[Feb 02 20:03:32][chn0] Adding reading to queue (value=4179689.90 ts=1580670212922)
[Feb 02 20:03:32][MAX]  4179689.900000 @ 1580670212922
[Feb 02 20:03:32][MAX]  RESULT 4179689.900000 @ 1580670212922
[Feb 02 20:03:32][chn0] ==> number of tuples: 1
[Feb 02 20:03:32][chn0] compare: 1580670210780 1580670212922
[Feb 02 20:03:32][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:32][chn0] JSON request body: [ [ 1580670212922, 4179689.9000000004 ] ]
[Feb 02 20:03:32][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:32][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:32][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:32][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:32][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:32][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:32][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:32][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:32][chn0] CURL: Sent '[ [ 1580670212922, 4179689.9000000004 ] ]' bytes
[Feb 02 20:03:32][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:32][chn0] CURL: Received 26 bytes
[Feb 02 20:03:32][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:32][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:32][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:32][chn0] emptied all (1) values
[Feb 02 20:03:34][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:34][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179690.10 ts=1580670214381
[Feb 02 20:03:34][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179690.10 ts=1580670214381
[Feb 02 20:03:34][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670214381
[Feb 02 20:03:34][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.80 ts=1580670214381
[Feb 02 20:03:34][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670214382
[Feb 02 20:03:34][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670214382
[Feb 02 20:03:34][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670214382
[Feb 02 20:03:34][chn0] Adding reading to queue (value=4179690.10 ts=1580670214381)
[Feb 02 20:03:34][MAX]  4179690.100000 @ 1580670214381
[Feb 02 20:03:34][MAX]  RESULT 4179690.100000 @ 1580670214381
[Feb 02 20:03:34][chn0] ==> number of tuples: 1
[Feb 02 20:03:34][chn0] compare: 1580670212922 1580670214381
[Feb 02 20:03:34][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:34][chn0] JSON request body: [ [ 1580670214381, 4179690.1000000001 ] ]
[Feb 02 20:03:34][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:34][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:34][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:34][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:34][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:34][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:34][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:34][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:34][chn0] CURL: Sent '[ [ 1580670214381, 4179690.1000000001 ] ]' bytes
[Feb 02 20:03:34][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:34][chn0] CURL: Received 26 bytes
[Feb 02 20:03:34][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:34][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:34][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:34][chn0] emptied all (1) values
[Feb 02 20:03:36][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:36][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179690.40 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179690.40 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.40 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670216544
[Feb 02 20:03:36][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670216544
[Feb 02 20:03:36][chn0] Adding reading to queue (value=4179690.40 ts=1580670216544)
[Feb 02 20:03:36][MAX]  4179690.400000 @ 1580670216544
[Feb 02 20:03:36][MAX]  RESULT 4179690.400000 @ 1580670216544
[Feb 02 20:03:36][chn0] ==> number of tuples: 1
[Feb 02 20:03:36][chn0] compare: 1580670214381 1580670216544
[Feb 02 20:03:36][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:36][chn0] JSON request body: [ [ 1580670216544, 4179690.4000000004 ] ]
[Feb 02 20:03:36][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:36][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:36][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:36][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:36][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:36][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:36][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:36][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:36][chn0] CURL: Sent '[ [ 1580670216544, 4179690.4000000004 ] ]' bytes
[Feb 02 20:03:36][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:36][chn0] CURL: Received 26 bytes
[Feb 02 20:03:36][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:36][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:36][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:36][chn0] emptied all (1) values
[Feb 02 20:03:38][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:38][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179690.70 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179690.70 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.20 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670218697
[Feb 02 20:03:38][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670218697
[Feb 02 20:03:38][chn0] Adding reading to queue (value=4179690.70 ts=1580670218697)
[Feb 02 20:03:38][MAX]  4179690.700000 @ 1580670218697
[Feb 02 20:03:38][MAX]  RESULT 4179690.700000 @ 1580670218697
[Feb 02 20:03:38][chn0] ==> number of tuples: 1
[Feb 02 20:03:38][chn0] compare: 1580670216544 1580670218697
[Feb 02 20:03:38][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:38][chn0] JSON request body: [ [ 1580670218697, 4179690.7000000002 ] ]
[Feb 02 20:03:38][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:38][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:38][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:38][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:38][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:38][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:38][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:38][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:38][chn0] CURL: Sent '[ [ 1580670218697, 4179690.7000000002 ] ]' bytes
[Feb 02 20:03:38][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:38][chn0] CURL: Received 26 bytes
[Feb 02 20:03:38][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:38][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:38][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:38][chn0] emptied all (1) values
[Feb 02 20:03:40][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:40][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179691.00 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179691.00 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.50 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670220850
[Feb 02 20:03:40][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670220850
[Feb 02 20:03:40][chn0] Adding reading to queue (value=4179691.00 ts=1580670220850)
[Feb 02 20:03:40][MAX]  4179691.000000 @ 1580670220850
[Feb 02 20:03:40][MAX]  RESULT 4179691.000000 @ 1580670220850
[Feb 02 20:03:40][chn0] ==> number of tuples: 1
[Feb 02 20:03:40][chn0] compare: 1580670218697 1580670220850
[Feb 02 20:03:40][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:40][chn0] JSON request body: [ [ 1580670220850, 4179691 ] ]
[Feb 02 20:03:40][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:40][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:40][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:40][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:40][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:40][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:40][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:40][chn0] CURL: Sent 30 bytes..
[Feb 02 20:03:40][chn0] CURL: Sent '[ [ 1580670220850, 4179691 ] ]' bytes
[Feb 02 20:03:40][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:03:40][chn0] CURL: Received 26 bytes
[Feb 02 20:03:40][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:40][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:40][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:40][chn0] emptied all (1) values
[Feb 02 20:03:43][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:43][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179691.30 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179691.30 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.60 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670223012
[Feb 02 20:03:43][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670223012
[Feb 02 20:03:43][chn0] Adding reading to queue (value=4179691.30 ts=1580670223012)
[Feb 02 20:03:43][MAX]  4179691.300000 @ 1580670223012
[Feb 02 20:03:43][MAX]  RESULT 4179691.300000 @ 1580670223012
[Feb 02 20:03:43][chn0] ==> number of tuples: 1
[Feb 02 20:03:43][chn0] compare: 1580670220850 1580670223012
[Feb 02 20:03:43][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:43][chn0] JSON request body: [ [ 1580670223012, 4179691.3000000003 ] ]
[Feb 02 20:03:43][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:43][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:43][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:43][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:43][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:43][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:43][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:43][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:43][chn0] CURL: Sent '[ [ 1580670223012, 4179691.3000000003 ] ]' bytes
[Feb 02 20:03:43][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:43][chn0] CURL: Received 26 bytes
[Feb 02 20:03:43][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:43][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:43][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:43][chn0] emptied all (1) values
[Feb 02 20:03:44][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:44][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179691.50 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179691.50 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.00 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670224473
[Feb 02 20:03:44][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.30 ts=1580670224473
[Feb 02 20:03:44][chn0] Adding reading to queue (value=4179691.50 ts=1580670224473)
[Feb 02 20:03:44][MAX]  4179691.500000 @ 1580670224473
[Feb 02 20:03:44][MAX]  RESULT 4179691.500000 @ 1580670224473
[Feb 02 20:03:44][chn0] ==> number of tuples: 1
[Feb 02 20:03:44][chn0] compare: 1580670223012 1580670224473
[Feb 02 20:03:44][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:44][chn0] JSON request body: [ [ 1580670224473, 4179691.5 ] ]
[Feb 02 20:03:44][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:44][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:44][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:44][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:44][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:44][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:44][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:44][chn0] CURL: Sent 32 bytes..
[Feb 02 20:03:44][chn0] CURL: Sent '[ [ 1580670224473, 4179691.5 ] ]' bytes
[Feb 02 20:03:44][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:03:44][chn0] CURL: Received 26 bytes
[Feb 02 20:03:44][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:44][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:44][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:44][chn0] emptied all (1) values
[Feb 02 20:03:46][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:46][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179691.80 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179691.80 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.50 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670226666
[Feb 02 20:03:46][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670226666
[Feb 02 20:03:46][chn0] Adding reading to queue (value=4179691.80 ts=1580670226666)
[Feb 02 20:03:46][MAX]  4179691.800000 @ 1580670226666
[Feb 02 20:03:46][MAX]  RESULT 4179691.800000 @ 1580670226666
[Feb 02 20:03:46][chn0] ==> number of tuples: 1
[Feb 02 20:03:46][chn0] compare: 1580670224473 1580670226666
[Feb 02 20:03:46][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:46][chn0] JSON request body: [ [ 1580670226666, 4179691.8000000003 ] ]
[Feb 02 20:03:46][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:46][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:46][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:46][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:46][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:46][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:46][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:46][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:46][chn0] CURL: Sent '[ [ 1580670226666, 4179691.8000000003 ] ]' bytes
[Feb 02 20:03:46][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:46][chn0] CURL: Received 26 bytes
[Feb 02 20:03:46][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:46][chn0] CURL: Connection #2 to host localhost left intact
[Feb 02 20:03:46][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:46][chn0] emptied all (1) values
[Feb 02 20:03:48][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:48][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179692.10 ts=1580670228777
[Feb 02 20:03:48][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179692.10 ts=1580670228777
[Feb 02 20:03:48][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670228777
[Feb 02 20:03:48][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.50 ts=1580670228777
[Feb 02 20:03:48][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670228777
[Feb 02 20:03:48][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670228778
[Feb 02 20:03:48][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670228778
[Feb 02 20:03:48][chn0] Adding reading to queue (value=4179692.10 ts=1580670228777)
[Feb 02 20:03:48][MAX]  4179692.100000 @ 1580670228777
[Feb 02 20:03:48][MAX]  RESULT 4179692.100000 @ 1580670228777
[Feb 02 20:03:48][chn0] ==> number of tuples: 1
[Feb 02 20:03:48][chn0] compare: 1580670226666 1580670228777
[Feb 02 20:03:48][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:48][chn0] JSON request body: [ [ 1580670228777, 4179692.1000000001 ] ]
[Feb 02 20:03:48][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:48][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:48][chn0] CURL: Found bundle for host localhost: 0xb4b0bca8 [can pipeline]
[Feb 02 20:03:48][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:48][chn0] CURL: Re-using existing connection! (#2) with host localhost
[Feb 02 20:03:48][chn0] CURL: Connected to localhost (::1) port 80 (#2)
[Feb 02 20:03:48][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:48][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:48][chn0] CURL: Sent '[ [ 1580670228777, 4179692.1000000001 ] ]' bytes
[Feb 02 20:03:48][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:48][chn0] CURL: Received 26 bytes
[Feb 02 20:03:48][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:48][chn0] CURL: Closing connection 2
[Feb 02 20:03:48][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:48][chn0] emptied all (1) values
[Feb 02 20:03:50][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:50][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179692.30 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179692.30 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.20 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670230236
[Feb 02 20:03:50][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670230236
[Feb 02 20:03:50][chn0] Adding reading to queue (value=4179692.30 ts=1580670230236)
[Feb 02 20:03:50][MAX]  4179692.300000 @ 1580670230236
[Feb 02 20:03:50][MAX]  RESULT 4179692.300000 @ 1580670230236
[Feb 02 20:03:50][chn0] ==> number of tuples: 1
[Feb 02 20:03:50][chn0] compare: 1580670228777 1580670230236
[Feb 02 20:03:50][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:50][chn0] JSON request body: [ [ 1580670230236, 4179692.3000000003 ] ]
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 1 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 1 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 0 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 1 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 1 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 4 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 4 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 2 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 3 ms for 1 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL:   Trying ::1...
[Feb 02 20:03:50][chn0] CURL: TCP_NODELAY set
[Feb 02 20:03:50][chn0] CURL: Expire in 14994 ms for 3 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Expire in 200 ms for 4 (transfer 0xb4b00cd8)
[Feb 02 20:03:50][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:03:50][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:50][chn0] CURL: Sent '[ [ 1580670230236, 4179692.3000000003 ] ]' bytes
[Feb 02 20:03:50][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:50][chn0] CURL: Received 26 bytes
[Feb 02 20:03:50][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:50][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:03:50][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:50][chn0] emptied all (1) values
[Feb 02 20:03:52][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:52][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179692.60 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179692.60 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=497.00 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.50 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670232400
[Feb 02 20:03:52][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670232400
[Feb 02 20:03:52][chn0] Adding reading to queue (value=4179692.60 ts=1580670232400)
[Feb 02 20:03:52][MAX]  4179692.600000 @ 1580670232400
[Feb 02 20:03:52][MAX]  RESULT 4179692.600000 @ 1580670232400
[Feb 02 20:03:52][chn0] ==> number of tuples: 1
[Feb 02 20:03:52][chn0] compare: 1580670230236 1580670232400
[Feb 02 20:03:52][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:52][chn0] JSON request body: [ [ 1580670232400, 4179692.6000000001 ] ]
[Feb 02 20:03:52][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:52][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:52][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:03:52][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:52][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:03:52][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:03:52][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:52][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:52][chn0] CURL: Sent '[ [ 1580670232400, 4179692.6000000001 ] ]' bytes
[Feb 02 20:03:52][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:52][chn0] CURL: Received 26 bytes
[Feb 02 20:03:52][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:52][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:03:52][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:52][chn0] emptied all (1) values
[Feb 02 20:03:54][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:54][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179692.90 ts=1580670234551
[Feb 02 20:03:54][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179692.90 ts=1580670234551
[Feb 02 20:03:54][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670234552
[Feb 02 20:03:54][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.80 ts=1580670234552
[Feb 02 20:03:54][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=213.00 ts=1580670234552
[Feb 02 20:03:54][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=276.80 ts=1580670234552
[Feb 02 20:03:54][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670234552
[Feb 02 20:03:54][chn0] Adding reading to queue (value=4179692.90 ts=1580670234551)
[Feb 02 20:03:54][MAX]  4179692.900000 @ 1580670234551
[Feb 02 20:03:54][MAX]  RESULT 4179692.900000 @ 1580670234551
[Feb 02 20:03:54][chn0] ==> number of tuples: 1
[Feb 02 20:03:54][chn0] compare: 1580670232400 1580670234551
[Feb 02 20:03:54][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:54][chn0] JSON request body: [ [ 1580670234551, 4179692.9000000004 ] ]
[Feb 02 20:03:54][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:54][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:54][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:03:54][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:54][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:03:54][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:03:54][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:54][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:54][chn0] CURL: Sent '[ [ 1580670234551, 4179692.9000000004 ] ]' bytes
[Feb 02 20:03:54][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:54][chn0] CURL: Received 26 bytes
[Feb 02 20:03:54][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:54][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:03:54][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:54][chn0] emptied all (1) values
[Feb 02 20:03:56][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:56][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179693.10 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179693.10 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.60 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670236011
[Feb 02 20:03:56][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670236011
[Feb 02 20:03:56][chn0] Adding reading to queue (value=4179693.10 ts=1580670236011)
[Feb 02 20:03:56][MAX]  4179693.100000 @ 1580670236011
[Feb 02 20:03:56][MAX]  RESULT 4179693.100000 @ 1580670236011
[Feb 02 20:03:56][chn0] ==> number of tuples: 1
[Feb 02 20:03:56][chn0] compare: 1580670234551 1580670236011
[Feb 02 20:03:56][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:56][chn0] JSON request body: [ [ 1580670236011, 4179693.1000000001 ] ]
[Feb 02 20:03:56][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:56][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:56][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:03:56][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:56][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:03:56][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:03:56][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:56][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:56][chn0] CURL: Sent '[ [ 1580670236011, 4179693.1000000001 ] ]' bytes
[Feb 02 20:03:56][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:56][chn0] CURL: Received 26 bytes
[Feb 02 20:03:56][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:56][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:03:56][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:56][chn0] emptied all (1) values
[Feb 02 20:03:58][mtr0] Got 7 new readings from meter:
[Feb 02 20:03:58][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179693.40 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179693.40 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670238175
[Feb 02 20:03:58][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670238175
[Feb 02 20:03:58][chn0] Adding reading to queue (value=4179693.40 ts=1580670238175)
[Feb 02 20:03:58][MAX]  4179693.400000 @ 1580670238175
[Feb 02 20:03:58][MAX]  RESULT 4179693.400000 @ 1580670238175
[Feb 02 20:03:58][chn0] ==> number of tuples: 1
[Feb 02 20:03:58][chn0] compare: 1580670236011 1580670238175
[Feb 02 20:03:58][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:03:58][chn0] JSON request body: [ [ 1580670238175, 4179693.4000000004 ] ]
[Feb 02 20:03:58][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:58][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:03:58][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:03:58][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:03:58][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:03:58][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:03:58][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:03:58][chn0] CURL: Sent 41 bytes..
[Feb 02 20:03:58][chn0] CURL: Sent '[ [ 1580670238175, 4179693.4000000004 ] ]' bytes
[Feb 02 20:03:58][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:03:58][chn0] CURL: Received 26 bytes
[Feb 02 20:03:58][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:03:58][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:03:58][chn0] CURL Request succeeded with code: 200
[Feb 02 20:03:58][chn0] emptied all (1) values
[Feb 02 20:04:00][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:00][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179693.70 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179693.70 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.40 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670240327
[Feb 02 20:04:00][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670240327
[Feb 02 20:04:00][chn0] Adding reading to queue (value=4179693.70 ts=1580670240327)
[Feb 02 20:04:00][MAX]  4179693.700000 @ 1580670240327
[Feb 02 20:04:00][MAX]  RESULT 4179693.700000 @ 1580670240327
[Feb 02 20:04:00][chn0] ==> number of tuples: 1
[Feb 02 20:04:00][chn0] compare: 1580670238175 1580670240327
[Feb 02 20:04:00][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:00][chn0] JSON request body: [ [ 1580670240327, 4179693.7000000002 ] ]
[Feb 02 20:04:00][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:00][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:00][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:00][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:00][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:00][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:00][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:00][chn0] CURL: Sent 41 bytes..
[Feb 02 20:04:00][chn0] CURL: Sent '[ [ 1580670240327, 4179693.7000000002 ] ]' bytes
[Feb 02 20:04:00][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:04:00][chn0] CURL: Received 26 bytes
[Feb 02 20:04:00][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:00][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:00][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:00][chn0] emptied all (1) values
[Feb 02 20:04:02][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:02][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179694.00 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179694.00 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.10 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670242479
[Feb 02 20:04:02][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.10 ts=1580670242479
[Feb 02 20:04:02][chn0] Adding reading to queue (value=4179694.00 ts=1580670242479)
[Feb 02 20:04:02][MAX]  4179694.000000 @ 1580670242479
[Feb 02 20:04:02][MAX]  RESULT 4179694.000000 @ 1580670242479
[Feb 02 20:04:02][chn0] ==> number of tuples: 1
[Feb 02 20:04:02][chn0] compare: 1580670240327 1580670242479
[Feb 02 20:04:02][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:02][chn0] JSON request body: [ [ 1580670242479, 4179694 ] ]
[Feb 02 20:04:02][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:02][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:02][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:02][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:02][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:02][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:02][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:02][chn0] CURL: Sent 30 bytes..
[Feb 02 20:04:02][chn0] CURL: Sent '[ [ 1580670242479, 4179694 ] ]' bytes
[Feb 02 20:04:02][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:04:02][chn0] CURL: Received 26 bytes
[Feb 02 20:04:02][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:02][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:02][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:02][chn0] emptied all (1) values
[Feb 02 20:04:03][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:03][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179694.20 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179694.20 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.60 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=278.20 ts=1580670243939
[Feb 02 20:04:03][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=5.90 ts=1580670243939
[Feb 02 20:04:03][chn0] Adding reading to queue (value=4179694.20 ts=1580670243939)
[Feb 02 20:04:03][MAX]  4179694.200000 @ 1580670243939
[Feb 02 20:04:03][MAX]  RESULT 4179694.200000 @ 1580670243939
[Feb 02 20:04:03][chn0] ==> number of tuples: 1
[Feb 02 20:04:03][chn0] compare: 1580670242479 1580670243939
[Feb 02 20:04:03][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:03][chn0] JSON request body: [ [ 1580670243939, 4179694.2000000002 ] ]
[Feb 02 20:04:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:03][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:03][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:03][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:03][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:03][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:03][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:03][chn0] CURL: Sent 41 bytes..
[Feb 02 20:04:03][chn0] CURL: Sent '[ [ 1580670243939, 4179694.2000000002 ] ]' bytes
[Feb 02 20:04:03][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:04:04][chn0] CURL: Received 26 bytes
[Feb 02 20:04:04][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:04][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:04][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:04][chn0] emptied all (1) values
[Feb 02 20:04:06][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:06][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179694.50 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179694.50 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.80 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.00 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670246102
[Feb 02 20:04:06][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.30 ts=1580670246102
[Feb 02 20:04:06][chn0] Adding reading to queue (value=4179694.50 ts=1580670246102)
[Feb 02 20:04:06][MAX]  4179694.500000 @ 1580670246102
[Feb 02 20:04:06][MAX]  RESULT 4179694.500000 @ 1580670246102
[Feb 02 20:04:06][chn0] ==> number of tuples: 1
[Feb 02 20:04:06][chn0] compare: 1580670243939 1580670246102
[Feb 02 20:04:06][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:06][chn0] JSON request body: [ [ 1580670246102, 4179694.5 ] ]
[Feb 02 20:04:06][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:06][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:06][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:06][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:06][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:06][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:06][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:06][chn0] CURL: Sent 32 bytes..
[Feb 02 20:04:06][chn0] CURL: Sent '[ [ 1580670246102, 4179694.5 ] ]' bytes
[Feb 02 20:04:06][chn0] CURL: upload completely sent off: 32 out of 32 bytes
[Feb 02 20:04:06][chn0] CURL: Received 26 bytes
[Feb 02 20:04:06][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:06][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:06][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:06][chn0] emptied all (1) values
[Feb 02 20:04:08][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:08][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179694.80 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179694.80 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.00 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670248254
[Feb 02 20:04:08][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670248254
[Feb 02 20:04:08][chn0] Adding reading to queue (value=4179694.80 ts=1580670248254)
[Feb 02 20:04:08][MAX]  4179694.800000 @ 1580670248254
[Feb 02 20:04:08][MAX]  RESULT 4179694.800000 @ 1580670248254
[Feb 02 20:04:08][chn0] ==> number of tuples: 1
[Feb 02 20:04:08][chn0] compare: 1580670246102 1580670248254
[Feb 02 20:04:08][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:08][chn0] JSON request body: [ [ 1580670248254, 4179694.8000000003 ] ]
[Feb 02 20:04:08][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:08][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:08][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:08][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:08][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:08][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:08][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:08][chn0] CURL: Sent 41 bytes..
[Feb 02 20:04:08][chn0] CURL: Sent '[ [ 1580670248254, 4179694.8000000003 ] ]' bytes
[Feb 02 20:04:08][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:04:08][chn0] CURL: Received 26 bytes
[Feb 02 20:04:08][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:08][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:08][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:08][chn0] emptied all (1) values
[Feb 02 20:04:09][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:09][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179695.00 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179695.00 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=495.30 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670249713
[Feb 02 20:04:09][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.00 ts=1580670249713
[Feb 02 20:04:09][chn0] Adding reading to queue (value=4179695.00 ts=1580670249713)
[Feb 02 20:04:09][MAX]  4179695.000000 @ 1580670249713
[Feb 02 20:04:09][MAX]  RESULT 4179695.000000 @ 1580670249713
[Feb 02 20:04:09][chn0] ==> number of tuples: 1
[Feb 02 20:04:09][chn0] compare: 1580670248254 1580670249713
[Feb 02 20:04:09][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:09][chn0] JSON request body: [ [ 1580670249713, 4179695 ] ]
[Feb 02 20:04:09][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:09][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:09][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:09][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:09][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:09][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:09][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:09][chn0] CURL: Sent 30 bytes..
[Feb 02 20:04:09][chn0] CURL: Sent '[ [ 1580670249713, 4179695 ] ]' bytes
[Feb 02 20:04:09][chn0] CURL: upload completely sent off: 30 out of 30 bytes
[Feb 02 20:04:09][chn0] CURL: Received 26 bytes
[Feb 02 20:04:09][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:09][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:09][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:09][chn0] emptied all (1) values
[Feb 02 20:04:11][mtr0] Got 7 new readings from meter:
[Feb 02 20:04:11][mtr0] Reading: id=1-0:1.8.0*255/ObisIdentifier:1-0:1.8.0*255 value=4179695.30 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:1.8.1*255/ObisIdentifier:1-0:1.8.1*255 value=4179695.30 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:1.8.2*255/ObisIdentifier:1-0:1.8.2*255 value=0.00 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:16.7.0*255/ObisIdentifier:1-0:16.7.0*255 value=496.20 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:36.7.0*255/ObisIdentifier:1-0:36.7.0*255 value=212.50 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:56.7.0*255/ObisIdentifier:1-0:56.7.0*255 value=277.50 ts=1580670251877
[Feb 02 20:04:11][mtr0] Reading: id=1-0:76.7.0*255/ObisIdentifier:1-0:76.7.0*255 value=6.20 ts=1580670251877
[Feb 02 20:04:11][chn0] Adding reading to queue (value=4179695.30 ts=1580670251877)
[Feb 02 20:04:11][MAX]  4179695.300000 @ 1580670251877
[Feb 02 20:04:11][MAX]  RESULT 4179695.300000 @ 1580670251877
[Feb 02 20:04:11][chn0] ==> number of tuples: 1
[Feb 02 20:04:11][chn0] compare: 1580670249713 1580670251877
[Feb 02 20:04:11][chn0] copied 1/1 values for middleware transmission
[Feb 02 20:04:11][chn0] JSON request body: [ [ 1580670251877, 4179695.3000000003 ] ]
[Feb 02 20:04:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:11][chn0] CURL: Expire in 30000 ms for 8 (transfer 0xb4b00cd8)
[Feb 02 20:04:11][chn0] CURL: Found bundle for host localhost: 0xb4b0ca30 [can pipeline]
[Feb 02 20:04:11][chn0] CURL: Could pipeline, but not asked to!
[Feb 02 20:04:11][chn0] CURL: Re-using existing connection! (#3) with host localhost
[Feb 02 20:04:11][chn0] CURL: Connected to localhost (::1) port 80 (#3)
[Feb 02 20:04:11][chn0] CURL: Expire in 0 ms for 6 (transfer 0xb4b00cd8)
[Feb 02 20:04:11][chn0] CURL: Sent 41 bytes..
[Feb 02 20:04:11][chn0] CURL: Sent '[ [ 1580670251877, 4179695.3000000003 ] ]' bytes
[Feb 02 20:04:11][chn0] CURL: upload completely sent off: 41 out of 41 bytes
[Feb 02 20:04:11][chn0] CURL: Received 26 bytes
[Feb 02 20:04:11][chn0] CURL: Received '{"version":"0.3","rows":1}' bytes
[Feb 02 20:04:11][chn0] CURL: Connection #3 to host localhost left intact
[Feb 02 20:04:11][chn0] CURL Request succeeded with code: 200
[Feb 02 20:04:11][chn0] emptied all (1) values


More information about the volkszaehler-users mailing list