Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • 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

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. [SourceAnalytix 0.4.8-Final] Released !

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    16
    1
    1.8k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    898

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.2k

[SourceAnalytix 0.4.8-Final] Released !

Scheduled Pinned Locked Moved Tester
2.3k Posts 184 Posters 1.2m Views 154 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jensven
    wrote on last edited by
    #1998

    Habe hier die Blitzwolf BW-SHP13 stecker mit zigbee
    hier die Datenpunkte
    source.JPG

    Der Punkt "consumption" ist nicht beschreibbar d.h. er misst fortlaufend.
    Funktioniert der Adapter dann trotzdem korrekt?

    1 Reply Last reply
    0
    • T Offline
      T Offline
      TT-Tom
      wrote on last edited by TT-Tom
      #1999

      @jensven

      Ja. Nicht beschreibbar bedeutet nur, dass du den Wert nicht ohne Sonderrechte ändern kannst. Der Adapter schon. Außerdem holt er ja auch nur den Wert ab aus dem Datenpunkt.

      Gruß Tom
      https://github.com/tt-tom17
      Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

      NSPanel Script Wiki
      https://github.com/joBr99/nspanel-lovelace-ui/wiki

      NSPanel Adapter Wiki
      https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

      1 Reply Last reply
      0
      • nieIPN nieIP

        @wildbill
        Ich habe die letzte Version von gitHub und es erst vor ca. 6 Wochen eingerichtet. Also keine Reste einer alten Version.
        Die Option "vorheriger Zeitraum" gibt es bei meiner Version gar nicht.

        Hier ein Screenshot der betroffenen Punkte, die auf 0,0 bleiben

        Bildschirmfoto 2023-09-03 um 22.49.27.png

        D Offline
        D Offline
        derelvis
        wrote on last edited by derelvis
        #2000

        @nieip @m4rgott

        572385ce-29b8-4236-9511-033304371d0c-image.png

        Das Problem des fehlenden Übertrags der meterReadings in "prevDay, prevWeek, prevMonth, prevYear" kann man wie folgt beheben:

        • folgenden Kommentar in der iobroker/node_modules/iobroker.sourceanalytix/main.js suchen (ca. Zeile 852) und darunter
        							//ToDo: Think / discuss what to do with meter readings
        							// Handle meter reading states
        							// if (this.config.currentYearPrevious) await this.setStateAsync(`${stateID}.currentYear.meterReadings.previousWeek.${weekdays[x]}`, {
        							// 	val: await this.getStateAsync(`${stateID}.currentYear.meterReadings.currentWeek.${weekdays[x]}`),
        							// 	ack: true
        							// })
        
        • folgenden Block einfügen:
        							//derelvis: copy cumulativeReading into prevValue 
        							if (beforeReset.day !== actualDate.day) {
        								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.01_previousDay`);
        							}
        
        							if (beforeReset.week !== actualDate.week) {
        								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.02_previousWeek`);
        							}
        
        							if (beforeReset.month !== actualDate.month) {
        								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.03_previousMonth`);
        							}
        
        							if (beforeReset.quarter !== actualDate.quarter) {
        								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.04_previousQuarter`);
        							}
        
        							if (beforeReset.year !== actualDate.year) {
        								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.05_previousYear`);
        							}
        							//derelvis end
        
        • danach (ca. Zeile 888) sollte es so weitergehen:
        						}
        
        						await this.extendForeignObject(stateID, obj);
        						this.log.info(`Memory values after reset : ${JSON.stringify(this.activeStates[stateID])}`);
        
        • Instanz SourceAnalytics neustarten

        So werden dann auch die MeterReadings aus dem Datenpunkt cumulativeReading (fortlaufender Zählerstand) zu den jeweiligen Zeitpunkten in die prevValues übernommen, wie bei den anderen Kategorien. :-) Läuft bei mir so seit letztem Sonntag:

        0dc837cc-04d9-4955-86bd-06e0149dae2c-image.png

        Wenn man sich 01_previousDay per Signal/Telegramm usw. bei Änderung schicken lässt, sollte man um Mitternacht das erste mal einen Zählerstand bekommen. Praktisch kann man sich so dann auch per history oder influx die jeweils monatlichen oder jährlichen Zählerständer loggen.

        Vielleicht mag es ja mal jemand testen (auf eigene Gefahr) und Rückmeldung geben? ;-)

        M nieIPN 2 Replies Last reply
        0
        • M Offline
          M Offline
          ManfredHi
          wrote on last edited by
          #2001

          Habe heute folgenden Fehler um MItternacht im Logfile gehabt:

          2023-10-18 00:00:00.021 - info: sourceanalytix.1 (4089401) Reset start values for : alias.0.Strom.Steckdosen.AVM.Buero-Computer
          2023-10-18 00:00:00.037 - info: sourceanalytix.1 (4089401) Memory values before reset : {"stateDetails":{"alias":"Büro Computer DECT_087610028328","consumption":true,"costs":true,"deviceName":"alias__0__Strom__Steckdosen__AVM__Buero-Computer","financialCategory":"costs","headCategory":"consumed","meter_values":true,"name":"Büro Computer DECT_087610028328","stateType":"ElectricityDay","stateUnit":"Wh","useUnit":"kWh","deviceResetLogicEnabled":true,"threshold":1},"calcValues":{"cumulativeValue":309.55300000000005,"start_day":308.31699999999995,"start_month":302.44199999999995,"start_quarter":302.44199999999995,"start_week":308.31699999999995,"start_year":198.517,"valueAtDeviceReset":-247.872,"valueAtDeviceInit":null},"prices":{"basicPrice":"6.9960","unitPrice":"0.40634"}}
          2023-10-18 00:00:00.028 - info: sourceanalytix.0 (4089415) Reset start values for : 0_userdata.0.Strom.PV_Eigenverbrauch_Zaehler
          2023-10-18 00:00:00.052 - info: sourceanalytix.0 (4089415) Memory values before reset : {"stateDetails":{"alias":"PV_Eigenverbrauch","consumption":true,"costs":true,"deviceName":"0_userdata__0__Strom__PV_Eigenverbrauch_Zaehler","financialCategory":"earnings","headCategory":"delivered","meter_values":true,"name":"PV_Eigenverbrauch","stateType":"EVN_Durchschnitt_Tag_Freizeit","stateUnit":"Wh","useUnit":"kWh","deviceResetLogicEnabled":true,"threshold":1},"calcValues":{"cumulativeValue":3891.454,"start_day":3884.621,"start_month":3720.657,"start_quarter":3720.657,"start_week":3873.884,"start_year":769.942,"valueAtDeviceReset":0,"valueAtDeviceInit":null},"prices":{"basicPrice":"","unitPrice":"0.338699"}}
          2023-10-18 00:00:00.060 - error: sourceanalytix.0 (4089415) uncaught exception: ENOENT: no such file or directory, open '/opt/iobroker/log/iobroker.2023-10-17.log'
          2023-10-18 00:00:00.061 - error: sourceanalytix.0 (4089415) Error: ENOENT: no such file or directory, open '/opt/iobroker/log/iobroker.2023-10-17.log'
          2023-10-18 00:00:00.061 - error: sourceanalytix.0 (4089415) Exception-Code: ENOENT: ENOENT: no such file or directory, open '/opt/iobroker/log/iobroker.2023-10-17.log'
          2023-10-18 00:00:00.081 - info: sourceanalytix.0 (4089415) SourceAnalytix stopped, now you have to calculate by yourself :'( ...
          2023-10-18 00:00:00.081 - info: sourceanalytix.0 (4089415) terminating
          2023-10-18 00:00:00.082 - warn: sourceanalytix.0 (4089415) Terminated (UNCAUGHT_EXCEPTION): Without reason
          2023-10-18 00:00:00.775 - error: host.iobroker Caught by controller[0]: [Error: ENOENT: no such file or directory, open '/opt/iobroker/log/iobroker.2023-10-17.log'] {
          2023-10-18 00:00:00.790 - error: host.iobroker Caught by controller[0]: errno: -2,
          2023-10-18 00:00:00.790 - error: host.iobroker Caught by controller[0]: code: 'ENOENT',
          2023-10-18 00:00:00.790 - error: host.iobroker Caught by controller[0]: syscall: 'open',
          2023-10-18 00:00:00.790 - error: host.iobroker Caught by controller[0]: path: '/opt/iobroker/log/iobroker.2023-10-17.log'
          2023-10-18 00:00:00.790 - error: host.iobroker Caught by controller[0]: }
          2023-10-18 00:00:00.790 - error: host.iobroker instance system.adapter.sourceanalytix.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
          2023-10-18 00:00:01.209 - info: sourceanalytix.1 (4089401) Memory values after reset : {"stateDetails":{"alias":"Büro Computer DECT_087610028328","consumption":true,"costs":true,"deviceName":"alias__0__Strom__Steckdosen__AVM__Buero-Computer","financialCategory":"costs","headCategory":"consumed","meter_values":true,"name":"Büro Computer DECT_087610028328","stateType":"ElectricityDay","stateUnit":"Wh","useUnit":"kWh","deviceResetLogicEnabled":true,"threshold":1},"calcValues":{"start_day":309.55300000000005,"start_month":302.44199999999995,"start_quarter":302.44199999999995,"start_week":308.31699999999995,"start_year":198.517,"valueAtDeviceInit":null,"valueAtDeviceReset":-247.872,"cumulativeValue":309.55300000000005},"prices":{"basicPrice":"6.9960","unitPrice":"0.40634"}}
          2023-10-18 00:00:01.209 - info: sourceanalytix.1 (4089401) Reset start values for : alias.0.Strom.Steckdosen.AVM.E-Bike
          2023-10-18 00:00:01.210 - info: sourceanalytix.1 (4089401) Memory values before reset : {"stateDetails":{"alias":"e-Bike DECT_116300118353","consumption":true,"costs":true,"deviceName":"alias__0__Strom__Steckdosen__AVM__E-Bike","financialCategory":"costs","headCategory":"consumed","meter_values":true,"name":"e-Bike DECT_116300118353","stateType":"ElectricityDay","stateUnit":"Wh","useUnit":"kWh","deviceResetLogicEnabled":true,"threshold":1},"calcValues":{"cumulativeValue":47.101,"start_day":47.101,"start_month":47.101,"start_quarter":47.101,"start_week":47.101,"start_year":44.631,"valueAtDeviceReset":0,"valueAtDeviceInit":null},"prices":{"basicPrice":"6.9960","unitPrice":"0.40634"}}
          

          56bb76d8-69cb-4ce5-b23c-90eaeeb9d366-image.png

          Da war plötzlich das Logfile vom 17.10. nicht mehr vorhanden. Dadurch ist die Instanz 0 vom SA abgestürzt und es wurden wieder nicht die entsprechenden Werte geschrieben. Musst heute morgen mühsam alles händisch ändern was in dieser Instanz ist, weil es keine Schaltfläche gibt, die die Werte nachträglich entsprechend ändert.

          Das gestrige Logfile hat 0 B.

          Was ist da genau los? Warum beendet SA dann die Instanz, wenn es nicht ins logfile schreiben kann?

          1 Reply Last reply
          0
          • D derelvis

            @nieip @m4rgott

            572385ce-29b8-4236-9511-033304371d0c-image.png

            Das Problem des fehlenden Übertrags der meterReadings in "prevDay, prevWeek, prevMonth, prevYear" kann man wie folgt beheben:

            • folgenden Kommentar in der iobroker/node_modules/iobroker.sourceanalytix/main.js suchen (ca. Zeile 852) und darunter
            							//ToDo: Think / discuss what to do with meter readings
            							// Handle meter reading states
            							// if (this.config.currentYearPrevious) await this.setStateAsync(`${stateID}.currentYear.meterReadings.previousWeek.${weekdays[x]}`, {
            							// 	val: await this.getStateAsync(`${stateID}.currentYear.meterReadings.currentWeek.${weekdays[x]}`),
            							// 	ack: true
            							// })
            
            • folgenden Block einfügen:
            							//derelvis: copy cumulativeReading into prevValue 
            							if (beforeReset.day !== actualDate.day) {
            								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.01_previousDay`);
            							}
            
            							if (beforeReset.week !== actualDate.week) {
            								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.02_previousWeek`);
            							}
            
            							if (beforeReset.month !== actualDate.month) {
            								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.03_previousMonth`);
            							}
            
            							if (beforeReset.quarter !== actualDate.quarter) {
            								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.04_previousQuarter`);
            							}
            
            							if (beforeReset.year !== actualDate.year) {
            								await this.setPreviousValues(`${stateDetails.deviceName}.cumulativeReading`, `${stateDetails.deviceName}.currentYear.meterReadings.05_previousYear`);
            							}
            							//derelvis end
            
            • danach (ca. Zeile 888) sollte es so weitergehen:
            						}
            
            						await this.extendForeignObject(stateID, obj);
            						this.log.info(`Memory values after reset : ${JSON.stringify(this.activeStates[stateID])}`);
            
            • Instanz SourceAnalytics neustarten

            So werden dann auch die MeterReadings aus dem Datenpunkt cumulativeReading (fortlaufender Zählerstand) zu den jeweiligen Zeitpunkten in die prevValues übernommen, wie bei den anderen Kategorien. :-) Läuft bei mir so seit letztem Sonntag:

            0dc837cc-04d9-4955-86bd-06e0149dae2c-image.png

            Wenn man sich 01_previousDay per Signal/Telegramm usw. bei Änderung schicken lässt, sollte man um Mitternacht das erste mal einen Zählerstand bekommen. Praktisch kann man sich so dann auch per history oder influx die jeweils monatlichen oder jährlichen Zählerständer loggen.

            Vielleicht mag es ja mal jemand testen (auf eigene Gefahr) und Rückmeldung geben? ;-)

            M Offline
            M Offline
            ManfredHi
            wrote on last edited by
            #2002

            @derelvis sagte in [SourceAnalytix 0.4.8-Final] Released !:

            Vielleicht mag es ja mal jemand testen (auf eigene Gefahr) und Rückmeldung geben?

            Hab das in der main.js eingetragen. Hat bei der SA Instanz 1 einwandfrei funktioniert. Bei der Instanz 0 nicht, weil plötzlich kein Logfile vom 17.10. da war (siehe meinen Eintrag darüber). Warum das logfile weg war und die SA-Instanz gestoppt hat weiß ich nicht, mit den Einträgen von dir dürfte es nicht zusammenhängen, da es bei der Instanz 1 ja funktioniert hat.

            DutchmanD 1 Reply Last reply
            0
            • D Offline
              D Offline
              derelvis
              wrote on last edited by
              #2003

              @manfredhi sagte in [SourceAnalytix 0.4.8-Final] Released !:

              uncaught exception: ENOENT: no such file or directory, open '/opt/iobroker/log/iobroker.

              Schau mal hier, vor allem der letzte Eintrag. Vielleicht hilft das weiter. Ich hatte den Fall selbst noch nie.
              https://forum.iobroker.net/topic/68247/gelöst-source-analytix-fehlerhaft?_=1697624793036

              @manfredhi sagte in [SourceAnalytix 0.4.8-Final] Released !:

              @derelvis sagte in [SourceAnalytix 0.4.8-Final] Released !:

              Vielleicht mag es ja mal jemand testen (auf eigene Gefahr) und Rückmeldung geben?

              Hab das in der main.js eingetragen. Hat bei der SA Instanz 1 einwandfrei funktioniert. Bei der Instanz 0 nicht, weil plötzlich kein Logfile vom 17.10. da war (siehe meinen Eintrag darüber). Warum das logfile weg war und die SA-Instanz gestoppt hat weiß ich nicht, mit den Einträgen von dir dürfte es nicht zusammenhängen, da es bei der Instanz 1 ja funktioniert hat.

              Cool, freut mich :-)

              1 Reply Last reply
              0
              • M ManfredHi

                @derelvis sagte in [SourceAnalytix 0.4.8-Final] Released !:

                Vielleicht mag es ja mal jemand testen (auf eigene Gefahr) und Rückmeldung geben?

                Hab das in der main.js eingetragen. Hat bei der SA Instanz 1 einwandfrei funktioniert. Bei der Instanz 0 nicht, weil plötzlich kein Logfile vom 17.10. da war (siehe meinen Eintrag darüber). Warum das logfile weg war und die SA-Instanz gestoppt hat weiß ich nicht, mit den Einträgen von dir dürfte es nicht zusammenhängen, da es bei der Instanz 1 ja funktioniert hat.

                DutchmanD Offline
                DutchmanD Offline
                Dutchman
                Developer Most Active Administrators
                wrote on last edited by
                #2004

                @manfredhi sagte in [SourceAnalytix 0.4.8-Final] Released !:

                Hab das in der main.js eingetragen. Hat bei der SA Instanz 1 einwandfrei funktioniert. Bei der Instanz 0 nicht, weil plötzlich kein Logfile vom 17.10. da war (siehe meinen Eintrag darüber). Warum das logfile weg war und die SA-Instanz gestoppt hat weiß ich nicht, mit den Einträgen von dir dürfte es nicht zusammenhängen, da es bei der Instanz 1 ja funktioniert hat.

                das ist leider ein problem des controller wo ich am adapter nichts ändern kan, sporadisch kommt es vor aber was die Ursache genau is weis ich auch nicht

                M 1 Reply Last reply
                1
                • DutchmanD Dutchman

                  @manfredhi sagte in [SourceAnalytix 0.4.8-Final] Released !:

                  Hab das in der main.js eingetragen. Hat bei der SA Instanz 1 einwandfrei funktioniert. Bei der Instanz 0 nicht, weil plötzlich kein Logfile vom 17.10. da war (siehe meinen Eintrag darüber). Warum das logfile weg war und die SA-Instanz gestoppt hat weiß ich nicht, mit den Einträgen von dir dürfte es nicht zusammenhängen, da es bei der Instanz 1 ja funktioniert hat.

                  das ist leider ein problem des controller wo ich am adapter nichts ändern kan, sporadisch kommt es vor aber was die Ursache genau is weis ich auch nicht

                  M Offline
                  M Offline
                  ManfredHi
                  wrote on last edited by
                  #2005

                  @dutchman sagte in [SourceAnalytix 0.4.8-Final] Released !:

                  das ist leider ein problem des controller wo ich am adapter nichts ändern kan, sporadisch kommt es vor aber was die Ursache genau is weis ich auch nicht

                  aber kann man es nicht so ändern, dass deshalb nicht die instanz abstürzt? wenn das logfile nicht da ist, wird halt dann kein eintrag geschrieben. geht das nicht ?

                  DutchmanD 1 Reply Last reply
                  0
                  • M ManfredHi

                    @dutchman sagte in [SourceAnalytix 0.4.8-Final] Released !:

                    das ist leider ein problem des controller wo ich am adapter nichts ändern kan, sporadisch kommt es vor aber was die Ursache genau is weis ich auch nicht

                    aber kann man es nicht so ändern, dass deshalb nicht die instanz abstürzt? wenn das logfile nicht da ist, wird halt dann kein eintrag geschrieben. geht das nicht ?

                    DutchmanD Offline
                    DutchmanD Offline
                    Dutchman
                    Developer Most Active Administrators
                    wrote on last edited by
                    #2006

                    @manfredhi sagte in [SourceAnalytix 0.4.8-Final] Released !:

                    @dutchman sagte in [SourceAnalytix 0.4.8-Final] Released !:

                    das ist leider ein problem des controller wo ich am adapter nichts ändern kan, sporadisch kommt es vor aber was die Ursache genau is weis ich auch nicht

                    aber kann man es nicht so ändern, dass deshalb nicht die instanz abstürzt? wenn das logfile nicht da ist, wird halt dann kein eintrag geschrieben. geht das nicht ?

                    koenntest ja mal ein issue beim controller hinterlegen, die Instanz stürzt ab weil der controller das log nicht schreiben kan das steht lose vom adapter :)

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      Malz1902
                      wrote on last edited by
                      #2007

                      Habe heute vormittag 2 neue atenpunkte eingebunden, seit dem wird mir das Log zugemüllt

                      2023-10-21 14:55:57.542 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:55:57.546 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:55:57.551 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:55:57.556 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:55:57.561 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:55:57.565 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:07.383 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.cumulativeReading" is missing the required property "common.type"
                      2023-10-21 14:56:07.390 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.readingCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:07.396 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:07.409 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.cumulativeReading" is missing the required property "common.type"
                      2023-10-21 14:56:07.410 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:07.457 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.readingCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:07.461 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:07.469 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:07.470 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                      2023-10-21 14:56:07.615 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:07.619 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                      2023-10-21 14:56:07.628 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:07.634 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                      2023-10-21 14:56:07.648 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                      2023-10-21 14:56:07.689 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                      2023-10-21 14:56:07.697 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                      2023-10-21 14:56:07.702 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                      2023-10-21 14:56:07.753 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                      2023-10-21 14:56:07.845 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.deliveredCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:07.857 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                      2023-10-21 14:56:07.860 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:07.874 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                      2023-10-21 14:56:07.879 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:07.889 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.deliveredCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:07.892 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:07.905 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:07.916 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:07.925 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:17.526 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.cumulativeReading" is missing the required property "common.type"
                      2023-10-21 14:56:17.532 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.readingCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:17.538 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:17.548 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:17.560 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:17.576 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                      2023-10-21 14:56:17.588 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                      2023-10-21 14:56:17.597 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.cumulativeReading" is missing the required property "common.type"
                      2023-10-21 14:56:17.601 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                      2023-10-21 14:56:17.609 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.readingCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:17.612 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                      2023-10-21 14:56:17.617 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:17.620 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                      2023-10-21 14:56:17.664 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:17.666 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.deliveredCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:17.674 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:17.679 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:17.686 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                      2023-10-21 14:56:17.731 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:17.734 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                      2023-10-21 14:56:17.739 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                      2023-10-21 14:56:17.742 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                      2023-10-21 14:56:17.749 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                      2023-10-21 14:56:17.795 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                      2023-10-21 14:56:17.799 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.deliveredCumulative" is missing the required property "common.type"
                      2023-10-21 14:56:17.803 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                      2023-10-21 14:56:17.846 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                      2023-10-21 14:56:17.850 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                      
                      M 1 Reply Last reply
                      0
                      • M Malz1902

                        Habe heute vormittag 2 neue atenpunkte eingebunden, seit dem wird mir das Log zugemüllt

                        2023-10-21 14:55:57.542 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:55:57.546 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:55:57.551 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:55:57.556 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:55:57.561 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:55:57.565 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:07.383 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.cumulativeReading" is missing the required property "common.type"
                        2023-10-21 14:56:07.390 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.readingCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:07.396 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:07.409 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.cumulativeReading" is missing the required property "common.type"
                        2023-10-21 14:56:07.410 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:07.457 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.readingCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:07.461 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:07.469 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:07.470 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                        2023-10-21 14:56:07.615 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:07.619 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                        2023-10-21 14:56:07.628 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:07.634 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                        2023-10-21 14:56:07.648 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                        2023-10-21 14:56:07.689 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                        2023-10-21 14:56:07.697 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                        2023-10-21 14:56:07.702 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                        2023-10-21 14:56:07.753 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                        2023-10-21 14:56:07.845 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.deliveredCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:07.857 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                        2023-10-21 14:56:07.860 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:07.874 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                        2023-10-21 14:56:07.879 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:07.889 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.deliveredCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:07.892 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:07.905 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:07.916 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:07.925 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:17.526 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.cumulativeReading" is missing the required property "common.type"
                        2023-10-21 14:56:17.532 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.readingCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:17.538 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:17.548 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:17.560 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.meterReadings.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:17.576 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                        2023-10-21 14:56:17.588 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                        2023-10-21 14:56:17.597 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.cumulativeReading" is missing the required property "common.type"
                        2023-10-21 14:56:17.601 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                        2023-10-21 14:56:17.609 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.readingCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:17.612 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                        2023-10-21 14:56:17.617 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.meterReadings.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:17.620 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                        2023-10-21 14:56:17.664 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:17.666 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.deliveredCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:17.674 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.meterReadings.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:17.679 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:17.686 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.01_currentDay" is missing the required property "common.type"
                        2023-10-21 14:56:17.731 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:17.734 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.02_currentWeek" is missing the required property "common.type"
                        2023-10-21 14:56:17.739 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_a.2023.delivered.months.10_October" is missing the required property "common.type"
                        2023-10-21 14:56:17.742 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.03_currentMonth" is missing the required property "common.type"
                        2023-10-21 14:56:17.749 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.04_currentQuarter" is missing the required property "common.type"
                        2023-10-21 14:56:17.795 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.05_currentYear" is missing the required property "common.type"
                        2023-10-21 14:56:17.799 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.deliveredCumulative" is missing the required property "common.type"
                        2023-10-21 14:56:17.803 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.currentYear.delivered.currentWeek.06_Saturday" is missing the required property "common.type"
                        2023-10-21 14:56:17.846 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.weeks.42" is missing the required property "common.type"
                        2023-10-21 14:56:17.850 - warn: sourceanalytix.0 (668478) Object of state "sourceanalytix.0.alias__0__strom__pv__erzeugung_string_b.2023.delivered.months.10_October" is missing the required property "common.type"
                        
                        M Offline
                        M Offline
                        Maxtor62
                        wrote on last edited by Maxtor62
                        #2008

                        @malz1902

                        Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                        Wenn Du > 0.4.14 bist gehe eine Version runter.

                        Wer meint er ist was, hat aufgehört was zu werden

                        M 1 Reply Last reply
                        0
                        • M Maxtor62

                          @malz1902

                          Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                          Wenn Du > 0.4.14 bist gehe eine Version runter.

                          M Offline
                          M Offline
                          Malz1902
                          wrote on last edited by Malz1902
                          #2009

                          @maxtor62 said in [SourceAnalytix 0.4.8-Final] Released !:

                          @malz1902

                          Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                          Wenn Du > 0.4.14 bist gehe eine Version runter.

                          v0.4.15-alpha.0 war eine Version.

                          Kann aber keine ndere Version installieren
                          686d0bea-1e15-4571-881c-e46a1fc379e7-grafik.png

                          DutchmanD 1 Reply Last reply
                          0
                          • M Malz1902

                            @maxtor62 said in [SourceAnalytix 0.4.8-Final] Released !:

                            @malz1902

                            Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                            Wenn Du > 0.4.14 bist gehe eine Version runter.

                            v0.4.15-alpha.0 war eine Version.

                            Kann aber keine ndere Version installieren
                            686d0bea-1e15-4571-881c-e46a1fc379e7-grafik.png

                            DutchmanD Offline
                            DutchmanD Offline
                            Dutchman
                            Developer Most Active Administrators
                            wrote on last edited by
                            #2010

                            @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                            @maxtor62 said in [SourceAnalytix 0.4.8-Final] Released !:

                            @malz1902

                            Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                            Wenn Du > 0.4.14 bist gehe eine Version runter.

                            v0.4.15-alpha.0 war eine Version.

                            Kann aber keine ndere Version installieren
                            686d0bea-1e15-4571-881c-e46a1fc379e7-grafik.png

                            Installieren mal über git, hatte habe den Fox noch nicht auf npm released

                            M 1 Reply Last reply
                            0
                            • DutchmanD Dutchman

                              @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                              @maxtor62 said in [SourceAnalytix 0.4.8-Final] Released !:

                              @malz1902

                              Welche Version ist installiert? Hatte auch diesbezüglich ein Issue auf Git gemacht. Wurde eben geschlossen.
                              Wenn Du > 0.4.14 bist gehe eine Version runter.

                              v0.4.15-alpha.0 war eine Version.

                              Kann aber keine ndere Version installieren
                              686d0bea-1e15-4571-881c-e46a1fc379e7-grafik.png

                              Installieren mal über git, hatte habe den Fox noch nicht auf npm released

                              M Offline
                              M Offline
                              Malz1902
                              wrote on last edited by
                              #2011

                              @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                              M DutchmanD 2 Replies Last reply
                              0
                              • M Malz1902

                                @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                                M Offline
                                M Offline
                                Malz1902
                                wrote on last edited by
                                #2012

                                Ich würde gerne von meiner PV Anlage die Erzeugung loggen. Das Problem ist die Daten kommen per Modbus und sobald keine Daten mehr kommen, da dunkel steht im Datenpunkt -2147483648. Das loggt SA natürlich auch mit, gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                M S 2 Replies Last reply
                                0
                                • M Malz1902

                                  Ich würde gerne von meiner PV Anlage die Erzeugung loggen. Das Problem ist die Daten kommen per Modbus und sobald keine Daten mehr kommen, da dunkel steht im Datenpunkt -2147483648. Das loggt SA natürlich auch mit, gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                  M Offline
                                  M Offline
                                  ManfredHi
                                  wrote on last edited by
                                  #2013

                                  @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                  Das loggt SA natürlich auch mit, gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                  Kann man mit einem zusätzlichen Datenpunkt (den man dann in SA loggt) und einem Script machen oder? Mit dem Script übergibt man dem Datenpunkt den wert vom PV-Datenpunkt. Und sofern dieser unter 0 ist übergibt man den Wert 0.

                                  1 Reply Last reply
                                  0
                                  • M Malz1902

                                    @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                                    DutchmanD Offline
                                    DutchmanD Offline
                                    Dutchman
                                    Developer Most Active Administrators
                                    wrote on last edited by
                                    #2014

                                    @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                    @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                                    das währe die letzte NPM version, auf git liegt die 0.4.15-alpha.1

                                    M 1 Reply Last reply
                                    0
                                    • M Malz1902

                                      Ich würde gerne von meiner PV Anlage die Erzeugung loggen. Das Problem ist die Daten kommen per Modbus und sobald keine Daten mehr kommen, da dunkel steht im Datenpunkt -2147483648. Das loggt SA natürlich auch mit, gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                      S Online
                                      S Online
                                      SmartHomer 0
                                      wrote on last edited by SmartHomer 0
                                      #2015

                                      @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                      gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                      Ich habe es zwar noch nicht genutzt/gebraucht - aber schau Dir mal diese benutzerdefinierten Einstellungen im Adapter an:

                                      5a2d4975-b06b-4e3f-b50e-1872243dfa8d-grafik.png

                                      M 1 Reply Last reply
                                      0
                                      • DutchmanD Dutchman

                                        @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                        @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                                        das währe die letzte NPM version, auf git liegt die 0.4.15-alpha.1

                                        M Offline
                                        M Offline
                                        Malz1902
                                        wrote on last edited by
                                        #2016

                                        @dutchman said in [SourceAnalytix 0.4.8-Final] Released !:

                                        @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                        @dutchman npm install iobroker.sourceanalytix@0.4.12 würde auf 0.4.12 gehen? passt das?

                                        das währe die letzte NPM version, auf git liegt die 0.4.15-alpha.1

                                        okay mit der Version kommt o.g. Fehler auch nicht mehr

                                        1 Reply Last reply
                                        0
                                        • S SmartHomer 0

                                          @malz1902 sagte in [SourceAnalytix 0.4.8-Final] Released !:

                                          gibt es irgendwie eine Möglichkeit das nur Werte größe/gleich null für gewählte Datenpunkte geloggt werden?

                                          Ich habe es zwar noch nicht genutzt/gebraucht - aber schau Dir mal diese benutzerdefinierten Einstellungen im Adapter an:

                                          5a2d4975-b06b-4e3f-b50e-1872243dfa8d-grafik.png

                                          M Offline
                                          M Offline
                                          Malz1902
                                          wrote on last edited by
                                          #2017

                                          @smarthomer-0 das loggt ja nur später die Daten. Das muss ja vorher schon passieren. Werde es so machen wie @ManfredHi vorgeschlagen hat testen

                                          L 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          701

                                          Online

                                          32.6k

                                          Users

                                          82.2k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe