Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter drops-weather 1.2.x

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    Test Adapter drops-weather 1.2.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • Chris76e
      Chris76e last edited by Chris76e

      Warum läuft der bei mir nicht mehr? Habe jetzt schon mehrmals alles gelöscht und neu installiert. iob neugestartet, den fix ausgeführt. Aber immer das gleiche.
      Bei den anderen logs war der timeout bei

      60000
      

      bei mir immer

      TimeoutError: Navigation timeout of 30000 ms exceeded
      

      Andere sprache getest, andere Stadt, immer der selbe Fehler....

      drops-weather.0	2025-06-05 17:06:22.578	info	Terminated (NO_ERROR): Without reason
      drops-weather.0	2025-06-05 17:06:22.529	debug	pages 2
      drops-weather.0	2025-06-05 17:06:22.520	debug	destroy browser
      drops-weather.0	2025-06-05 17:06:22.519	warn	TimeoutError: Navigation timeout of 30000 ms exceeded
      drops-weather.0	2025-06-05 17:05:52.366	debug	creating new page ...
      drops-weather.0	2025-06-05 17:05:52.364	debug	Reading data from : https://www.niederschlagsradar.de/de-de/city/xxx
      drops-weather.0	2025-06-05 17:05:51.951	debug	puppeteer.lauch invoked with {"headless":true,"defaultViewport":null,"userDataDir":"/dev/null","args":["--periodic-task","--no-sandbox","--disable-setuid-sandbox","--disable-dev-shm-usage","--disable-accelerated-2d-canvas","--no-first-run","--no-zygote","--single-process","--disable-gpu","--ignore-certificate-errors","--disable-extensions","--disable-component-extensions-with-background-pages","--disable-default-apps","--mute-audio","--no-default-browser-check","--autoplay-policy=user-gesture-required","--disable-background-timer-throttling","--disable-backgrounding-occluded-windows","--disable-notifications","--disable-background-networking","--disable-breakpad","--disable-component-update","--disable-domain-reliability","--disable-sync"]}
      drops-weather.0	2025-06-05 17:05:51.949	debug	browserPath set to puppeteer default
      drops-weather.0	2025-06-05 17:05:51.949	debug	browserMode set to automatic, running on linux / x64
      drops-weather.0	2025-06-05 17:05:51.932	info	starting. Version 1.2.4 in /opt/iobroker/node_modules/iobroker.drops-weather, node: v20.19.2, js-controller: 7.0.6
      drops-weather.0	2025-06-05 17:01:29.256	info	Terminated (NO_ERROR): Without reason
      drops-weather.0	2025-06-05 17:01:29.254	debug	pages 2
      drops-weather.0	2025-06-05 17:01:29.244	debug	destroy browser
      drops-weather.0	2025-06-05 17:01:29.243	warn	TimeoutError: Navigation timeout of 30000 ms exceeded
      drops-weather.0	2025-06-05 17:00:59.089	debug	creating new page ...
      drops-weather.0	2025-06-05 17:00:59.089	debug	Reading data from : https://www.niederschlagsradar.de/de-de/city/xxx
      drops-weather.0	2025-06-05 17:00:58.482	debug	puppeteer.lauch invoked with {"headless":true,"defaultViewport":null,"userDataDir":"/dev/null","args":["--periodic-task","--no-sandbox","--disable-setuid-sandbox","--disable-dev-shm-usage","--disable-accelerated-2d-canvas","--no-first-run","--no-zygote","--single-process","--disable-gpu","--ignore-certificate-errors","--disable-extensions","--disable-component-extensions-with-background-pages","--disable-default-apps","--mute-audio","--no-default-browser-check","--autoplay-policy=user-gesture-required","--disable-background-timer-throttling","--disable-backgrounding-occluded-windows","--disable-notifications","--disable-background-networking","--disable-breakpad","--disable-component-update","--disable-domain-reliability","--disable-sync"]}
      drops-weather.0	2025-06-05 17:00:58.480	debug	browserPath set to puppeteer default
      drops-weather.0	2025-06-05 17:00:58.478	debug	browserMode set to automatic, running on linux / x64
      drops-weather.0	2025-06-05 17:00:58.448	info	starting. Version 1.2.4 in /opt/iobroker/node_modules/iobroker.drops-weather, node: v20.19.2, js-controller: 7.0.6
      
      mcm1957 1 Reply Last reply Reply Quote 0
      • mcm1957
        mcm1957 @Chris76e last edited by mcm1957

        @chris76e
        Schau ob https://www.niederschlagsradar.de/de-de/city/xxx bei dir erreichbar ist.

        Dass bei dir das timeout 30s beträgt ist überraschend. Im code steht hardcoded 60000.
        https://github.com/iobroker-community-adapters/ioBroker.drops-weather/blob/d2e17ec6cddd59c7cad2b96530c18615393cbe2c/main.js#L27C14-L27C25

        Chris76e 1 Reply Last reply Reply Quote 0
        • Chris76e
          Chris76e @mcm1957 last edited by Chris76e

          @mcm1957

          der link ist erreichbar. Wie entferne ich den Apater am besten für eine neuinstallation? Gibt es vieleicht nen befehl über die Commando Zeile damit wirklich alles entfernt wird?

          Das ist die main.js bei meinem System

          'use strict';
          
          const utils = require('@iobroker/adapter-core');
          const os = require('node:os');
          
          const puppeteer = require('puppeteer-extra');
          const StealthPlugin = require('puppeteer-extra-plugin-stealth');
          
          // add the stealth plugin
          puppeteer.use(StealthPlugin());
          
          let watchdog = null;
          let browser = null;
          
          class DropsWeather extends utils.Adapter {
              /**
               * @param options ioBroker optionen
               */
              constructor(options) {
                  super({
                      ...options,
                      name: 'drops-weather',
                  });
          
                  this.mainURLEN = 'https://www.meteox.com/';
                  this.mainURLDE = 'https://www.niederschlagsradar.de/';
                  this.pageTimeout = 60000;
          
                  this.on('ready', this.onReady.bind(this));
                  this.on('unload', this.onUnload.bind(this));
          

          Screenshot 2025-06-05 190117.png

          1 Reply Last reply Reply Quote 0
          • sigi234
            sigi234 Forum Testing Most Active @mcm1957 last edited by

            @mcm1957

            Hallo,

            neue Meldungen:

            drops-weather.0
            2025-06-06 03:33:16.154	error	Network.enable timed out. Increase the 'protocolTimeout' setting in launch/connect calls for a higher timeout if needed.
            
            drops-weather.0
            2025-06-06 03:33:16.154	error	ProtocolError: Network.enable timed out. Increase the 'protocolTimeout' setting in launch/connect calls for a higher timeout if needed. at <instance_members_initializer> (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\common\CallbackRegistry.js:102:14) at new Callback (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\common\CallbackRegistry.js:106:16) at CallbackRegistry.create (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\common\CallbackRegistry.js:24:26) at Connection._rawSend (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\Connection.js:99:26) at CdpCDPSession.send (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\CdpSession.js:73:33) at NetworkManager.addClient (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\NetworkManager.js:62:20) at FrameManager.initialize (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\FrameManager.js:174:38) at #initialize (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\Page.js:291:36) at CdpPage._create (C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\Page.js:103:31) at C:\SmartHome\node_modules\puppeteer-core\lib\cjs\puppeteer\cdp\Target.js:205:42
            
            drops-weather.0
            2025-06-06 03:33:16.154	error	unhandled promise rejection: Network.enable timed out. Increase the 'protocolTimeout' setting in launch/connect calls for a higher timeout if needed.
            
            drops-weather.0
            2025-06-06 03:33:16.153	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
            
            drops-weather.0
            2025-06-06 03:33:16.149	warn	ProtocolError: Network.enable timed out. Increase the 'protocolTimeout' setting in launch/connect calls for a higher timeout if needed.
            
            1 Reply Last reply Reply Quote 0
            • icebear
              icebear last edited by icebear

              und bei mir war erst alles gut, aber jetzt kommt andauernd wieder:

              
              drops-weather.0
              2025-06-06 07:50:46.756	error	Error: DB closed
              
              drops-weather.0
              2025-06-06 07:50:46.755	error	Error: DB closed
              
              drops-weather.0
              2025-06-06 07:50:46.748	warn	get state error: Connection is closed.
              
              drops-weather.0
              2025-06-06 07:50:46.747	warn	Could not perform strict object check of state drops-weather.0.data_1h.chartRain: DB closed
              
              drops-weather.0
              2025-06-06 07:50:46.746	warn	get state error: Connection is closed.
              
              drops-weather.0
              2025-06-06 07:50:46.746	warn	Could not perform strict object check of state drops-weather.0.data_5min.chartRain: DB closed
              
              drops-weather.0
              2025-06-06 07:50:46.602	warn	get state error: Connection is closed.
              
              drops-weather.0
              2025-06-06 07:50:46.501	warn	get state error: Connection is closed.
              
              drops-weather.0
              2025-06-06 07:50:45.763	info	Terminated (NO_ERROR): Without reason
              

              deinstallieren und neu installieren hab ich schon gemacht, Language hab ich trotz neu Installation auch nochmal von 'de' auf 'en' und wieder zurück gestellt, ändert aber nix.

              EDIT:

              Hier noch die Ausgabe vom Debug-Mode:

              drops-weather.0
              2025-06-06 08:11:10.354	error	Error: DB closed
              
              drops-weather.0
              2025-06-06 08:11:10.353	error	Error: DB closed
              
              drops-weather.0
              2025-06-06 08:11:10.351	debug	redis get drops-weather.0.data_1h.chartRain, error - DB closed
              
              drops-weather.0
              2025-06-06 08:11:10.350	debug	redis get drops-weather.0.data_5min.chartRain, error - Connection is closed.
              
              drops-weather.0
              2025-06-06 08:11:10.342	debug	Rain (data_1h): [{"label":"10:00","value":"0"},{"label":"11:00","value":"0"},{"label":"12:00","value":"0"},{"label":"13:00","value":"0"},{"label":"14:00","value":"0"},{"label":"15:00","value":"0.1"},{"label":"16:00","value":"0"},{"label":"17:00","value":"0.3"},{"label":"18:00","value":"0.1"},{"label":"19:00","value":"0"},{"label":"20:00","value":"0.1"},{"label":"21:00","value":"0"},{"label":"22:00","value":"0.1"},{"label":"23:00","value":"0"},{"label":"00:00","value":"0"},{"label":"01:00","value":"0"},{"label":"02:00","value":"0"},{"label":"03:00","value":"0"},{"label":"04:00","value":"0"},{"label":"05:00","value":"0.2"},{"label":"06:00","value":"0.3"},{"label":"07:00","value":"0.1"},{"label":"08:00","value":"0.1"},{"label":"09:00","value":"0.2"}]
              
              drops-weather.0
              2025-06-06 08:11:10.319	warn	get state error: Connection is closed.
              
              drops-weather.0
              2025-06-06 08:11:10.314	debug	Rain (data_5min): [{"label":"08:10","value":"0"},{"label":"08:15","value":"0"},{"label":"08:20","value":"0"},{"label":"08:25","value":"0"},{"label":"08:30","value":"0"},{"label":"08:35","value":"0"},{"label":"08:40","value":"0"},{"label":"08:45","value":"0"},{"label":"08:50","value":"0"},{"label":"08:55","value":"0"},{"label":"09:00","value":"0"},{"label":"09:05","value":"0"},{"label":"09:10","value":"0"},{"label":"09:15","value":"0"},{"label":"09:20","value":"0"},{"label":"09:25","value":"0"},{"label":"09:30","value":"0"},{"label":"09:35","value":"0"},{"label":"09:40","value":"0"},{"label":"09:45","value":"0"},{"label":"09:50","value":"0"},{"label":"09:55","value":"0"},{"label":"10:00","value":"0"},{"label":"10:05","value":"0"},{"label":"10:10","value":"0"},{"label":"10:15","value":"0"},{"label":"10:20","value":"0"},{"label":"10:25","value":"0"},{"label":"10:30","value":"0"},{"label":"10:35","value":"0"},{"label":"10:40","value":"0"},{"label":"10:45","value":"0"},{"label":"10:50","value":"0"},{"label":"10:55","value":"0"},{"label":"11:00","value":"0"},{"label":"11:05","value":"0"},{"label":"11:10","value":"0"},{"label":"11:15","value":"0"}]
              
              host.iobroker
              2025-06-06 08:11:10.489	info	instance system.adapter.drops-weather.0 having pid 26365 terminated with code 0 (NO_ERROR)
              
              drops-weather.0
              2025-06-06 08:11:09.536	info	Terminated (NO_ERROR): Without reason
              
              drops-weather.0
              2025-06-06 08:11:09.173	debug	pages 2
              
              drops-weather.0
              2025-06-06 08:11:09.141	debug	destroy browser
              
              drops-weather.0
              2025-06-06 08:11:09.135	debug	creating 1 hour states
              
              drops-weather.0
              2025-06-06 08:11:09.134	debug	creating 5 min states
              
              drops-weather.0
              2025-06-06 08:11:09.134	debug	weatherData found
              
              drops-weather.0
              2025-06-06 08:11:09.131	debug	got labeltext "Es bleibt vorläufig trocken"
              
              drops-weather.0
              2025-06-06 08:11:09.127	debug	got scriptContents "[""," document.addEventListener(\"DOMContentLoaded\", () =>"," RainGraph.create({"," id: 0,"," series: {\"2h\":{\"data\":[{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:10:00Z\",\"timestamp\":1749190200},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:15:00Z\",\"timestamp\":1749190500},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:20:00Z\",\"timestamp\":1749190800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:25:00Z\",\"timestamp\":1749191100},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:30:00Z\",\"timestamp\":1749191400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:35:00Z\",\"timestamp\":1749191700},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:40:00Z\",\"timestamp\":1749192000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:45:00Z\",\"timestamp\":1749192300},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:50:00Z\",\"timestamp\":1749192600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T06:55:00Z\",\"timestamp\":1749192900},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:00:00Z\",\"timestamp\":1749193200},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:05:00Z\",\"timestamp\":1749193500},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:10:00Z\",\"timestamp\":1749193800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:15:00Z\",\"timestamp\":1749194100},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:20:00Z\",\"timestamp\":1749194400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:25:00Z\",\"timestamp\":1749194700},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:30:00Z\",\"timestamp\":1749195000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:35:00Z\",\"timestamp\":1749195300},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:40:00Z\",\"timestamp\":1749195600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:45:00Z\",\"timestamp\":1749195900},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:50:00Z\",\"timestamp\":1749196200},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T07:55:00Z\",\"timestamp\":1749196500},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:00:00Z\",\"timestamp\":1749196800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:05:00Z\",\"timestamp\":1749197100},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:10:00Z\",\"timestamp\":1749197400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:15:00Z\",\"timestamp\":1749197700},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:20:00Z\",\"timestamp\":1749198000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:25:00Z\",\"timestamp\":1749198300},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:30:00Z\",\"timestamp\":1749198600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:35:00Z\",\"timestamp\":1749198900},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:40:00Z\",\"timestamp\":1749199200},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:45:00Z\",\"timestamp\":1749199500},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:50:00Z\",\"timestamp\":1749199800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:55:00Z\",\"timestamp\":1749200100},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T09:00:00Z\",\"timestamp\":1749200400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T09:05:00Z\",\"timestamp\":1749200700},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T09:10:00Z\",\"timestamp\":1749201000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T09:15:00Z\",\"timestamp\":1749201300}],\"daypart\":[{\"precipitationrate\":0.03,\"time\":\"2025-06-06T05:00:00Z\",\"timestamp\":1749186000,\"weathericon\":[1,0,-1,-1,0,-1,-1,-1,-1]},{\"precipitationrate\":0.04,\"time\":\"2025-06-06T06:00:00Z\",\"timestamp\":1749189600,\"weathericon\":[1,0,-1,-1,0,-1,-1,-1,-1]},{\"precipitationrate\":0.0,\"time\":\"2025-06-06T07:00:00Z\",\"timestamp\":1749193200,\"weathericon\":[0,0,-1,-1,-1,-1,-1,-1,-1]},{\"precipitationrate\":0.0,\"time\":\"2025-06-06T08:00:00Z\",\"timestamp\":1749196800,\"weathericon\":[0,0,-1,-1,-1,-1,-1,-1,-1]},{\"precipitationrate\":0.0,\"time\":\"2025-06-06T09:00:00Z\",\"timestamp\":1749200400,\"weathericon\":[0,0,-1,-1,-1,-1,-1,-1,-1]}],\"nowcastmessage\":{\"de\":{\"valuekind\":3},\"el\":{\"valuekind\":3},\"en\":{\"valuekind\":3},\"es\":{\"valuekind\":3},\"fr\":{\"valuekind\":3},\"hr\":{\"valuekind\":3},\"hu\":{\"valuekind\":3},\"ispush\":{\"valuekind\":4},\"it\":{\"valuekind\":3},\"nl\":{\"valuekind\":3},\"pl\":{\"valuekind\":3},\"pt\":{\"valuekind\":3},\"sv\":{\"valuekind\":3},\"tags\":{\"valuekind\":2},\"tr\":{\"valuekind\":3}},\"summary\":{\"available\":true,\"latitude\":50.5,\"longitude\":6.86,\"quadindex\":\"BCACADCABDBAAAC\",\"source\":\"radar-nl\",\"timestamp\":1749189600}},\"24h\":{\"data\":[{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T08:00:00Z\",\"timestamp\":1749196800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T09:00:00Z\",\"timestamp\":1749200400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T10:00:00Z\",\"timestamp\":1749204000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T11:00:00Z\",\"timestamp\":1749207600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T12:00:00Z\",\"timestamp\":1749211200},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T13:00:00Z\",\"timestamp\":1749214800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T14:00:00Z\",\"timestamp\":1749218400},{\"lightningclass\":-1,\"precipitationrate\":0.3,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T15:00:00Z\",\"timestamp\":1749222000},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T16:00:00Z\",\"timestamp\":1749225600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T17:00:00Z\",\"timestamp\":1749229200},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T18:00:00Z\",\"timestamp\":1749232800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T19:00:00Z\",\"timestamp\":1749236400},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T20:00:00Z\",\"timestamp\":1749240000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T21:00:00Z\",\"timestamp\":1749243600},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T22:00:00Z\",\"timestamp\":1749247200},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-06T23:00:00Z\",\"timestamp\":1749250800},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T00:00:00Z\",\"timestamp\":1749254400},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T01:00:00Z\",\"timestamp\":1749258000},{\"lightningclass\":-1,\"precipitationrate\":0.0,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T02:00:00Z\",\"timestamp\":1749261600},{\"lightningclass\":-1,\"precipitationrate\":0.2,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T03:00:00Z\",\"timestamp\":1749265200},{\"lightningclass\":-1,\"precipitationrate\":0.3,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T04:00:00Z\",\"timestamp\":1749268800},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T05:00:00Z\",\"timestamp\":1749272400},{\"lightningclass\":-1,\"precipitationrate\":0.1,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T06:00:00Z\",\"timestamp\":1749276000},{\"lightningclass\":-1,\"precipitationrate\":0.2,\"precipitationtype\":\"rain\",\"time\":\"2025-06-07T07:00:00Z\",\"timestamp\":1749279600}],\"daypart\":null,\"nowcastmessage\":{\"de\":{\"valuekind\":3},\"en\":{\"valuekind\":3},\"nl\":{\"valuekind\":3}},\"summary\":{\"available\":true,\"latitude\":50.504,\"longitude\":6.855,\"quadindex\":\"BCACADCABDABB\",\"source\":\"weathercomputer\",\"timestamp\":1749190261}}},"," timezoneOffset: 120,"," locals: {\"labels\":[[0,\"trocken\"],[0.1,\"Nieselregen\"],[1,\"leichter Regen\"],[2,\"Starkregen\"]],\"language\":\"de\",\"strings\":{\"unavailable\":\"Etwas ist schief gelaufen\",\"mmph\":\"mm pro Std.\",\"now\":\"Jetzt\"}} ?? [],"," timezone: \"Europe/Berlin\","," show2h: true,"," show24h: true,"," sendEvents: \"False\","," is3HourRadar: \"True\","," useUserLocation: \"False\","," show24Default: \"False\","," })"," );",""]"
              
              drops-weather.0
              2025-06-06 08:11:09.121	debug	domcontent loaded, evaluate page
              
              drops-weather.0
              2025-06-06 08:11:00.788	debug	creating new page ...
              
              drops-weather.0
              2025-06-06 08:11:00.786	debug	Reading data from : https://www.niederschlagsradar.de/de-de/city/2821520
              
              drops-weather.0
              2025-06-06 08:10:59.356	debug	puppeteer.lauch invoked with {"headless":true,"defaultViewport":null,"userDataDir":"/dev/null","args":["--periodic-task","--no-sandbox","--disable-setuid-sandbox","--disable-dev-shm-usage","--disable-accelerated-2d-canvas","--no-first-run","--no-zygote","--single-process","--disable-gpu","--ignore-certificate-errors","--disable-extensions","--disable-component-extensions-with-background-pages","--disable-default-apps","--mute-audio","--no-default-browser-check","--autoplay-policy=user-gesture-required","--disable-background-timer-throttling","--disable-backgrounding-occluded-windows","--disable-notifications","--disable-background-networking","--disable-breakpad","--disable-component-update","--disable-domain-reliability","--disable-sync"]}
              
              drops-weather.0
              2025-06-06 08:10:59.355	debug	browserPath set to puppeteer default
              
              drops-weather.0
              2025-06-06 08:10:59.354	debug	browserMode set to automatic, running on linux / x64
              
              drops-weather.0
              2025-06-06 08:10:59.323	info	starting. Version 1.2.4 in /opt/iobroker/node_modules/iobroker.drops-weather, node: v20.16.0, js-controller: 7.0.6
              
              1 Reply Last reply Reply Quote 0
              • M
                Marco 3 last edited by

                Mal eine Frage zum Datenumfang.

                Ist es eventuell geplant die Wind Richtung und Windstärke mit einzufangen?

                mcm1957 1 Reply Last reply Reply Quote 0
                • mcm1957
                  mcm1957 @Marco 3 last edited by

                  @marco-3 said in Test Adapter drops-weather 1.2.x:

                  Mal eine Frage zum Datenumfang.

                  Ist es eventuell geplant die Wind Richtung und Windstärke mit einzufangen?

                  Erstell für Erweiterungswünsche gener ein Issue.

                  ABER - solange der Adapeter immer wieder merkbare Stabilitätsprobleme zeigt muss man überlegen wieviel Aufwand man da noch reinsteckt. Leider steht ja kein definiertes API zur Verfügung sondern es muss bzw. wird versucht die Webseite zu scrapen - was schon be geringen Änderungen der Webseite zu Stabilitätsproblemen und Anpassungsbedarf führt.

                  1 Reply Last reply Reply Quote 0
                  • E
                    emil70 last edited by

                    Habe es mal unter Docker auf Synologie aufgespielt

                    Fehlermeldung

                    drops-weather.0
                    	2025-08-04 18:54:08.665	error	unhandled promise rejection: Cannot read properties of null (reading 'pages')
                    drops-weather.0
                    	2025-08-04 18:54:08.665	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                    drops-weather.0
                    	2025-08-04 18:54:08.664	warn	TypeError: Cannot read properties of null (reading 'newPage')
                    drops-weather.0
                    	2025-08-04 18:54:08.662	warn	setTimeout called, but adapter is shutting down
                    drops-weather.0
                    	2025-08-04 18:54:08.661	error	error launching browser undefined - Error: Failed to launch the browser process!/opt/iobroker/.cache/puppeteer/chrome/linux-138.0.7204.168/chrome-linux64/chrome: error while loading shared libraries: libnspr4.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://pptr.dev/troubleshooting
                    drops-weather.0
                    	2025-08-04 18:54:08.651	error	Cannot read properties of null (reading 'pages')
                    
                    PlatformBetriebssystem:linux
                    Architektur:x64
                    CPUs:4
                    Geschwindigkeit:2197 MHz
                    Modell:Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
                    RAM:11.5 GB
                    System-Betriebszeit:2 T. 19:58:12
                    Node.js:v20.18.2
                    Zeit:1754276673997
                    Zeitversatz:-120
                    NPM:10.8.2
                    Adapter-Anzahl:572
                    Datenträgergröße:3572.6 GB
                    Freier Festplattenspeicher:2158.0 GB
                    Aktive Instanzen:29
                    Pfad:/opt/iobroker/
                    Betriebszeit:2 T. 19:08:42
                    aktiv:true
                    _nodeCurrent:20.18.2
                    _nodeNewest:20.19.4
                    _nodeNewestNext:20.19.4
                    _npmCurrent:10.8.2
                    _npmNewest:10.8.2
                    _npmNewestNext:10.8.2
                    
                    

                    Bekommt man das da gelöst??

                    1 Reply Last reply Reply Quote 0
                    • David G.
                      David G. last edited by David G.

                      @emil70

                      Selbe bei mir.

                      v7.6.17
                      
                      99+
                      99+
                      Log-Größe: 1.4 KB
                      
                      drops-weather.0
                      Zeit
                      debug
                      Nachricht
                      
                      host.iobroker
                      2025-08-04 19:15:44.761	info	instance system.adapter.drops-weather.0 in version "1.2.7" (non-npm: iobroker-community-adapters/ioBroker.drops-weather) started with pid 108752
                      
                      host.iobroker
                      2025-08-04 19:15:44.755	info	instance scheduled system.adapter.drops-weather.0 */5 * * * *
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	error	Cannot read properties of null (reading 'pages')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	error	TypeError: Cannot read properties of null (reading 'pages') at DropsWeather.destroyBrowser (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:298:37) at DropsWeather.readDataFromServer (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:149:18) at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	error	unhandled promise rejection: Cannot read properties of null (reading 'pages')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	warn	TypeError: Cannot read properties of null (reading 'newPage')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	warn	setTimeout called, but adapter is shutting down
                      
                      drops-weather.0
                      2025-08-04 19:15:45.981	error	error launching browser undefined - Error: Failed to launch the browser process! /home/iobroker/.cache/puppeteer/chrome/linux-138.0.7204.168/chrome-linux64/chrome: error while loading shared libraries: libnspr4.so: cannot open shared object file: No such file or directory TROUBLESHOOTING: https://pptr.dev/troubleshooting
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	error	Cannot read properties of null (reading 'pages')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	error	TypeError: Cannot read properties of null (reading 'pages') at DropsWeather.destroyBrowser (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:298:37) at DropsWeather.readDataFromServer (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:149:18) at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	error	unhandled promise rejection: Cannot read properties of null (reading 'pages')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	warn	TypeError: Cannot read properties of null (reading 'newPage')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	warn	setTimeout called, but adapter is shutting down
                      
                      drops-weather.0
                      2025-08-04 19:15:45.977	error	error launching browser undefined - Error: Failed to launch the browser process! /home/iobroker/.cache/puppeteer/chrome/linux-138.0.7204.168/chrome-linux64/chrome: error while loading shared libraries: libnspr4.so: cannot open shared object file: No such file or directory TROUBLESHOOTING: https://pptr.dev/troubleshooting
                      
                      drops-weather.0
                      2025-08-04 19:15:45.973	error	Cannot read properties of null (reading 'pages')
                      
                      drops-weather.0
                      2025-08-04 19:15:45.973	error	TypeError: Cannot read properties of null (reading 'pages') at DropsWeather.destroyBrowser (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:298:37) at DropsWeather.readDataFromServer (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:149:18) at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
                      
                      bash                                                                                        Script v.2025-03-08
                      
                      *** BASE SYSTEM ***                                                                             Static hostname: iobroker
                             Icon name: computer-container
                               Chassis: container ☐
                        Virtualization: lxc
                      Operating System: Debian GNU/Linux 12 (bookworm)
                                Kernel: Linux 6.8.12-11-pve
                          Architecture: x86-64
                      OS is similar to:
                      
                      model name      : 12th Gen Intel(R) Core(TM) i3-12100
                      Docker          : false
                      Virtualization  : lxc
                      Kernel          : x86_64
                      Userland        : 64 bit
                      
                      Systemuptime and Load:
                       19:12:55 up 1 day,  5:47,  2 users,  load average: 0.87, 0.85, 0.87
                      CPU threads: 4
                      
                      
                      *** LIFE CYCLE STATUS ***
                      Unknown release codenamed ''. Please check yourself if the Operating System is actively maintained.
                      
                      *** TIME AND TIMEZONES ***
                                     Local time: Mon 2025-08-04 19:12:55 CEST
                                 Universal time: Mon 2025-08-04 17:12:55 UTC
                                       RTC time: n/a
                                      Time zone: Europe/Berlin (CEST, +0200)
                      System clock synchronized: yes
                                    NTP service: inactive
                                RTC in local TZ: no
                      
                      *** Users and Groups ***
                      User that called 'iob diag':
                      david
                      HOME=/home/david
                      GROUPS=david adm dialout sudo audio video plugdev users iobroker
                      
                      User that is running 'js-controller':
                      iobroker
                      HOME=/home/iobroker
                      GROUPS=iobroker tty dialout audio video plugdev
                      
                      *** DISPLAY-SERVER SETUP ***
                      Display-Server: false
                      Desktop:
                      Terminal:       tty
                      
                      *** MEMORY ***
                                     total        used        free      shared  buff/cache   available
                      Mem:            8.6G        4.5G        4.0G         81K        127M        4.1G
                      Swap:           536M        521M         15M
                      Total:          9.1G        5.0G        4.0G
                      
                      Active iob-Instances:   55
                      
                               8192 M total memory
                               4251 M used memory
                               2347 M active memory
                               1857 M inactive memory
                               3819 M free memory
                                  0 M buffer memory
                                121 M swap cache
                                512 M total swap
                                496 M used swap
                                 15 M free swap
                      
                      *** top - Table Of Processes  ***
                      top - 19:12:55 up 1 day,  5:47,  2 users,  load average: 0.87, 0.85, 0.87
                      Tasks:  85 total,   1 running,  84 sleeping,   0 stopped,   0 zombie
                      %Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                      MiB Mem :   8192.0 total,   3817.4 free,   4253.3 used,    121.3 buff/cache
                      MiB Swap:    512.0 total,     15.0 free,    497.0 used.   3938.7 avail Mem
                      
                      *** FAILED SERVICES ***
                      
                        UNIT                 LOAD   ACTIVE SUB    DESCRIPTION
                      * run-rpc_pipefs.mount loaded failed failed RPC Pipe File System
                      
                      LOAD   = Reflects whether the unit definition was properly loaded.
                      ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
                      SUB    = The low-level unit activation state, values depend on unit type.
                      1 loaded units listed.
                      
                      
                      *** DMESG CRITICAL ERRORS ***
                      dmesg: read kernel buffer failed: Operation not permitted
                      No critical errors detected
                      
                      *** FILESYSTEM ***
                      Filesystem             Type      Size  Used Avail Use% Mounted on
                      tank/subvol-118-disk-0 zfs        32G  8.7G   24G  27% /
                      none                   tmpfs     492K  4.0K  488K   1% /dev
                      none                   tmpfs     8.0K  4.0K  4.0K  50% /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
                      udev                   devtmpfs   16G     0   16G   0% /dev/tty
                      tmpfs                  tmpfs      16G     0   16G   0% /dev/shm
                      tmpfs                  tmpfs     6.3G  124K  6.3G   1% /run
                      tmpfs                  tmpfs     5.0M     0  5.0M   0% /run/lock
                      tmpfs                  tmpfs     3.2G     0  3.2G   0% /run/user/1000
                      
                      Messages concerning ext4 filesystem in dmesg:
                      dmesg: read kernel buffer failed: Operation not permitted
                      
                      Show mounted filesystems:
                      TARGET SOURCE                 FSTYPE OPTIONS
                      /      tank/subvol-118-disk-0 zfs    rw,relatime,xattr,posixacl,casesensitive
                      
                      Files in neuralgic directories:
                      
                      /var:
                      1.4G    /var/
                      901M    /var/log
                      900M    /var/log/journal/409c783458ed4c4c8725e302ab3b413c
                      900M    /var/log/journal
                      467M    /var/cache
                      
                      Archived and active journals take up 899.7M in the file system.
                      
                      /opt/iobroker/backups:
                      1.1G    /opt/iobroker/backups/
                      
                      /opt/iobroker/iobroker-data:
                      1.1G    /opt/iobroker/iobroker-data/
                      531M    /opt/iobroker/iobroker-data/backup-objects
                      272M    /opt/iobroker/iobroker-data/files
                      93M     /opt/iobroker/iobroker-data/node-red
                      92M     /opt/iobroker/iobroker-data/node-red/node_modules
                      
                      The five largest files in iobroker-data are:
                      82M     /opt/iobroker/iobroker-data/states.jsonl
                      41M     /opt/iobroker/iobroker-data/mymedia/smoke.mp4
                      25M     /opt/iobroker/iobroker-data/mymedia/wasserhahn.mp4
                      21M     /opt/iobroker/iobroker-data/mymedia/clock_stopmotion.mov
                      16M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                      
                      USB-Devices by-id:
                      USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                      
                      /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
                      
                      *** ZigBee Settings ***
                      
                      HINT:
                      Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                      tcp
                      Zigbee Network Settings on your coordinator/in nvbackup are:
                      
                      zigbee.X
                      Extended Pan ID:
                      *** MASKED ***
                      Pan ID:
                      *** MASKED ***
                      Channel:
                      *** MASKED ***
                      Network Key:
                      *** MASKED ***
                      
                      To unmask the settings run 'iob diag --unmask'
                      
                      
                      *** NodeJS-Installation ***
                      
                      /usr/bin/nodejs         v20.19.4
                      /usr/bin/node           v20.19.4
                      /usr/bin/npm            10.8.2
                      /usr/bin/npx            10.8.2
                      /usr/bin/corepack       0.32.0
                      
                      nodejs:
                        Installed: 20.19.4-1nodesource1
                        Candidate: 20.19.4-1nodesource1
                        Version table:
                       *** 20.19.4-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                              100 /var/lib/dpkg/status
                           20.19.3-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.19.2-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.19.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.19.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.18.3-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.18.2-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.18.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.18.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.17.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.16.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.15.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.15.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.14.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.13.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.13.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.12.2-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.12.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.12.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.11.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.11.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.10.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.9.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.8.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.8.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.7.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.6.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.6.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.5.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.5.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.4.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.3.1-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.3.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.2.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.1.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           20.0.0-1nodesource1 1001
                              500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                           18.19.0+dfsg-6~deb12u2 500
                              500 http://deb.debian.org/debian bookworm/main amd64 Packages
                           18.19.0+dfsg-6~deb12u1 500
                              500 http://security.debian.org bookworm-security/main amd64 Packages
                      
                      Temp directories causing deletion problem: 0
                      No problems detected
                      
                      Errors in npm tree: 0
                      No problems detected
                      
                      *** ioBroker-Installation ***
                      
                      ioBroker Status
                      iobroker is running on this host.
                      
                      
                      Objects type: jsonl
                      States  type: jsonl
                      
                      Hosts:
                      iobroker            iobroker (version: 7.0.6, hostname: iobroker      , alive, uptime: 107241)
                      
                      Core adapters versions
                      js-controller:  7.0.6
                      admin:          7.6.17
                      javascript:     8.9.2
                      
                      nodejs modules from github:     7
                      +-- iobroker.ai-toolbox@0.1.3 (git+ssh://git@github.com/ToGe3688/ioBroker.ai-toolbox.git#f1fed33e3501a08d6052e01340e1ae1cda003746)
                      +-- iobroker.drops-weather@1.2.7 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.drops-weather.git#f0523e2380d3b95c612de4d4fc04c4bc6ee581e6)
                      +-- iobroker.google-sharedlocations@2.1.4 (git+ssh://git@github.com/Garfonso/ioBroker.google-sharedlocations.git#73e87eafd1922418a4829d93697b2268eacada2a)
                      +-- iobroker.playstation@0.0.3 (git+ssh://git@github.com/Lucky-ESA/ioBroker.playstation.git#5b43878f7d3f6b0a0cafff9a9882bd12c7f4dc20)
                      +-- iobroker.roborock@0.6.19 (git+ssh://git@github.com/copystring/ioBroker.roborock.git#97c61972c09ae9e53b157f4abc64e7e39efe617c)
                      +-- iobroker.smoothed@1.4.0 (git+ssh://git@github.com/BenAhrdt/ioBroker.smoothed.git#f864b035a8f8a432cb4aefb945158162d597b80b)
                      +-- iobroker.sourceanalytix@0.4.14 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#87a9b7837569274a136c4fa03ee6fbfd8a20f183)
                      
                      Adapter State
                      + system.adapter.accuweather.0            : accuweather           : iobroker                                 -  enabled
                      + system.adapter.adb.0                    : adb                   : iobroker                                 -  enabled
                      + system.adapter.adguard.0                : adguard               : iobroker                                 -  enabled
                      + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                      + system.adapter.ai-assistant.0           : ai-assistant          : iobroker                                 -  enabled
                      + system.adapter.ai-toolbox.0             : ai-toolbox            : iobroker                                 -  enabled
                        system.adapter.alias-manager.0          : alias-manager         : iobroker                                 - disabled
                      + system.adapter.backitup.0               : backitup              : iobroker                                 -  enabled
                        system.adapter.birthdays.0              : birthdays             : iobroker                                 -  enabled
                      + system.adapter.bosesoundtouch.0         : bosesoundtouch        : iobroker                                 -  enabled
                      + system.adapter.cloud.0                  : cloud                 : iobroker                                 -  enabled
                      + system.adapter.countdown.0              : countdown             : iobroker                                 -  enabled
                        system.adapter.daswetter.0              : daswetter             : iobroker                                 -  enabled
                        system.adapter.daswetter.1              : daswetter             : iobroker                                 -  enabled
                        system.adapter.device-reminder.0        : device-reminder       : iobroker                                 - disabled
                      + system.adapter.device-watcher.0         : device-watcher        : iobroker                                 -  enabled
                        system.adapter.devices.0                : devices               : iobroker                                 - disabled
                        system.adapter.drops-weather.0          : drops-weather         : iobroker                                 -  enabled
                      + system.adapter.echarts.0                : echarts               : iobroker                                 -  enabled
                      + system.adapter.email.0                  : email                 : iobroker                                 -  enabled
                        system.adapter.fb-checkpresence.0       : fb-checkpresence      : iobroker                                 - disabled
                        system.adapter.feiertage.0              : feiertage             : iobroker                                 -  enabled
                      + system.adapter.google-sharedlocations.0 : google-sharedlocations: iobroker                                 -  enabled
                      + system.adapter.gsmsms.0                 : gsmsms                : iobroker                                 -  enabled, port: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
                      + system.adapter.hm-rega.0                : hm-rega               : iobroker                                 -  enabled
                      + system.adapter.hm-rpc.0                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                      + system.adapter.hm-rpc.1                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                      + system.adapter.hmip.0                   : hmip                  : iobroker                                 -  enabled
                        system.adapter.ical.0                   : ical                  : iobroker                                 -  enabled
                        system.adapter.ical.1                   : ical                  : iobroker                                 -  enabled
                        system.adapter.iceroad.0                : iceroad               : iobroker                                 -  enabled
                      + system.adapter.imap.0                   : imap                  : iobroker                                 -  enabled
                      + system.adapter.iot.0                    : iot                   : iobroker                                 -  enabled
                      + system.adapter.javascript.0             : javascript            : iobroker                                 -  enabled
                      + system.adapter.linux-control.0          : linux-control         : iobroker                                 -  enabled
                        system.adapter.logparser.0              : logparser             : iobroker                                 - disabled
                      + system.adapter.lovelace.0               : lovelace              : iobroker                                 -  enabled, port: 8091, bind: 0.0.0.0, run as: admin
                      + system.adapter.lovelace.1               : lovelace              : iobroker                                 -  enabled, port: 8092, bind: 0.0.0.0, run as: admin
                        system.adapter.matter.0                 : matter                : iobroker                                 - disabled
                      + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                        system.adapter.nina.0                   : nina                  : iobroker                                 - disabled
                      + system.adapter.node-red.0               : node-red              : iobroker                                 -  enabled, port: 1880, bind: 0.0.0.0
                        system.adapter.notification-manager.0   : notification-manager  : iobroker                                 - disabled
                      + system.adapter.nut.0                    : nut                   : iobroker                                 -  enabled
                      + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                        system.adapter.openweathermap.0         : openweathermap        : iobroker                                 -  enabled
                        system.adapter.parser.0                 : parser                : iobroker                                 - disabled
                      + system.adapter.ping.0                   : ping                  : iobroker                                 -  enabled
                      + system.adapter.places.0                 : places                : iobroker                                 -  enabled
                        system.adapter.playstation.0            : playstation           : iobroker                                 - disabled
                      + system.adapter.proxmox.0                : proxmox               : iobroker                                 -  enabled, port: 8006
                        system.adapter.proxy.0                  : proxy                 : iobroker                                 -  enabled
                      + system.adapter.reolink.0                : reolink               : iobroker                                 -  enabled
                      + system.adapter.rest-api.0               : rest-api              : iobroker                                 -  enabled, port: 8093, bind: 0.0.0.0, run as: admin
                        system.adapter.roborock.0               : roborock              : iobroker                                 - disabled
                        system.adapter.rssfeed.0                : rssfeed               : iobroker                                 - disabled
                        system.adapter.sayit.0                  : sayit                 : iobroker                                 - disabled
                      + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1888, bind: 192.168.99.33
                      + system.adapter.shelly.1                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
                      + system.adapter.simple-api.0             : simple-api            : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                      + system.adapter.smoothed.0               : smoothed              : iobroker                                 -  enabled
                      + system.adapter.sonoff.0                 : sonoff                : iobroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                      + system.adapter.sony-bravia.0            : sony-bravia           : iobroker                                 -  enabled
                      + system.adapter.sourceanalytix.0         : sourceanalytix        : iobroker                                 -  enabled
                      + system.adapter.sql.0                    : sql                   : iobroker                                 -  enabled, port: 3306
                      + system.adapter.tankerkoenig.0           : tankerkoenig          : iobroker                                 -  enabled
                      + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.telegram.1               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.tr-064.0                 : tr-064                : iobroker                                 -  enabled
                      + system.adapter.trashschedule.0          : trashschedule         : iobroker                                 -  enabled
                      + system.adapter.upnp.0                   : upnp                  : iobroker                                 -  enabled
                        system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: iobroker                                 - disabled
                      + system.adapter.vis-2.0                  : vis-2                 : iobroker                                 -  enabled
                      + system.adapter.vis-inventwo.0           : vis-inventwo          : iobroker                                 -  enabled
                        system.adapter.vis.0                    : vis                   : iobroker                                 -  enabled
                      + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0 (SSL), run as: admin
                      + system.adapter.web.1                    : web                   : iobroker                                 -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                      + system.adapter.wireguard.0              : wireguard             : iobroker                                 -  enabled
                      + system.adapter.zigbee.0                 : zigbee                : iobroker                                 -  enabled, port: tcp://192.168.99.4:6638
                      
                      + instance is alive
                      
                      Enabled adapters with bindings
                      + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                      + system.adapter.gsmsms.0                 : gsmsms                : iobroker                                 -  enabled, port: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
                      + system.adapter.hm-rpc.0                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                      + system.adapter.hm-rpc.1                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                      + system.adapter.lovelace.0               : lovelace              : iobroker                                 -  enabled, port: 8091, bind: 0.0.0.0, run as: admin
                      + system.adapter.lovelace.1               : lovelace              : iobroker                                 -  enabled, port: 8092, bind: 0.0.0.0, run as: admin
                      + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                      + system.adapter.node-red.0               : node-red              : iobroker                                 -  enabled, port: 1880, bind: 0.0.0.0
                      + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                      + system.adapter.proxmox.0                : proxmox               : iobroker                                 -  enabled, port: 8006
                      + system.adapter.rest-api.0               : rest-api              : iobroker                                 -  enabled, port: 8093, bind: 0.0.0.0, run as: admin
                      + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1888, bind: 192.168.99.33
                      + system.adapter.shelly.1                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
                      + system.adapter.simple-api.0             : simple-api            : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                      + system.adapter.sonoff.0                 : sonoff                : iobroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                      + system.adapter.sql.0                    : sql                   : iobroker                                 -  enabled, port: 3306
                      + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.telegram.1               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0 (SSL), run as: admin
                      + system.adapter.web.1                    : web                   : iobroker                                 -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                      + system.adapter.zigbee.0                 : zigbee                : iobroker                                 -  enabled, port: tcp://192.168.99.4:6638
                      
                      ioBroker-Repositories
                      ┌─────────┬────────────────────┬─────────────────────────────────────────────────────────┬──────────────┐
                      │ (index) │ name               │ url                                                     │ auto upgrade │
                      ├─────────┼────────────────────┼─────────────────────────────────────────────────────────┼──────────────┤
                      │ 0       │ 'Stable (default)' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                      │ 1       │ 'Beta (latest)'    │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                      └─────────┴────────────────────┴─────────────────────────────────────────────────────────┴──────────────┘
                      
                      Active repo(s): Stable (default)
                      Upgrade policy: none
                      
                      Installed ioBroker-Adapters
                      Used repository: Stable (default)
                      Adapter    "accuweather"  : 2.1.0    , installed 2.1.0
                      Adapter    "adb"          : 0.0.7    , installed 0.0.7
                      Adapter    "adguard"      : 1.0.1    , installed 1.0.1
                      Adapter    "admin"        : 7.6.17   , installed 7.6.17
                      Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                      Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                      Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                      Adapter    "bosesoundtouch": 0.11.1  , installed 0.11.1
                      Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                      Adapter    "countdown"    : 3.0.0    , installed 3.0.0
                      Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                      Adapter    "device-reminder": 3.1.2  , installed 3.1.2
                      Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                      Adapter    "devices"      : 1.1.5    , installed 1.1.5
                      Adapter    "drops-weather": 1.2.7    , installed 1.2.7
                      Adapter    "echarts"      : 1.9.2    , installed 2.0.6
                      Adapter    "email"        : 2.0.4    , installed 2.0.4
                      Adapter    "fb-checkpresence": 1.4.0 , installed 1.4.0
                      Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                      Adapter    "gsmsms"       : 1.0.0    , installed 1.0.0
                      Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                      Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                      Adapter    "hmip"         : 1.27.0   , installed 1.27.0
                      Adapter    "ical"         : 1.16.2   , installed 1.16.2
                      Adapter    "iceroad"      : 1.2.1    , installed 1.2.1
                      Adapter    "imap"         : 0.3.0    , installed 0.3.0
                      Adapter    "iot"          : 3.3.0    , installed 3.3.0
                      Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                      Controller "js-controller": 7.0.6    , installed 7.0.6
                      Adapter    "linux-control": 1.1.5    , installed 1.1.5
                      Adapter    "logparser"    : 2.4.0    , installed 2.4.0
                      Adapter    "lovelace"     : 4.1.15   , installed 5.0.0
                      Adapter    "matter"       : 0.5.1    , installed 0.5.1
                      Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                      Adapter    "nina"         : 0.0.25   , installed 0.0.25
                      Adapter    "node-red"     : 5.2.1    , installed 5.2.1
                      Adapter    "notification-manager": 1.2.1, installed 1.3.0
                      Adapter    "nut"          : 1.6.0    , installed 1.6.0
                      Adapter    "onvif"        : 1.1.4    , installed 1.1.4
                      Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                      Adapter    "parser"       : 2.2.4    , installed 2.2.4
                      Adapter    "ping"         : 1.6.2    , installed 1.7.9
                      Adapter    "places"       : 1.3.0    , installed 1.3.0
                      Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
                      Adapter    "proxy"        : 1.3.2    , installed 1.3.2
                      Adapter    "reolink"      : 1.2.3    , installed 1.2.3
                      Adapter    "rest-api"     : 2.0.3    , installed 2.0.3
                      Adapter    "roborock"     : 0.6.18   , installed 0.6.19
                      Adapter    "rssfeed"      : 3.5.2    , installed 3.5.2
                      Adapter    "sayit"        : 5.0.0    , installed 5.0.0
                      Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                      Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                      Adapter    "smoothed"     : 1.4.0    , installed 1.4.0
                      Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                      Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                      Adapter    "sony-bravia"  : 1.1.0    , installed 1.1.0
                      Adapter    "sql"          : 3.0.1    , installed 3.0.1
                      Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                      Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                      Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                      Adapter    "trashschedule": 3.3.0    , installed 3.3.0
                      Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                      Adapter    "vis"          : 1.5.6    , installed 1.5.6
                      Adapter    "vis-2"        : 2.9.64   , installed 2.9.64
                      Adapter    "vis-2-widgets-material": 1.4.10, installed 1.4.10
                      Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                      Adapter    "web"          : 7.0.8    , installed 7.0.8
                      Adapter    "wireguard"    : 1.7.0    , installed 1.7.0
                      Adapter    "ws"           : 2.6.2    , installed 2.6.2
                      Adapter    "zigbee"       : 2.0.5    , installed 3.0.1
                      
                      Objects and States
                      Please stand by - This may take a while
                      Objects:        35683
                      States:         32075
                      
                      *** OS-Repositories and Updates ***
                      Hit:1 http://deb.debian.org/debian bookworm InRelease
                      Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
                      Hit:3 http://security.debian.org bookworm-security InRelease
                      Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease
                      Hit:5 https://packagecloud.io/ookla/speedtest-cli/debian bookworm InRelease
                      Reading package lists...
                      Pending Updates: 0
                      
                      *** Listening Ports ***
                      Active Internet connections (only servers)
                      Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                      tcp        0      0 192.168.99.33:1888      0.0.0.0:*               LISTEN      1001       39195      934/io.shelly.0
                      tcp        0      0 127.0.0.1:5037          0.0.0.0:*               LISTEN      1001       39634      1079/adb
                      tcp        0      0 192.168.99.33:49292     0.0.0.0:*               LISTEN      1001       29391      760/io.hm-rpc.1
                      tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          25769      295/master
                      tcp        0      0 0.0.0.0:1880            0.0.0.0:*               LISTEN      1001       26228      449/node-red
                      tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       35596      968/io.sonoff.0
                      tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       34994      835/io.mqtt.0
                      tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          21425      1/init
                      tcp        0      0 192.168.99.33:42010     0.0.0.0:*               LISTEN      1001       26591      745/io.hm-rpc.0
                      tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       25810      122/iobroker.js-con
                      tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       19308      122/iobroker.js-con
                      tcp6       0      0 :::8091                 :::*                    LISTEN      1001       71921      1634/io.lovelace.0
                      tcp6       0      0 :::8093                 :::*                    LISTEN      1001       72114      1741/io.rest-api.0
                      tcp6       0      0 :::8092                 :::*                    LISTEN      1001       71971      1685/io.lovelace.1
                      tcp6       0      0 :::8081                 :::*                    LISTEN      1001       24780      309/io.admin.0
                      tcp6       0      0 :::8083                 :::*                    LISTEN      1001       57312      1894/io.web.1
                      tcp6       0      0 :::8082                 :::*                    LISTEN      1001       57270      1877/io.web.0
                      tcp6       0      0 :::8087                 :::*                    LISTEN      1001       72158      1758/io.simple-api.
                      tcp6       0      0 :::1980                 :::*                    LISTEN      1001       25097      449/node-red
                      tcp6       0      0 :::111                  :::*                    LISTEN      0          21427      1/init
                      tcp6       0      0 :::22                   :::*                    LISTEN      0          23320      1/init
                      tcp6       0      0 ::1:25                  :::*                    LISTEN      0          25770      295/master
                      udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          21426      1/init
                      udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       76158      1844/io.upnp.0
                      udp        0      0 192.168.99.33:5353      0.0.0.0:*                           1001       41584      1007/io.tr-064.0
                      udp        0      0 0.0.0.0:5683            0.0.0.0:*                           1001       37268      952/io.shelly.1
                      udp6       0      0 :::111                  :::*                                0          21428      1/init
                      
                      *** Log File - Last 25 Lines ***
                      
                          at DropsWeather.readDataFromServer (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:149:18)
                          at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
                      2025-08-04 19:10:43.240  - error: drops-weather.0 (107328) Cannot read properties of null (reading 'pages')
                      2025-08-04 19:10:43.244  - error: drops-weather.0 (107328) error launching browser undefined - Error: Failed to launch the browser process!
                      /home/iobroker/.cache/puppeteer/chrome/linux-138.0.7204.168/chrome-linux64/chrome: error while loading shared libraries: libnspr4.so: cannot open shared object file: No such file or directory
                      
                      
                      TROUBLESHOOTING: https://pptr.dev/troubleshooting
                      
                      2025-08-04 19:10:43.244  - warn: drops-weather.0 (107328) setTimeout called, but adapter is shutting down
                      2025-08-04 19:10:43.244  - warn: drops-weather.0 (107328) TypeError: Cannot read properties of null (reading 'newPage')
                      2025-08-04 19:10:43.244  - error: drops-weather.0 (107328) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                      2025-08-04 19:10:43.244  - error: drops-weather.0 (107328) unhandled promise rejection: Cannot read properties of null (reading 'pages')
                      2025-08-04 19:10:43.244  - error: drops-weather.0 (107328) TypeError: Cannot read properties of null (reading 'pages')
                          at DropsWeather.destroyBrowser (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:298:37)
                          at DropsWeather.readDataFromServer (/opt/iobroker/node_modules/iobroker.drops-weather/main.js:149:18)
                          at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
                      2025-08-04 19:10:43.244  - error: drops-weather.0 (107328) Cannot read properties of null (reading 'pages')
                      2025-08-04 19:10:43.252  - info: host.iobroker instance system.adapter.drops-weather.0 having pid 107328 terminated with code 0 (NO_ERROR)
                      2025-08-04 19:10:58.584  - info: admin.0 (309) <== Disconnect system.user.admin from ::ffff:192.168.99.143 admin
                      2025-08-04 19:11:46.726  - info: mqtt.0 (835) Client [gaszaehler] reconnected. Old secret 1754307314012_4778. New secret 1754327506723_9892
                      2025-08-04 19:11:46.753  - info: mqtt.0 (835) Client [gaszaehler] subscribes on "mqtt.0.gaszaehler.ctrl.flow_start"
                      2025-08-04 19:11:46.763  - info: mqtt.0 (835) Client [gaszaehler] subscribes on "mqtt.0.gaszaehler.ctrl.set_prevalue"
                      2025-08-04 19:11:46.953  - info: mqtt.0 (835) Client [gaszaehler] publishOnSubscribe
                      2025-08-04 19:11:46.963  - info: mqtt.0 (835) Client [gaszaehler] publishOnSubscribe
                      
                      
                      E 1 Reply Last reply Reply Quote 0
                      • E
                        emil70 @David G. last edited by

                        @david-g

                        HAbe etzt das nachinstalliert und nun geht es

                        sudo apt update
                        
                        sudo apt install libnss3
                        
                        sudo apt install libatk1.0-0
                        
                        sudo apt install libxkbcommon-x11-0
                        
                        sudo apt-get install libxcomposite-dev
                        
                        sudo apt-get install libxdamage1
                        
                        sudo apt-get install libxrandr2
                        
                        sudo apt-get install libgbm-dev
                        
                        sudo apt-get install libasound2
                        
                        sudo apt-get install -y libatk-bridge2.0-0 libgtk-3.0
                        
                        ilovegym David G. 2 Replies Last reply Reply Quote 0
                        • ilovegym
                          ilovegym @emil70 last edited by ilovegym

                          @emil70 setz die Pakete in die ENV im Docker, sonst muss du sieh ja jedesmal neu nach installieren..

                          dir hier meine ich:
                          - PACKAGES=nano redis-tools influxdb cifs-utils nfs-common

                          und da hintendran alle Pakete einfach mit Leerzeichen dazwischen

                          E 1 Reply Last reply Reply Quote 0
                          • David G.
                            David G. @emil70 last edited by

                            @emil70

                            Ja, so läuft es.

                            sudo apt update && sudo apt install -y libnss3 libatk1.0-0 libxkbcommon-x11-0 libxcomposite-dev libxdamage1 libxrandr2 libgbm-dev libasound2 libatk-bridge2.0-0 libgtk-3-0
                            

                            Müssten die Abhängigkeiten nicht vom Adapter mit installiert werden?

                            E 1 Reply Last reply Reply Quote 0
                            • E
                              emil70 @ilovegym last edited by

                              @ilovegym
                              Kann ich dir nicht sagen. Wie sehe ich das unter docker?

                              1 Reply Last reply Reply Quote 0
                              • E
                                emil70 @David G. last edited by

                                @david-g

                                Weiß ich nicht

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post

                                Support us

                                ioBroker
                                Community Adapters
                                Donate

                                446
                                Online

                                31.9k
                                Users

                                80.3k
                                Topics

                                1.3m
                                Posts

                                drops-weather mcm1957
                                20
                                187
                                13804
                                Loading More Posts
                                • Oldest to Newest
                                • Newest to Oldest
                                • Most Votes
                                Reply
                                • Reply as topic
                                Log in to reply
                                Community
                                Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                The ioBroker Community 2014-2023
                                logo