Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter SourceAnalytix v0.2.x

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.6k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.1k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    2.9k

Test Adapter SourceAnalytix v0.2.x

Geplant Angeheftet Gesperrt Verschoben Tester
adaptertest
958 Beiträge 103 Kommentatoren 291.0k Aufrufe 71 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • H Habedere

    Servus,
    bin kürzlich auf diesen Adapter gestoßen (worden) - gute Idee!
    Weiß jemand eine Möglichkeit wodurch ich die Werte einer anderen ioBroker Instanz von einem anderen Gerät loggen kann?
    Hintergrund ist, dass zwei Wärmemengenzähler an einem OrangePiZero mit SD-Karte laufen. Aufgrund der dauerhaften Schreibrate werden die Daten auf eine SQL-Datenbank auf einem ioBroker mit SSD geschrieben. Dies ist meine Hauptkonfiguration mit der ich eigentlich solche Spielchen laufen lassen möchte...
    Könnte mir vorstellen dass dieser Adapter auch einiges an Schreibleistung generiert oder?

    paul53P Offline
    paul53P Offline
    paul53
    schrieb am zuletzt editiert von paul53
    #635

    @Habedere An WMZ angepasste Anleitung:

    • Auf dem Emfänger im Reiter "Objekte" in der Wurzel ein Gerät mit der identischen ID wie im Sender erstellen.
    • Die Raw-Daten des Gerätes für common und native in das neu erstellte Gerät kopieren.
    • Im Emfäger das Gerät selektieren und einen Kanal mit dem Namen data erstellen
    • Auf dem Sender den Kanal data selektieren und "Die ausgewählte Objektstruktur als JSON-Datei speichern".
    • Auf dem Empfänger den Kanal selektieren und "Eine Objektstruktur mittels JSON Datei hochladen"
    • Alles wiederholen für den 2. WMZ
    • Auf dem Sender ein kleines Skript erstellen:
    const urlDst  = 'http://192.168.xxx.yyy:8082/set/'; // IP anpassen !
    
    on(/^mbus\.0\.LUG-6757819\d\.data\..+/, function(dp) {
        request(urlDst + dp.id + '?value=' + dp.state.val);
    });
    

    Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
    Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

    1 Antwort Letzte Antwort
    1
    • 0 Offline
      0 Offline
      007Schneiderlein
      schrieb am zuletzt editiert von
      #636

      Hallo Zusammen,

      erstmal herzlichen Dank für diesen Super Adapter und meine vollen Respekt was Ihr hier alles möglich macht!
      Der Adapter vereinfacht die Zählerstandsverarbeitung extrem und die modulare Datenstruktur ist echt super durchdacht.:sunglasses:

      Dennoch habe ich leider folgendes Problem:

      Ich lese mit meinem Homematic HM-ES-TX-WM und dem ES-IEC Auslesekopf an meinem EVU Smartmeter direkt die Zählertände aus.
      Blöderweise schleichen sich immer wieder extreme Zählersprünge ein. (Siehe Anhang :-( )
      Somit kann der Adapter nicht korrekt kalkulieren.
      Vom Hersteller bekomme ich bisher leider keine Unterstützung zur Lösungsfindung.

      Wäre es denn möglich, im Adapter eine Zählerstandsprüfung so zu integrieren, das nur Zählerstände in die DB geschrieben werden, wenn der
      aktuelle Zählerstand >= letzter Zählerstand und <=letzter Zählerstand + 100 ist?
      Optimaler weise kann man die Abweichung 100 noch selbst festlegen...

      Diese Glättung via Skript hinzubekommen ist mir einfach nicht möglich, bzw. bin ich daran gescheitert, da mir hier die entsprechenden Programmierkenntnisse fehlen. (Siehe Anhang :-( )

      Ich wäre euch sehr dankbar, wenn Ihr mir einen Denkanstoß geben könntet, oder
      sogar eine Lösung hättet.

      Herzlichen Dank!

      VG Stefan

      2019-05-25 11_00_07-objects - ioBroker.png

      ioBroker skript Versuch Zählertsandsbereinigung.png

      paul53P 1 Antwort Letzte Antwort
      0
      • 0 007Schneiderlein

        Hallo Zusammen,

        erstmal herzlichen Dank für diesen Super Adapter und meine vollen Respekt was Ihr hier alles möglich macht!
        Der Adapter vereinfacht die Zählerstandsverarbeitung extrem und die modulare Datenstruktur ist echt super durchdacht.:sunglasses:

        Dennoch habe ich leider folgendes Problem:

        Ich lese mit meinem Homematic HM-ES-TX-WM und dem ES-IEC Auslesekopf an meinem EVU Smartmeter direkt die Zählertände aus.
        Blöderweise schleichen sich immer wieder extreme Zählersprünge ein. (Siehe Anhang :-( )
        Somit kann der Adapter nicht korrekt kalkulieren.
        Vom Hersteller bekomme ich bisher leider keine Unterstützung zur Lösungsfindung.

        Wäre es denn möglich, im Adapter eine Zählerstandsprüfung so zu integrieren, das nur Zählerstände in die DB geschrieben werden, wenn der
        aktuelle Zählerstand >= letzter Zählerstand und <=letzter Zählerstand + 100 ist?
        Optimaler weise kann man die Abweichung 100 noch selbst festlegen...

        Diese Glättung via Skript hinzubekommen ist mir einfach nicht möglich, bzw. bin ich daran gescheitert, da mir hier die entsprechenden Programmierkenntnisse fehlen. (Siehe Anhang :-( )

        Ich wäre euch sehr dankbar, wenn Ihr mir einen Denkanstoß geben könntet, oder
        sogar eine Lösung hättet.

        Herzlichen Dank!

        VG Stefan

        2019-05-25 11_00_07-objects - ioBroker.png

        ioBroker skript Versuch Zählertsandsbereinigung.png

        paul53P Offline
        paul53P Offline
        paul53
        schrieb am zuletzt editiert von
        #637

        @007Schneiderlein Eigentlich sollte Dein Skript funktionieren. Einfacher geht es so:

        Blockly_Ausreisser_ausblenden.JPG

        Wert und vorheriger Wert sind Eigenschaften des Triggerdatenpunktes (unter Blöcke "Trigger").

        Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
        Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

        0 1 Antwort Letzte Antwort
        0
        • paul53P paul53

          @007Schneiderlein Eigentlich sollte Dein Skript funktionieren. Einfacher geht es so:

          Blockly_Ausreisser_ausblenden.JPG

          Wert und vorheriger Wert sind Eigenschaften des Triggerdatenpunktes (unter Blöcke "Trigger").

          0 Offline
          0 Offline
          007Schneiderlein
          schrieb am zuletzt editiert von
          #638

          @paul53
          Hi Paul,

          danke für die super schnelle Antwort.:relaxed: :+1:
          Die Datenreihen sind zwar damit schon deutlich sauberer, jedoch funktioniert es nicht konsequent fehlerfrei...:confounded:
          Daher danke für dein Skript, ich werde das mal so probieren . :grinning:

          ich gebe schnellstmöglich Feedback :wink:

          Grüße Stefan

          1 Antwort Letzte Antwort
          0
          • C Offline
            C Offline
            csamaggi
            schrieb am zuletzt editiert von
            #639

            Erst einmal Danke für den Adapter,

            nach so etwas war ich schon auf der Sucher bisher habe ich dass mit Skripten gelöst.

            Doch leider läuft er bei mir garnicht rund.

            Ich habe als Datepunkt bzw Trackingpunkt meinen momentanen Verbrauch vom discovergy Adapter benutzt.

            Die Daten werden auch im Meta gelesen und getrackt.
            Jedoch wenn ich meine Zählerstände eintrage wie sie im Discovergy vorliegen werden sie im Sourceadapter als Minus angezeigt setzte ich eine Minus vor die Werte dann sind sie im Plus.
            Des Weiteren wird wenn ich den Zählerstand vom aktuellen Tag eintrage der ja der höchste ist wird einfach weiter adddiert und nich auf 0 gesetz was ja an sich blöd ist denn dann pass auch die Berechnung nicht.
            Außerdem muss ich Tag und Jahr Tauschen in dem Datenpunkt sonst stimmen die Zahlen auch nicht.
            Ich werde es heute abend nochmal mit Bildern hier versehen.

            MFG Maggi

            DutchmanD 1 Antwort Letzte Antwort
            0
            • C csamaggi

              Erst einmal Danke für den Adapter,

              nach so etwas war ich schon auf der Sucher bisher habe ich dass mit Skripten gelöst.

              Doch leider läuft er bei mir garnicht rund.

              Ich habe als Datepunkt bzw Trackingpunkt meinen momentanen Verbrauch vom discovergy Adapter benutzt.

              Die Daten werden auch im Meta gelesen und getrackt.
              Jedoch wenn ich meine Zählerstände eintrage wie sie im Discovergy vorliegen werden sie im Sourceadapter als Minus angezeigt setzte ich eine Minus vor die Werte dann sind sie im Plus.
              Des Weiteren wird wenn ich den Zählerstand vom aktuellen Tag eintrage der ja der höchste ist wird einfach weiter adddiert und nich auf 0 gesetz was ja an sich blöd ist denn dann pass auch die Berechnung nicht.
              Außerdem muss ich Tag und Jahr Tauschen in dem Datenpunkt sonst stimmen die Zahlen auch nicht.
              Ich werde es heute abend nochmal mit Bildern hier versehen.

              MFG Maggi

              DutchmanD Offline
              DutchmanD Offline
              Dutchman
              Developer Most Active Administrators
              schrieb am zuletzt editiert von
              #640

              @csamaggi

              Bitte Bilder der Datenpunkte und Einstellungen Posten.
              Ich habe den Adapter entwickelt mit discovergy Werten als Test also diese Fehler überraschen mich

              1 Antwort Letzte Antwort
              0
              • H Offline
                H Offline
                Habedere
                schrieb am zuletzt editiert von Habedere
                #641

                Servus nochmal,
                die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?
                Bzw. habe ich eigentlich einen selbst generierten Wert...

                PS: Bis Post Nr 250 habe ich dazu nix gefunden - da wir eher zu "statistics" geraten, aber das funktioniert scheinbar auch nicht recht

                IssiI paul53P 2 Antworten Letzte Antwort
                0
                • H Habedere

                  Servus nochmal,
                  die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?
                  Bzw. habe ich eigentlich einen selbst generierten Wert...

                  PS: Bis Post Nr 250 habe ich dazu nix gefunden - da wir eher zu "statistics" geraten, aber das funktioniert scheinbar auch nicht recht

                  IssiI Offline
                  IssiI Offline
                  Issi
                  Developer
                  schrieb am zuletzt editiert von
                  #642

                  @Habedere sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                  Servus nochmal,
                  die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?
                  Bzw. habe ich eigentlich einen selbst generierten Wert...

                  PS: Bis Post Nr 250 habe ich dazu nix gefunden - da wir eher zu "statistics" geraten, aber das funktioniert scheinbar auch nicht recht

                  möglich ist es schon ist aber noch ein kleiner bug drinnen die neuen Startwert werden noch nicht um 0uhr neugeschrieben somit läuft der Zähler immer weiter da wird aber dran gearbeitet

                  @Dutchman sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                  allgemein klappt nur bei den watt werten bin ich noch dran :/

                  Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                  1 Antwort Letzte Antwort
                  0
                  • H Habedere

                    Servus nochmal,
                    die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?
                    Bzw. habe ich eigentlich einen selbst generierten Wert...

                    PS: Bis Post Nr 250 habe ich dazu nix gefunden - da wir eher zu "statistics" geraten, aber das funktioniert scheinbar auch nicht recht

                    paul53P Offline
                    paul53P Offline
                    paul53
                    schrieb am zuletzt editiert von
                    #643

                    @Habedere sagte:

                    die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?

                    Siehe changelog 0.2.29

                    Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                    Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                    H 1 Antwort Letzte Antwort
                    0
                    • paul53P paul53

                      @Habedere sagte:

                      die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?

                      Siehe changelog 0.2.29

                      H Offline
                      H Offline
                      Habedere
                      schrieb am zuletzt editiert von
                      #644

                      @paul53 sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                      @Habedere sagte:

                      die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?

                      Siehe changelog 0.2.29

                      Danke :) Haber gerade ab Post 444 darüber gelesen...

                      1 Antwort Letzte Antwort
                      0
                      • C Offline
                        C Offline
                        csamaggi
                        schrieb am zuletzt editiert von
                        #645

                        Erst einmal Hallo,

                        habe es erst heute geschafft die Bilder zu erstellen.

                        Sourcanalytix überwachter Datenpunkt.png

                        Dies ist der Datenpunkt den ich tracke hoffe der passt.

                        Sourcanalytix Datenpunkteinstellungen.png

                        Dies sind meine Einstellung dazu. Das bei Jahresbeginn 0 ist richt da der Zähler erst im Januar kam.
                        Wie ihr seht sind unten die Werte im Plus, diese stammen aus meinem Discovergyinterface.

                        Sourcanalytix Werte Consumption.png

                        So wie ihr seht steht nun vor den Werten minus, wenn ich in den Einstellungen bei den Werten ein Minus davor setzte sind diese Werte im Plus.
                        Außerdem passt auch current Year nicht den dann ist der Tageswert wenn ich die beiden in den Einstellungen ändere dann wird es richtig angezeigt.

                        Sourcanalytix Kosten.png
                        Das gleiche ist auch bei den Kosten.

                        Sourcanalytix Wochentage.png

                        Bei den Wochentagen weiss ich nicht ob das gewollte ist dass er sie immer addiert aber das würde für mich keinen Sinn machen. Hier wird einfach von Tag zu Tag addiert

                        Hoffe ich konnte dass etwas anschaulich machen was ich meine.

                        MFG Maggi

                        paul53P IssiI 2 Antworten Letzte Antwort
                        0
                        • C csamaggi

                          Erst einmal Hallo,

                          habe es erst heute geschafft die Bilder zu erstellen.

                          Sourcanalytix überwachter Datenpunkt.png

                          Dies ist der Datenpunkt den ich tracke hoffe der passt.

                          Sourcanalytix Datenpunkteinstellungen.png

                          Dies sind meine Einstellung dazu. Das bei Jahresbeginn 0 ist richt da der Zähler erst im Januar kam.
                          Wie ihr seht sind unten die Werte im Plus, diese stammen aus meinem Discovergyinterface.

                          Sourcanalytix Werte Consumption.png

                          So wie ihr seht steht nun vor den Werten minus, wenn ich in den Einstellungen bei den Werten ein Minus davor setzte sind diese Werte im Plus.
                          Außerdem passt auch current Year nicht den dann ist der Tageswert wenn ich die beiden in den Einstellungen ändere dann wird es richtig angezeigt.

                          Sourcanalytix Kosten.png
                          Das gleiche ist auch bei den Kosten.

                          Sourcanalytix Wochentage.png

                          Bei den Wochentagen weiss ich nicht ob das gewollte ist dass er sie immer addiert aber das würde für mich keinen Sinn machen. Hier wird einfach von Tag zu Tag addiert

                          Hoffe ich konnte dass etwas anschaulich machen was ich meine.

                          MFG Maggi

                          paul53P Offline
                          paul53P Offline
                          paul53
                          schrieb am zuletzt editiert von
                          #646

                          @csamaggi Der Zählerstand bei Tagesbeginn kann nicht kleiner sein als der Zählerstand bei Wochenbeginn.

                          Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                          Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                          1 Antwort Letzte Antwort
                          0
                          • C csamaggi

                            Erst einmal Hallo,

                            habe es erst heute geschafft die Bilder zu erstellen.

                            Sourcanalytix überwachter Datenpunkt.png

                            Dies ist der Datenpunkt den ich tracke hoffe der passt.

                            Sourcanalytix Datenpunkteinstellungen.png

                            Dies sind meine Einstellung dazu. Das bei Jahresbeginn 0 ist richt da der Zähler erst im Januar kam.
                            Wie ihr seht sind unten die Werte im Plus, diese stammen aus meinem Discovergyinterface.

                            Sourcanalytix Werte Consumption.png

                            So wie ihr seht steht nun vor den Werten minus, wenn ich in den Einstellungen bei den Werten ein Minus davor setzte sind diese Werte im Plus.
                            Außerdem passt auch current Year nicht den dann ist der Tageswert wenn ich die beiden in den Einstellungen ändere dann wird es richtig angezeigt.

                            Sourcanalytix Kosten.png
                            Das gleiche ist auch bei den Kosten.

                            Sourcanalytix Wochentage.png

                            Bei den Wochentagen weiss ich nicht ob das gewollte ist dass er sie immer addiert aber das würde für mich keinen Sinn machen. Hier wird einfach von Tag zu Tag addiert

                            Hoffe ich konnte dass etwas anschaulich machen was ich meine.

                            MFG Maggi

                            IssiI Offline
                            IssiI Offline
                            Issi
                            Developer
                            schrieb am zuletzt editiert von Issi
                            #647

                            @csamaggi Ich sehe das du Watt Werten trackst.

                            Sourcanalytix überwachter Datenpunkt.png

                            Die Anfangszählerstände müssen in kWh sein wie auf deinem Bild zusehen sind deine Wochenbeginn usw in kWh nähme ich mal an aber dein Tagesbegin ist in Watt

                            Sourcanalytix Datenpunkteinstellungen.png

                            da der Adapter noch ein kleinen bug hat werden die Anfangs Werte nicht richtig gesetzt statt kWh wird Watt gesetzt deswegen sind deine werte im minus da der Tageswert kleiner als die anderen werte ist.

                            Wie aus dem jahreswert abzulesen ist bist du mit dem tracken bei 15,687 kWh und in den Wochen und Monates werten hast du 2106 kWh eingetragen der Adapter versucht jetzt die Differenz erst mal auf 0 zu bringen deswegen die minus werte.
                            (kleine rechnung zur kontrolle dein Wochenbeginn 2106 kWh - 2090,313 was der adapter dir anzeigt ergibt 15,687 das was bei dir im current Year steht)

                            Sourcanalytix Werte Consumption.png

                            Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                            1 Antwort Letzte Antwort
                            0
                            • DutchmanD Offline
                              DutchmanD Offline
                              Dutchman
                              Developer Most Active Administrators
                              schrieb am zuletzt editiert von
                              #648

                              @Habedere sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                              die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?

                              wie bereits erwähnt klappt das logging von watt werten leider noch nicht, bin da noch dran.
                              kWh / Wh / m3 / l sind alles kein problem

                              K 1 Antwort Letzte Antwort
                              0
                              • DutchmanD Dutchman

                                @Habedere sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                                die eingehende Leistung in Watt zu protokollieren ist wahrscheinlich noch nicht möglich oder?

                                wie bereits erwähnt klappt das logging von watt werten leider noch nicht, bin da noch dran.
                                kWh / Wh / m3 / l sind alles kein problem

                                K Offline
                                K Offline
                                Kueppert
                                schrieb am zuletzt editiert von
                                #649

                                @Dutchman hahaha, gut dass ich das schon wusste. Meine Kaffemaschine hat heute gem. Adapter schon 4kWh geschluckt...die hat richtig Power :joy:

                                UDM Pro, Intel NUC - ioBroker in Proxmox-VM, PiHole+Grafana&Influx+TasmoAdmin in LXCs, Raspberry Pi3 (als CCU), Zigbee-Stick Sonoff, Synology DS918+

                                IssiI sigi234S 2 Antworten Letzte Antwort
                                0
                                • K Kueppert

                                  @Dutchman hahaha, gut dass ich das schon wusste. Meine Kaffemaschine hat heute gem. Adapter schon 4kWh geschluckt...die hat richtig Power :joy:

                                  IssiI Offline
                                  IssiI Offline
                                  Issi
                                  Developer
                                  schrieb am zuletzt editiert von
                                  #650

                                  @Kueppert na da hast aber ordentlich Kaffe gemacht :joy:

                                  Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                  1 Antwort Letzte Antwort
                                  0
                                  • K Kueppert

                                    @Dutchman hahaha, gut dass ich das schon wusste. Meine Kaffemaschine hat heute gem. Adapter schon 4kWh geschluckt...die hat richtig Power :joy:

                                    sigi234S Online
                                    sigi234S Online
                                    sigi234
                                    Forum Testing Most Active
                                    schrieb am zuletzt editiert von
                                    #651

                                    @Kueppert sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                                    Meine Kaffemaschine hat heute gem. Adapter schon 4kWh geschluckt

                                    Am Starkstrom angeschlossen................:grinning:

                                    Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                    Immer Daten sichern!

                                    1 Antwort Letzte Antwort
                                    0
                                    • JB_SullivanJ Offline
                                      JB_SullivanJ Offline
                                      JB_Sullivan
                                      schrieb am zuletzt editiert von JB_Sullivan
                                      #652

                                      Hallo Leute,
                                      nachdem ich 14 Tage im Urlaub war, bin ich gestern Heim gekommen und musste feststellen, das mein ganzes Log File mit Meldungen wie dieser hier gefüllt wird.

                                      sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                      sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                      sourceanalytix.0	2019-05-30 13:31:18.562	debug	system.adapter.admin.0: logging true
                                      

                                      Ich habe daraufhin den Debug Mode eingeschaltet, aber auch damit bekomme ich nicht mehr Informationen.

                                      Da ich die letzten 14 Tage nicht zu Hause war, hat auch niemand etwas am System verändert. Einzige Ausnahme ist das automatische Backup mit anschließendem Neustart von IoB. Woher können also diese Meldungen stammen, bzw. wo muss ich suchen um den Fehler, so er denn von meinem System kommt, abzustellen?

                                      Adapter Version ist 0.2.26

                                      So, habe eben den Adapter auf 0.2.81 hochgezogen - jetzt kommen die Meldungen nicht mehr in der Häufigkeit, sind aber immer noch da.

                                      sourceanalytix.0 2019-05-30 13:53:05.469 error Error in case handling of cost type identificaton : undefined
                                      sourceanalytix.0 2019-05-30 13:53:05.469 debug State object custom content: {"start_day":0.002,"start_week":0.003,"start_month":0.001,"start_quarter":3.237}
                                      sourceanalytix.0 2019-05-30 13:53:05.469 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Today","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Today
                                      sourceanalytix.0 2019-05-30 13:53:05.469 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Today
                                      sourceanalytix.0 2019-05-30 13:53:05.469 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Today
                                      sourceanalytix.0 2019-05-30 13:53:05.469 debug Instance name : sourceanalytix.0
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter Calculation executed
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost year : 33.92
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost quarter : 13.50
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost month : 5.97
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost week : 0.54
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost day : 0.54
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug delivery type .consumption.
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug cost type .cost.
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug year consumed 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter consumed 46.718999999999994
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug month consumed 20.655
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug week consumed 1.8810000000000002
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug day consumed 1.8739999999999952
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading quarter : 46.719
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading month : 20.655
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading week : 1.881
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 1.874
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Start consumption calculations
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Delivery state set to : .consumption.
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug year start : 0
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter start 70.665
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug month start 96.729
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug week start : 115.503
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug day start : 115.51
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug reading_start : 0
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle meter history : false
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle consumption calculations : true
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost unit : 0.289
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost basic : 6
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Calculation Factor : 0.289
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle cost calculations : true
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter calculated reading : 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter current reading : 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State value output of unit factore calculation : 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Test unit : kwh
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State value input for unit factore calculation : 117.384
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":
                                      sourceanalytix.0 2019-05-30 13:53:05.453 error Error in case handling of cost type identificaton : undefined
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"start_day":0.002,"start_week":0.002,"start_month":0.925,"start_quarter":1.071}
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Yesterday","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Y
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Case result : Electricity consumption
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.50
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Total
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Yesterday
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Yesterday
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                      web.0 2019-05-30 13:52:55.172 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:55.093 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                      web.0 2019-05-30 13:52:46.562 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:46.437 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                      info.0 2019-05-30 13:52:41.984 info Popup-News readed...
                                      web.0 2019-05-30 13:52:32.453 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:32.375 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                      web.0 2019-05-30 13:52:25.640 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:25.375 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:25.093 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:24.906 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:21.890 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      web.0 2019-05-30 13:52:21.718 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                      tankerkoenig.0 2019-05-30 13:51:15.844 info Reading data from tankerkoenig ...
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 82.56
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 42.26
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 19.42
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 1.96
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.25
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total.cost.01_current_day
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 146.231
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 67.18799999999999
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 6.776999999999987
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 0.8639999999999759
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 146.231
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 67.188
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 6.777
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 0.864
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 139.452
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 218.495
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 278.906
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 284.819
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 33.92
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 13.50
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 5.97
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 0.54
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.54
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 46.706999999999994
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 20.643
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 1.8689999999999998
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 1.8619999999999948
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 46.707
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 20.643
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 1.869
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 1.862
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 70.665
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 96.729
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 115.503
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 115.51
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 285.683
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 117.372
                                      sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name"
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":284.819,"start_wee
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Jannick_EDV ENERGY Total","
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.5
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Tota
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter Calculation executed
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost year : 2.04
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost quarter : 2.04
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost month : 2.04
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost week : 0.00
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost day : 0.00
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy.cost.01_current_day
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug delivery type .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug cost type .cost.
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug objroot sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug year consumed 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter consumed 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug month consumed 7.053
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug week consumed 0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug day consumed 0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading quarter : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading month : 7.053
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading week : 0.000
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 0.000
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Start consumption calculations
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Delivery state set to : .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug year start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter start 0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug month start 0.006
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug week start : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug day start : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug reading_start : 0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle meter history : false
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle consumption calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost unit : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost basic : 6
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Calculation Factor : 0.289
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle cost calculations : true
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter calculated reading : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter current reading : 7059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State value output of unit factore calculation : 7.059
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Test unit : wh
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State value input for unit factore calculation : "7059"
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Object array input for unit factore calculation : {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption"
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":7.059,"start_week"
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption","desc":"Switch total energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Jannick_EDV.ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : fritzdect.0.DECT200_087610221797.energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                      sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug Meter Calculation executed
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost year : 9.07
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost quarter : 5.52
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost month : 3.17
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost week : 1.51
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost day : 1.39
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610244490__energy.cost.01_current_day
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug delivery type .consumption.
                                      sourceanalytix.0 2019-05-30 13:51:15.639 debug cost type .cost.

                                      ioBroker auf Intel Core i3-5005U NUC und Windwos10 Pro

                                      IssiI 1 Antwort Letzte Antwort
                                      0
                                      • JB_SullivanJ JB_Sullivan

                                        Hallo Leute,
                                        nachdem ich 14 Tage im Urlaub war, bin ich gestern Heim gekommen und musste feststellen, das mein ganzes Log File mit Meldungen wie dieser hier gefüllt wird.

                                        sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0	2019-05-30 13:31:18.562	debug	system.adapter.admin.0: logging true
                                        

                                        Ich habe daraufhin den Debug Mode eingeschaltet, aber auch damit bekomme ich nicht mehr Informationen.

                                        Da ich die letzten 14 Tage nicht zu Hause war, hat auch niemand etwas am System verändert. Einzige Ausnahme ist das automatische Backup mit anschließendem Neustart von IoB. Woher können also diese Meldungen stammen, bzw. wo muss ich suchen um den Fehler, so er denn von meinem System kommt, abzustellen?

                                        Adapter Version ist 0.2.26

                                        So, habe eben den Adapter auf 0.2.81 hochgezogen - jetzt kommen die Meldungen nicht mehr in der Häufigkeit, sind aber immer noch da.

                                        sourceanalytix.0 2019-05-30 13:53:05.469 error Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug State object custom content: {"start_day":0.002,"start_week":0.003,"start_month":0.001,"start_quarter":3.237}
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Today","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost year : 33.92
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost quarter : 13.50
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost month : 5.97
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost week : 0.54
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost day : 0.54
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug year consumed 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter consumed 46.718999999999994
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug month consumed 20.655
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug week consumed 1.8810000000000002
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug day consumed 1.8739999999999952
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading quarter : 46.719
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading month : 20.655
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading week : 1.881
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 1.874
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter start 70.665
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug month start 96.729
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug week start : 115.503
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug day start : 115.51
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter calculated reading : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter current reading : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State value output of unit factore calculation : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State value input for unit factore calculation : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":
                                        sourceanalytix.0 2019-05-30 13:53:05.453 error Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"start_day":0.002,"start_week":0.002,"start_month":0.925,"start_quarter":1.071}
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Yesterday","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Y
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.50
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Yesterday
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Yesterday
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                        web.0 2019-05-30 13:52:55.172 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:55.093 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        web.0 2019-05-30 13:52:46.562 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:46.437 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        info.0 2019-05-30 13:52:41.984 info Popup-News readed...
                                        web.0 2019-05-30 13:52:32.453 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:32.375 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        web.0 2019-05-30 13:52:25.640 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:25.375 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:25.093 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:24.906 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:21.890 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:21.718 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        tankerkoenig.0 2019-05-30 13:51:15.844 info Reading data from tankerkoenig ...
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 82.56
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 42.26
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 19.42
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 1.96
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.25
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 146.231
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 67.18799999999999
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 6.776999999999987
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 0.8639999999999759
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 146.231
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 67.188
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 6.777
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 0.864
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 139.452
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 218.495
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 278.906
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 284.819
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 33.92
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 13.50
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 5.97
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 0.54
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.54
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 46.706999999999994
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 20.643
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 1.8689999999999998
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 1.8619999999999948
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 46.707
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 20.643
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 1.869
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 1.862
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 70.665
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 96.729
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 115.503
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 115.51
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":284.819,"start_wee
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Jannick_EDV ENERGY Total","
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.5
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Tota
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost year : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost quarter : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost month : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost week : 0.00
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost day : 0.00
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug objroot sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug year consumed 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter consumed 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug month consumed 7.053
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug week consumed 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug day consumed 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading quarter : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading month : 7.053
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading week : 0.000
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 0.000
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter start 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug month start 0.006
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug week start : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug day start : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter calculated reading : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter current reading : 7059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State value output of unit factore calculation : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Test unit : wh
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State value input for unit factore calculation : "7059"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Object array input for unit factore calculation : {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":7.059,"start_week"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption","desc":"Switch total energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Jannick_EDV.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : fritzdect.0.DECT200_087610221797.energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost year : 9.07
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost quarter : 5.52
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost month : 3.17
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost week : 1.51
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost day : 1.39
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610244490__energy.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug cost type .cost.

                                        IssiI Offline
                                        IssiI Offline
                                        Issi
                                        Developer
                                        schrieb am zuletzt editiert von Issi
                                        #653

                                        @JB_Sullivan sagte in [Neuer Adapter Beta 0.2.275] SourceAnalytix (Verbrauch Protokollierung von Strom/Gas/Flüssigkeiten):

                                        Hallo Leute,
                                        nachdem ich 14 Tage im Urlaub war, bin ich gestern Heim gekommen und musste feststellen, das mein ganzes Log File mit Meldungen wie dieser hier gefüllt wird.

                                        sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0	2019-05-30 13:31:18.750	error	Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0	2019-05-30 13:31:18.562	debug	system.adapter.admin.0: logging true
                                        

                                        Ich habe daraufhin den Debug Mode eingeschaltet, aber auch damit bekomme ich nicht mehr Informationen.

                                        Da ich die letzten 14 Tage nicht zu Hause war, hat auch niemand etwas am System verändert. Einzige Ausnahme ist das automatische Backup mit anschließendem Neustart von IoB. Woher können also diese Meldungen stammen, bzw. wo muss ich suchen um den Fehler, so er denn von meinem System kommt, abzustellen?

                                        Adapter Version ist 0.2.26

                                        So, habe eben den Adapter auf 0.2.81 hochgezogen - jetzt kommen die Meldungen nicht mehr in der Häufigkeit, sind aber immer noch da.

                                        sourceanalytix.0 2019-05-30 13:53:05.469 error Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug State object custom content: {"start_day":0.002,"start_week":0.003,"start_month":0.001,"start_quarter":3.237}
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Today","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Today
                                        sourceanalytix.0 2019-05-30 13:53:05.469 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost year : 33.92
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost quarter : 13.50
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost month : 5.97
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost week : 0.54
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated cost day : 0.54
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug year consumed 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter consumed 46.718999999999994
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug month consumed 20.655
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug week consumed 1.8810000000000002
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug day consumed 1.8739999999999952
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading quarter : 46.719
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading month : 20.655
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading week : 1.881
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug calculated reading day : 1.874
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug quarter start 70.665
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug month start 96.729
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug week start : 115.503
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug day start : 115.51
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter calculated reading : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Meter current reading : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State value output of unit factore calculation : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State value input for unit factore calculation : 117.384
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":
                                        sourceanalytix.0 2019-05-30 13:53:05.453 error Error in case handling of cost type identificaton : undefined
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"start_day":0.002,"start_week":0.002,"start_month":0.925,"start_quarter":1.071}
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Yesterday","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Y
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.50
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Yesterday
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Yesterday
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:53:05.453 debug Instance name : sourceanalytix.0
                                        web.0 2019-05-30 13:52:55.172 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:55.093 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        web.0 2019-05-30 13:52:46.562 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:46.437 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        info.0 2019-05-30 13:52:41.984 info Popup-News readed...
                                        web.0 2019-05-30 13:52:32.453 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:32.375 info <==Disconnect system.user.admin from ::ffff:10.122.60.28 flot
                                        web.0 2019-05-30 13:52:25.640 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:25.375 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:25.093 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:24.906 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:21.890 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        web.0 2019-05-30 13:52:21.718 info ==>Connected system.user.admin from ::ffff:10.122.60.28
                                        tankerkoenig.0 2019-05-30 13:51:15.844 info Reading data from tankerkoenig ...
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.686 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 82.56
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 42.26
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 19.42
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 1.96
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.25
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 146.231
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 67.18799999999999
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 6.776999999999987
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 0.8639999999999759
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 146.231
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 67.188
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 6.777
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 0.864
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 139.452
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 218.495
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 278.906
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 284.819
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost year : 33.92
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost quarter : 13.50
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost month : 5.97
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost week : 0.54
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated cost day : 0.54
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug example state string : sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug objroot sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year consumed 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter consumed 46.706999999999994
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month consumed 20.643
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week consumed 1.8689999999999998
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day consumed 1.8619999999999948
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading quarter : 46.707
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading month : 20.643
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading week : 1.869
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug calculated reading day : 1.862
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug quarter start 70.665
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug month start 96.729
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug week start : 115.503
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug day start : 115.51
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter calculated reading : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Meter current reading : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 285.683
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value output of unit factore calculation : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Test unit : kwh
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug State value input for unit factore calculation : 117.372
                                        sourceanalytix.0 2019-05-30 13:51:15.671 debug Object array input for unit factore calculation : {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":284.819,"start_wee
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Jannick_EDV.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Jannick_EDV ENERGY Total","
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","costs":true,"consumption":true,"meter_values":false,"start_meassure":5864,"start_day":115.51,"start_week":115.5
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"_id":"sonoff.0.Waschmaschine.ENERGY_Total","common":{"type":"number","role":"value.power.consumption","read":true,"write":false,"unit":"kWh","name":"Waschmaschine ENERGY Tota
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost year : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost quarter : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost month : 2.04
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost week : 0.00
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated cost day : 0.00
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug cost type .cost.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug objroot sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug year consumed 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter consumed 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug month consumed 7.053
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug week consumed 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug day consumed 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading quarter : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading month : 7.053
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading week : 0.000
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug calculated reading day : 0.000
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Start consumption calculations
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Delivery state set to : .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug year start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug quarter start 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug month start 0.006
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug week start : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug day start : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug reading_start : 0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle meter history : false
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle consumption calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost unit : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Cost basic : 6
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calculation Factor : 0.289
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Handle cost calculations : true
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter calculated reading : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Meter current reading : 7059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State value output of unit factore calculation : 7.059
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Test unit : wh
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State value input for unit factore calculation : "7059"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Object array input for unit factore calculation : {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Case result : Electricity consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object custom content: {"enabled":true,"alias":"","state_type":"kWh_consumption","state_unit":"automatically","costs":true,"consumption":true,"meter_values":false,"start_day":7.059,"start_week"
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug State object content: {"type":"state","common":{"name":"Switch total energy","type":"number","unit":"Wh","min":0,"read":true,"write":false,"role":"value.power.consumption","desc":"Switch total energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Jannick_EDV.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Jannick_EDV__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : sonoff.0.Waschmaschine.ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : sonoff__0__Waschmaschine__ENERGY_Total
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Calc obj root sourceanalytix.0.fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Write calculations for : fritzdect.0.DECT200_087610221797.energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Instance name : sourceanalytix.0
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Initialization finished for : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : consumption
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610221797__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel name : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Create channel id : cost
                                        sourceanalytix.0 2019-05-30 13:51:15.655 debug Parent device : fritzdect__0__DECT200_087610244490__energy
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug Meter Calculation executed
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost year : 9.07
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost quarter : 5.52
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost month : 3.17
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost week : 1.51
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug calculated cost day : 1.39
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug example state string : sourceanalytix.0.fritzdect__0__DECT200_087610244490__energy.cost.01_current_day
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug delivery type .consumption.
                                        sourceanalytix.0 2019-05-30 13:51:15.639 debug cost type .cost.

                                        poste mal ein Bild von deinen Einstellung von sonoff.0.Waschmaschine.ENERGY_Today
                                        versuche mal sonoff.0.Waschmaschine.ENERGY_Today zu Deaktivieren und schau ob die Error Meldung kommt

                                        Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                        1 Antwort Letzte Antwort
                                        0
                                        • tigertim08T Offline
                                          tigertim08T Offline
                                          tigertim08
                                          schrieb am zuletzt editiert von
                                          #654

                                          Hallo zusammen,

                                          den Adapter bekomme ich zwar installiert allerdings fehlen immer noch die Objektdaten. Irgendwo habe ich da einen Denkfehler...

                                          Was muss ich den tun damit der Adapter die Datenpunkte anlegt?

                                          IssiI 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          787

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe