Ankündigung

Einklappen
Keine Ankündigung bisher.

Neues Database Plugin

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Onkelandy
    antwortet
    Perfekt, so werde ich das machen.

    Hast du mir vielleicht auch noch einen Tipp, wie ich Daten mergen kann?
    Wenn ich also die Hierarchie geändert habe, z.B. früher hieß ein Item wp.leistung und jetzt heißt es heizung.wp.leistung.
    Gibt's da n schönen SQL Befehl dazu? Würde das natürlich für jedes Item einzeln machen.

    Müsste das so in die Richtung klappen?
    Code:
    MERGE log t
    USING log s
    ON (t.item_id = <neu> AND s.item_id = <alt>)
    INSERT (time, item_id, duration, val_str, val_num, val_bool, changed)
    VALUES (s.time, s.item_id, s.duration, s.val_str, s.val_num, s.val_bool, s.changed)
    Deutlich praktischer wäre natürlich eine entsprechende Automatisierung mit SELECT %Like% oder so, da es doch eine Menge Items mit dem selben Muster betrifft..
    Zuletzt geändert von Onkelandy; 05.02.2021, 14:32.

    Einen Kommentar schreiben:


  • Sisamiwe
    antwortet
    Zitat von Onkelandy Beitrag anzeigen
    Es ist ein guter Start. Zuerst muss ich natürlich in der item Tabelle auch die Einträge raus löschen, die ich nicht mehr haben will
    Ich habe das so gemacht, dass ich mir einfach anschaue, wann ein Item das letzte mal in der Tabelle "item" aktualisiert wurde. Damit sollte man den Großteil finden.

    Einen Kommentar schreiben:


  • Morg
    antwortet
    Cleanup ruft die Methode cleanup() im Plugin auf:
    1. DB sperren
    2. alle Einträge löschen, für die im DB-Plugin derzeit kein Item hinterlegt ist
    3. DB freigeben
    Also so ähnlich wie die Lösung von sisamiwe, aber auf Grundlage der derzeitigen Plugin-Konfiguration, nicht der DB-Inhalte.

    Einen Kommentar schreiben:


  • Onkelandy
    antwortet
    Ah okay.. im WebIF gibt es oben zwei Buttons und einer ist eben dazu da, die Datenbank aufzuräumen. Was da 100% genau gemacht wird, ist mir nicht klar, aber ich gehe mal davon aus, dass es so ist wie oben beschrieben.

    Einen Kommentar schreiben:


  • psilo
    antwortet
    Onkelandy welcher "Clean Database" Befehl??? Ich hab bei dem Ding nur das WebIF dazugebaut.

    Einen Kommentar schreiben:


  • Onkelandy
    antwortet
    Danke für den Tipp. Es ist vermutlich wirklich das Schlauste, das Ganze mal ganz akribisch manuell durchzuspielen über die Commandozeile.
    Meine Datenbank ist aktuell leider so riesig, dass das Restore nun schon fast 8 Stunden auf dem NAS läuft Da werde ich jetzt aber einige Datensätze mal killen
    Bei deinem ersten Befehl müsste es CREATE TABLE heißen und danach fehlt die eine oder andere Klammer.

    Es ist ein guter Start. Zuerst muss ich natürlich in der item Tabelle auch die Einträge raus löschen, die ich nicht mehr haben will Der "Clean Database" Befehl hingegen würde vermutlich alle Einträge von Items löschen, die aktuell kein database: yes Attribut haben, liege ich da richtig psilo ? Sowas lässt sich natürlich nicht wirklich über einen SQL Befehl abdecken, hehe. Aber da es eh nicht so viele Items betrifft, geh ich da mal rüber. Und schreibe mal alle Items in der DB mit lowercase, um da auf Nummer sicher zu gehen beim nächsten Cleanversuch über das Plugin.

    Einen Kommentar schreiben:


  • Sisamiwe
    antwortet
    Onkelandy

    Ich pflege meine mysql DB mittlerweile von "Hand". Dazu stoppe ich shNG (da sonst auch die Threadanzahl aufgrund nicht möglicher Zugriffe steigt) und arbeite dann direkt über die mysql Konsole oder über die Konsole von phpmyadmin.

    Bspw für das Bereinigen der Tabelle "log" kopiere ich erst alle Einträge, deren ID nicht in der Tabelle "item" ist, in eine andere Tabelle und lösche dann diese Werte aus "log".

    Befehl für Tabelle erstellen
    Code:
    create log_aussortiert like log;
    Befehl für Kopieren:
    Code:
    INSERT INTO log_aussortiert SELECT * FROM `log` WHERE item_ID NOT IN(SELECT DISTINCT id FROM `item`;
    Befehl für Löschen
    Code:
    delete FROM `log` WHERE item_ID NOT IN(SELECT DISTINCT id FROM `item`
    Was auch wichtig ist, die DB nach solch einer Aktion zu optimieren. Dabei wird die Tabelle neu erstellt und Speicher freigegeben.

    Beste Grüße

    Einen Kommentar schreiben:


  • Onkelandy
    antwortet
    Ich hab noch Probleme beim Säubern der Datenbank entdeckt. Kann es sein, dass die cleanup Routine case sensitive ist, wohingegen das bei der Datenbank offenbar wurscht ist..?
    Sprich - ich hatte früher zB ein Item Test.OG, das jetzt test.og heißt. In der MySQL DB gibt es aber (Gott sei Dank) nur ein "gemeinsames" Item. Das hat zwar den alten Namen, bekommt aber aktuelle Daten vom Item mit dem neuen (lowcase) Namen. Also das DB Plugin schreibt Daten für die alte ID, was schon mal super ist.

    Ich hab jetzt aber mal ein Datenbank Cleaning angestoßen, da kommt's zu 2 Phänomenen:
    Auf Grund der Vielzahl der Daten ist der Clean Vorgang leider hängen geblieben. Hauptproblem scheint hier zu sein, dass das Löschen der Daten wohl sehr lange dauern kann, währenddessen aber noch sämtliche Operation vom Plugin munter weiter laufen. Das führte dazu, dass die Threads über den Threshold von 70 kletterten und SHNG neu gestartet hat. Die Threads kamen vom clean_max_age. Vermutlich ist es nicht gut, alle Operationen anzuhalten, zumal ja sowieso ein Buffering der Daten gemacht wird. Aber zumindest die Cleaning Threads sollten vielleicht vorübergehend deaktiviert werden?

    Größeres Thema aber.. sämtliche Einträge in der Log Tabelle für besagtes Item wurden gelöscht. Die Löschung fand - so behaupte ich - nur drum statt, weil Groß/Kleinschreibung nicht übereinstimmten. Kann das überhaupt sein oder sehe ich Gespenster?

    Hab jetzt nochmals mit eingeschaltetem Debuglog einen Löschvorgang losgetreten. Und zwar von einem Item, das keine Einträge mehr in der Datenbank hat, weil ich sie manuell gelöscht habe. Auch mit genau einem einzigen Eintrag geht's nicht weiter. Dann hängt die Prozedur leider auf ewig mit dieser Query fest:
    Code:
    Fetch DELETE FROM log WHERE (item_id = 6                                      ) AND (time    = None          OR 1 = 1         ) AND (time    > None    OR 1 = 1   ) AND (time    < None      OR 1 = 1     ) AND (changed = None       OR 1 = 1      ) AND (changed > None OR 1 = 1) AND (changed < None   OR 1 = 1  );
    Zuletzt geändert von Onkelandy; 04.02.2021, 20:09.

    Einen Kommentar schreiben:


  • Msinn
    antwortet
    Nach dem Update von älteren Versionen findet ein aufräumen für eine Reihe von Items in der Datenbank statt (die Items, bei denen maxage gesetzt ist (Prominentes Beispiel: Darksky Daten). Solande dieser Update Job läuft, können Veränderungen nicht direkt in die DB geschrieben werden. Dann wird die Warnung

    Code:
    2021-02-02  06:04:03 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    geloggt. Daten gehen keine verloren (es sei denn der Rechner stürtzt ab). Wie der Logeintrag besagt, werden die Daten später geschrieben.


    Der andere Fall
    Code:
    2021-02-04 09:16:29 WARNING plugins.database Problem dumping env.system.diskusagepercent: database is locked
    klingt entweder nach einer defekten Datenbank oder die SQLite Datenbank ist von einem anderen Tool (oder einer weiteren laufenden SmartHomeNG Instanz) geöffnet.

    Einen Kommentar schreiben:


  • MarcoLanghans
    antwortet
    Hallo Zusammen,

    nachdem ich meine RPI mit der 1.81 Image betankt habe und dann auch die Konfigurationen gefüllt habe bekomme ich nun folgende Meldungen im log.

    Code:
    2021-02-04 09:16:04 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [161806, None, 1.0, 1, 1612426559480, 1, 1612426387150]): database is locked
    
    2021-02-04 09:16:04 ERROR plugins.database Database: Error for query UPDATE log SET duration = 161806, val_str = None, val_num = 1.0, val_bool = 1, changed = 1612426559480 WHERE item_id = 1 AND time = 1612426387150;: database is locked
    
    2021-02-04 09:16:04 WARNING plugins.database Problem dumping env.core.scheduler.active_threads: database is locked
    
    2021-02-04 09:16:09 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [176498, None, 0.2, 1, 1612426564495, 6, 1612426387154]): database is locked
    
    2021-02-04 09:16:09 ERROR plugins.database Database: Error for query UPDATE log SET duration = 176498, val_str = None, val_num = 0.2, val_bool = 1, changed = 1612426564495 WHERE item_id = 6 AND time = 1612426387154;: database is locked
    
    2021-02-04 09:16:09 WARNING plugins.database Problem dumping env.system.load: database is locked
    
    2021-02-04 09:16:14 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [176498, None, 552046592.0, 1, 1612426569512, 7, 1612426387153]): database is locked
    
    2021-02-04 09:16:14 ERROR plugins.database Database: Error for query UPDATE log SET duration = 176498, val_str = None, val_num = 552046592.0, val_bool = 1, changed = 1612426569512 WHERE item_id = 7 AND time = 1612426387153;: database is locked
    
    2021-02-04 09:16:14 WARNING plugins.database Problem dumping env.system.memory.used: database is locked
    
    2021-02-04 09:16:19 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [176498, None, 69.5, 1, 1612426574527, 8, 1612426387154]): database is locked
    
    2021-02-04 09:16:19 ERROR plugins.database Database: Error for query UPDATE log SET duration = 176498, val_str = None, val_num = 69.5, val_bool = 1, changed = 1612426574527 WHERE item_id = 8 AND time = 1612426387154;: database is locked
    
    2021-02-04 09:16:19 WARNING plugins.database Problem dumping env.system.memory.percent: database is locked
    
    2021-02-04 09:16:24 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [176497, None, 0.0, 0, 1612426579544, 9, 1612426387153]): database is locked
    
    2021-02-04 09:16:24 ERROR plugins.database Database: Error for query UPDATE log SET duration = 176497, val_str = None, val_num = 0.0, val_bool = 0, changed = 1612426579544 WHERE item_id = 9 AND time = 1612426387153;: database is locked
    
    2021-02-04 09:16:24 WARNING plugins.database Problem dumping env.system.swap: database is locked
    
    2021-02-04 09:16:29 ERROR lib.db Can not execute query: UPDATE log SET duration = ?, val_str = ?, val_num = ?, val_bool = ?, changed = ? WHERE item_id = ? AND time = ?; (args [176498, None, 19.76, 1, 1612426584558, 10, 1612426387155]): database is locked
    
    2021-02-04 09:16:29 ERROR plugins.database Database: Error for query UPDATE log SET duration = 176498, val_str = None, val_num = 19.76, val_bool = 1, changed = 1612426584558 WHERE item_id = 10 AND time = 1612426387155;: database is locked
    
    2021-02-04 09:16:29 WARNING plugins.database Problem dumping env.system.diskusagepercent: database is locked
    
    2021-02-04 09:16:34 ERROR lib.db Can not execute query: DELETE FROM log WHERE (item_id = ? ) AND (time = ? OR 1 = ? ) AND (time > ? OR 1 = ? ) AND (time < ? OR 1 = ? ) AND (changed = ? OR 1 = ? ) AND (changed > ? OR 1 = ?) AND (changed < ? OR 1 = ? ); (args [2, None, 1, None, 1, 1609748169511, 0, None, 1, None, 1, None, 1]): database is locked
    
    2021-02-04 09:16:34 ERROR plugins.database Database: Error for query DELETE FROM log WHERE (item_id = 2 ) AND (time = None OR 1 = 1 ) AND (time > None OR 1 = 1 ) AND (time < 1609748169511 OR 1 = 0 ) AND (changed = None OR 1 = 1 ) AND (changed > None OR 1 = 1) AND (changed < None OR 1 = 1 ); : database is locked
    
    2021-02-04 09:16:34 ERROR plugins.database.Remove old Method plugins.database.Remove old exception: database is locked

    Kann jemand damit was anfangen? Wahrscheinlich habe ich da nur irgendetwas falsch konfiguriert oder hinkopiert :-(

    Grüße und Danke

    Marco

    Einen Kommentar schreiben:


  • Onkelandy
    antwortet
    Ich hab die Meldung auch immer wieder sporadisch. Meist so 2-5 Einträge am Stück. Zeitlich eigentlich wild verteilt. Oftmals im Minutentakt mit der gleichen Sekundenangabe. Geht's hier um Datenbanklesen oder -schreiben? Den letzten zwei Einträgen zufolge am ehesten um beides?

    Einen Kommentar schreiben:


  • danny
    antwortet
    Hallo bmx,

    war eigentlich bis jetzt auch kein Problem.
    Habe 2660 Items.
    In der Datenbank steht:
    Die folgenden 727 Items sind dieser Instanz des Database Plugins zugewiesen, 419 Items haben ein maxage. - (Die Datenbank enthält Daten zu 609 Items )
    Was mich etwas wundert ist das 419 Items jetzt schon ein maxage haben? Habe den Docker Container aber erst ca 3 Tage.

    Habe jetzt die "struct: darksky.weather" in "darksky.weather_current_nodb" geändert. Das sind schon mal 425 Datenbank abfragen weniger.

    Danke schon mal. Aktuell keine Meldungen

    Gruß Danny


    Einen Kommentar schreiben:


  • bmx
    antwortet
    Um da etwas zu sagen zu können, müßte man deine Items kennen. Ich würde auf viele item.db(...) Abfragen gleichzeitig tippen

    Einen Kommentar schreiben:


  • danny
    antwortet
    Hallo Sipple,

    würde sagen ja, tritt oft auf:

    Code:
    2021-02-03  00:04:10 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:04:35 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:04:35 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:04:35 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:10 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:30 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:30 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:30 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:59 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:59 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:05:59 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:06:10 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  00:08:54 WARNING  modules.admin.api_plugins PluginsInstalledController.read(): plugin_list (sollte sortiert sein) = '['.git', '.gitignore', '.travis.sh', '.travis.yml', 'README.md', '__init__.py', '__pycache__', 'alexa', 'alexa4p3', 'alexarc4shng', 'apcups', 'appletv', 'artnet', 'asterisk', 'avdevice', 'avm', 'backend', 'blockly', 'bose_soundtouch', 'bsblan', 'buderus', 'casambi', 'cli', 'co2meter', 'comfoair', 'darksky', 'dashbutton', 'database', 'datalog', 'deebot_ozmo', 'dlms', 'dmx', 'drexelundweiss', 'easymeter', 'ebus', 'ecmd', 'elro', 'enigma2', 'enocean', 'eta_pu', 'executor', 'garminconnect', 'gpio', 'harmony', 'helios', 'helios_tcp', 'homematic', 'hue', 'hue2', 'iaqstick', 'ical', 'indego', 'influxdata', 'influxdb', 'intercom_2n', 'join', 'jsonread', 'jvcproj', 'kathrein', 'knx', 'kodi', 'kostal', 'kostalmodbus', 'ksemmodbus', 'lirc', 'logo', 'luxtronic2', 'mailrcv', 'mailsend', 'memlog', 'miflora', 'milight', 'mlgw', 'mpd', 'mqtt', 'mvg_live', 'neato', 'network', 'nuki', 'nut', 'odlinfo', 'onewire', 'openweathermap', 'operationlog', 'plex', 'pluggit', 'prowl', 'pushbullet', 'pushover', 'raumfeld', 'raumfeld_ng', 'rcswitch', 'resol', 'robonect', 'roomba', 'roomba_980', 'rpi1wire', 'rrd', 'rtr', 'rtr2', 'russound', 'shelly', 'simulation', 'slack', 'sma', 'sma_em', 'smarttv', 'smartvisu', 'sml', 'smlx', 'snap7_logo', 'snmp', 'snom', 'solarlog', 'sonos', 'speech', 'sqlite_visu2_8', 'squeezebox', 'stateengine', 'systemair', 'tankerkoenig', 'tasmota', 'telegram', 'thz', 'traffic', 'trovis557x', 'unifi', 'uzsu', 'vacations', 'viessmann', 'visu_smartvisu', 'visu_websocket', 'volkszaehler', 'vr100', 'webservices', 'wettercom', 'withings_health', 'wol', 'wunderground', 'xiaomi_vac', 'xmpp', 'yamaha', 'yamahayxc', 'zwave']'
    2021-02-03  00:09:10 WARNING  modules.admin.api_plugins PluginsInstalledController.read(): Plugin Liste (sollte sortiert sein), json.dumps(self.plugin_data) = '{"alexa": {"type": "web", "description": {"de": "Plugin zur Ansteuerung von SmartHomeNG via Amazon Echo / Alexa, **seit SmartHomeNG v1.3**", "en": ""}, "version": "1.3.1", "state": "deprecated", "documentation": "", "multi_instance": false, "configuration_needed": true}, "alexa4p3": {"type": "web", "description": {"de": "Plugin zur Ansteuerung von SmartHomeNG via Amazon Echo bzw. Alexa", "en": "Plugin to connect SmartHomeNG via Amazon Echo bzw. Alexa"}, "version": "1.0.2", "state": "develop", "documentation": "https://www.smarthomeng.de/user/plugins/alexa4p3/user_doc.html", "multi_instance": false, "configuration_needed": true}, "alexarc4shng": {"type": "interface", "description": {"de": "Plugin zur Steuerung von Amazon Echo Ger\u00e4ten Zugriff via Web-Browser API und Cookie", "en": "Plugin to remote control Echo Show/Spot/Fire"}, "version": "1.0.2", "state": "develop", "documentation": "https://www.smarthomeng.de/user/plugins/alexarc4shng/user_doc.html", "multi_instance": false, "configuration_needed": true}, "apcups": {"type": "interface", "description": {"de": "Unterst\u00fctzung f\u00fcr smartUPS Ger\u00e4te der Firma APC", "en": "Support for smartUPS devices sold by APC"}, "version": "1.3.3", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "appletv": {"type": "interface", "description": {"de": "Steuerung eines Apple TV's", "en": "Controls an Apple TV", "fr": "Contr\u00f4le un Apple TV"}, "version": "1.6.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "artnet": {"type": "gateway", "description": {"de": "Ansteuerung der meisten USB/Netwerk DMX Adapter", "en": "Can control most of USB/network DMX adapters"}, "version": "1.6.0", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "asterisk": {"type": "interface", "description": {"de": "Ansteuerung einer Asterisk Telefonanlage", "en": "Control of an Asterisk PBX"}, "version": "1.3.1", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/asterisk/README.html", "multi_instance": true, "configuration_needed": true}, "avdevice": {"type": "interface", "description": {"de": "Steuerung von diversen AV Ger\u00e4ten \u00fcber TCP/IP und RS232 Schnittstelle", "en": "Controlling AV devices via TCP/IP and RS232"}, "version": "1.6.2", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "avm": {"type": "interface", "description": {"de": "Ansteuerung von AVM FRITZ!Boxen, WLAN-Repeatern, DECT Steckdosen, etc.", "en": "Get and send data from/to AVM devices such as the FRITZ!Box, Wifi Repeaters or DECT sockets."}, "version": "1.5.10", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins/avm/user_doc.html", "multi_instance": true, "configuration_needed": true}, "backend": {"type": "system", "description": {"de": "Web Interface zur Anzeige von Informationen zum System und SmartHomeNG Backend-Daten", "en": "webinterface for displaying system information and SmartHomeNG backend data"}, "version": "1.5.15", "state": "deprecated", "documentation": "http://smarthomeng.de/user/plugins/backend/user_doc.html", "multi_instance": false, "configuration_needed": true}, "blockly": {"type": "system", "description": {"de": "Blockly - graphischer Editor f\u00fcr Logiken - Noch in der Entwicklung, nicht f\u00fcr die Nutzung gedacht", "en": "Blockly - graphical editor for logics - Still in development, not for use"}, "version": "1.4.0", "state": "develop", "documentation": "", "multi_instance": false, "configuration_needed": true}, "bose_soundtouch": {"type": "gateway", "description": {"de": "Plugin zur Integration von Bose Soundtouch Systemen.", "en": "Plugin for integration of Bose Soundtouch systems."}, "version": "1.0.0", "state": "ready", "documentation": "https://github.com/smarthomeNG/plugins/tree/master/bose_soundtouch", "multi_instance": false, "configuration_needed": true}, "bsblan": {"type": "interface", "description": {"de": "Plugin zur Datenabfrage des BSB-LAN-Adapters", "en": "Plugin to request data from your BSB-LAN-Adapter"}, "version": "1.0.0", "state": "develop", "documentation": null, "multi_instance": false, "configuration_needed": true}, "buderus": {"type": "interface", "description": {"de": "Steuerung von Buderus Heizkesseln \u00fcber ein Logamatic web KM200 Modul (noch in der Entwicklung), **seit SmartHomeNG v1.3**", "fr": "Contr\u00f4le d'un chauffage Buderus via un module Logamatic web KM200 (en d\u00e9veloppement)", "en": "Control Buderus heating through a Logamatic web KM200 module (still under development)"}, "version": "1.0.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "casambi": {"type": "gateway", "description": {"de": "Gateway plugin fuer Casambi", "en": "Gateway plugin for Casambi devices"}, "version": "1.7.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "cli": {"type": "system", "description": {"de": "Command Line Interface f\u00fcr SmartHomeNG - Funktioniert mit SmartHomeNG v1.4 und h\u00f6her", "en": "Commandline interface for SmartHomeNG - Works with SmartHomeNG v1.4 and up"}, "version": "1.7.2", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins/cli/user_doc.html", "multi_instance": true, "configuration_needed": true}, "co2meter": {"type": "interface", "description": {"de": "\u00dcber das CO2Meter Plugin k\u00f6nnen Daten aus dem Dostmann TFA AirCO2ntrol CO2 Messger\u00e4t via USB abgerufen werden.", "en": "The CO2Meter Plugin allows to access a Dostmann TFA Dostmann AirCO2ntrol device via its raw USB data."}, "version": "1.3.2", "state": "qa-passed", "documentation": "", "multi_instance": false, "configuration_needed": true}, "comfoair": {"type": "interface", "description": {"de": "Unterst\u00fctzung f\u00fcr Zehnder ComfoAir 350 & 500 KWL", "en": "Suppprt for Zehnder ComfoAir 350 & 500 KWL"}, "version": "1.3.0", "state": "ready", "documentation": "https://github.com/smarthomeNG/smarthome/wiki/Comfoair-Plugin", "multi_instance": false, "configuration_needed": true}, "darksky": {"type": "web", "description": {"de": "Wetterdaten \u00fcber darksky.net.", "en": "Weather data via darksky.net."}, "version": "1.7.0", "state": "qa-passed", "documentation": "https://www.smarthomeng.de/user/plugins/darksky/user_doc.html", "multi_instance": true, "configuration_needed": true}, "dashbutton": {"type": "gateway", "description": {"de": "Einbindung von Amazon Dashbuttons", "en": "Integration of Amazon dashbuttons"}, "version": "1.3.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "database": {"type": "system", "description": {"de": "Database plugin, mit Unterst\u00fctzung f\u00fcr SQLite 3 und MySQL", "en": "Database plugin, with support for SQLite 3 and MySQL"}, "version": "1.5.15", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/database/user_doc.html", "multi_instance": true, "configuration_needed": true}, "datalog": {"type": "system", "description": {"de": "Loggen von Daten in ein anderes Logfile als das Standard Log", "en": "Logging of data in another log aside from default one"}, "version": "1.5.1", "state": "ready", "documentation": "https://github.com/smarthomeNG/plugins/blob/develop/datalog/README.md", "multi_instance": true, "configuration_needed": true}, "deebot_ozmo": {"type": "interface", "description": {"de": "Plugin f\u00fcr Deebot Ozmo 920 / 950 / 960", "en": "Plugin for Deebot Ozmo 920 / 950 / 960", "fr": "Extension pour Deebot Ozmo 920 / 950 / 960"}, "version": "1.7.1", "state": "develop", "documentation": "", "multi_instance": true, "configuration_needed": true}, "dlms": {"type": "gateway", "description": {"de": "Unterst\u00fctzung f\u00fcr Smartmeter, die DLMS (Device Language Message Specification, IEC 62056-21) nutzen und OBIS Codes liefern", "en": "Support for smartmeter using DLMS (Device Language Message Specification, IEC 62056-21) and delivering OBIS codes"}, "version": "1.5.4", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/dlms/user_doc.html", "multi_instance": true, "configuration_needed": true}, "dmx": {"type": "gateway", "description": {"de": "Unterst\u00fctzt die DMX Interfaces NanoDMX und DMXking (RS-232)", "en": "Supports DMX interfaces NanoDMX and DMXking (RS-232)"}, "version": "1.6.0", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/dmx/user_doc.html", "multi_instance": false, "configuration_needed": true}, "drexelundweiss": {"type": "interface", "description": {"de": "Unterst\u00fctzt Drexel & Weiss USB Devices", "en": "Support for Drexel & Weiss USB devices"}, "version": "1.5.3", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "easymeter": {"type": "interface", "description": {"de": "Easymeter Q3D Unterst\u00fctzung - Parameter f\u00fcr serielle Devices sind aktuell fest auf 9600/7E1 gesetzt", "en": "Easymeter Q3D support - Parameter for serial device are currently set to fix 9600/7E1"}, "version": "1.0.0", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "ebus": {"type": "interface", "description": {"de": "Unterst\u00fctzt eBus Heizungen (z.B. Vailant, Wolf, Kromschroeder) - Dieses Plugin verbindet sich zu einem ebusd Deamon (http://www.cometvisu.de/wiki/Ebusd), welcher mit einer eBus Heizung kommuniziert. Voraussetzungen: Ein ebusd Deamon l\u00e4uft auf dem Netzwerk. (Anmerkung: Der ebusd ben\u00f6tigt ein ebus-Interface um mit ihm zu kommunizieren.", "en": "Supports eBus heating systems (e.g. Vailant, Wolf, Kromschroeder) - The plugin connects to a ebusd damon (http://www.cometvisu.de/wiki/Ebusd) which is communicating with eBus heatings. Requirements: running ebusd deamon on the network (note: ebusd also requires an ebus-interface)"}, "version": "1.5.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "ecmd": {"type": "gateway", "description": {"de": "Anbindung eines AVRMicrocontrollers. Das Protokoll gibt Zugriff auf 1wire Sensoren DS1820", "en": ""}, "version": "", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "elro": {"type": "gateway", "description": {"de": "Unterst\u00fctzt elro-basierter Remote-Control-Switches", "en": ""}, "version": "", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "enigma2": {"type": "interface", "description": {"de": "Plugin zur Einbindung von Enigma2 kompatiblen Sat-Receivern mit openwebif", "en": "Plugin to include Enigma2 sat receivers compatible to openwebif"}, "version": "1.4.12", "state": "qa-passed", "documentation": "", "multi_instance": true, "configuration_needed": true}, "enocean": {"type": "gateway", "description": {"de": "Anbindung von EnOcean", "en": "EnOcean Interface"}, "version": "1.3.5", "state": "ready", "documentation": "https://github.com/smarthomeNG/plugins/tree/master/enocean", "multi_instance": false, "configuration_needed": true}, "eta_pu": {"type": "interface", "description": {"de": "Anbindung der REST-Schnittstelle von ETA Heizungen (http://www.eta.co.at)", "en": "ETA Pellet Unit PU (http://www.eta.co.at) with remote access enabled (there are 3 modes available: none, readonly, read/write)"}, "version": "1.1.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "executor": {"type": "system", "description": {"de": "Ausf\u00fchren von Python Statements im Kontext von SmartHomeNG v1.5 und h\u00f6her", "en": "Execute Python statements in the context of SmartHomeNG v1.5 and up"}, "version": "1.0.4", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/executor/user_doc.html", "multi_instance": false, "configuration_needed": true}, "garminconnect": {"type": "web", "description": {"de": "Erm\u00f6glicht den Abruf von Daten (Statistiken, Pulswerte) aus Garmin Connect.", "en": "Enables the retrieval of data (stats, heart rates) from Garmin Connect."}, "version": "1.0.0", "state": "develop", "documentation": "http://smarthomeng.de/user/plugins_doc/config/garminconnect.html", "multi_instance": false, "configuration_needed": true}, "gpio": {"type": "interface", "description": {"de": "GPIO-Unterst\u00fctzung f\u00fcr Rasberry Pi, **seit SmartHomeNG v1.3**", "en": "GPIO support for Raspberry Pi, **since SmarthomeNG v1.3**"}, "version": "1.5.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "harmony": {"type": "interface", "description": {"de": "Harmony Hub plugin **seit SmartHomeNG v1.3**", "en": "Harmony hub plugin"}, "version": "1.4.1", "state": "ready", "documentation": "https://github.com/smarthomeNG/plugins/blob/develop/harmony/README.md", "multi_instance": false, "configuration_needed": true}, "helios": {"type": "interface", "description": {"de": "Plugin zur Helios EC x00 Pro / Vallox xx SE Ansteuerung", "en": "Plugin for Helios EC x00 Pro / Vallox xx SE control"}, "version": "1.4.2", "state": "ready", "documentation": "https://github.com/Tom-Bom-badil/helios/wiki", "multi_instance": false, "configuration_needed": true}, "helios_tcp": {"type": "interface", "description": {"de": "Erlaubt die Kommunikation \u00fcber TCP mit Helios KWL Ger\u00e4ten mit Helios Easy Controls", "en": "Enables the communication over TCP with Helios KWL devices that use Helios Easy Controls"}, "version": "1.0.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "homematic": {"type": "gateway", "description": {"de": "Ansteuerung von HomeMatic Komponenten \u00fcber eine HomeMatic CCU2 Zentrale. Es werden HomeMatic und HomeMaticIP Ger\u00e4te unterst\u00fctzt.", "en": "Control HomeMatic devices through a HomeMatic CCU2 (used as gateway). HomeMatic and HomeMaticIP devices are supported."}, "version": "1.5.1", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins/homematic/user_doc.html", "multi_instance": true, "configuration_needed": true}, "hue": {"type": "gateway", "description": {"de": "Anbindung einer oder mehrerer Philips HUE Bridges", "en": "Gateway for connection to one or more Philips HUE bridges"}, "version": "1.4.5", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "hue2": {"type": "gateway", "description": {"de": "Anbindung des Philips/Signify Hue Systems \u00fcber eine Hue Bridge (v1 oder v2)", "en": "Gateway for connection to the Philips/Signify Hue system using one bridge (v1 or v2)"}, "version": "2.0.0", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": false}, "iaqstick": {"type": "gateway", "description": {"de": "Unterst\u00fctzung f\u00fcr Applied Sensor iAQ Stick und Voltcraft CO-20", "en": ""}, "version": "", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "ical": {"type": "web", "description": {"de": "Erm\u00f6glicht die Verwendung von Kalendern (ICS)", "en": "Provide access to calendars based on ics files"}, "version": "1.5.4", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "indego": {"type": "interface", "description": {"de": "Indego Plugin zum Auslesen von Bosch Indego M\u00e4hrobotern mit Connect Ausstattung", "en": "Indego Plugin to read outBosch Indego mower robots with Connect interface"}, "version": "1.6.1", "state": "develop", "documentation": "https://www.smarthomeng.de/user/plugins/indego/README.htm", "multi_instance": false, "configuration_needed": true}, "influxdata": {"type": "system", "description": {"de": "Erm\u00f6glicht Speicherung von Daten in InfluxData TSDB z.B. zur Erzeugung von Graphen mit Grafana oder Chronograf (Plugin aus 2016)", "en": "Store data in an InfluxData TSDB"}, "version": "1.0.0", "state": "deprecated", "documentation": "https://github.com/smarthomeNG/smarthome/wiki/Installation-Influx-Grafana", "multi_instance": false, "configuration_needed": true}, "influxdb": {"type": "system", "description": {"de": "Erm\u00f6glicht Speicherung von Item Werten in einer InfluxData time-series Datenbank", "en": "Plugin to store item values in an InfluxData time-series database"}, "version": "1.0.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "intercom_2n": {"type": "interface", "description": {"de": "Integration von 2N SIP-T\u00fcrsprechanlagen", "en": "Control SIP doorstations from 2N"}, "version": "1.3.0.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "join": {"type": "web", "description": {"de": "Erm\u00f6glicht die Verwendung der Join API (https://joaoapps.com/join/api/)", "en": "This plugin allows to send command to your mobile phone via the Join API: https://joaoapps.com/join/api/"}, "version": "1.4.2", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/join.html", "multi_instance": false, "configuration_needed": true}, "jsonread": {"type": "interface", "description": {"de": "json parser plugin basierend auf jq", "en": "json parser plugin based on jq"}, "version": "1.0.1", "state": "develop", "documentation": "http://smarthomeng.de/user/plugins_doc/config/not-yet.html", "multi_instance": true, "configuration_needed": true}, "jvcproj": {"type": "interface", "description": {"de": "Plugin um JVC D-ILA Projektoren zu kontrollieren und durch jvcprojectortools erstellte Gammakurven zu uebertragen", "en": "plugin to control JVC D-ILA projectors and transfer gammatables generated with jvcprojectortools"}, "version": "1.0.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "kathrein": {"type": "interface", "description": {"de": "Plugin zur Ansteuerung von Kathrein Receivern", "en": "Plugin to control Kathrein receiver"}, "version": "1.6.1", "state": "ready", "documentation": "https://github.com/smarthomeNG/smarthome/Kathrein/Readme.md", "multi_instance": false, "configuration_needed": true}, "knx": {"type": "gateway", "description": {"de": "Anbindung von KNX Bussystemen via EIBD/KNXD Daemon", "en": "Establishes connections to KNX bus systems via EIBD/KNXD daemon", "fr": "Connexion de syst\u00e8mes KNX via EIBD/KNXD"}, "version": "1.7.5", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins/knx/user_doc.html", "multi_instance": true, "configuration_needed": true}, "kodi": {"type": "interface", "description": {"de": "Anbindung von Kodi (ehemals XBMC)", "en": "Connecting Kodi (formerly XBMC)"}, "version": "1.6.0", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/kodi/user_doc.html", "multi_instance": true, "configuration_needed": true}, "kostal": {"type": "interface", "description": {"de": "Anbindung eines KOSTAL-Wechselrichters  [KOSTAL](http://www.kostal-solar-electric.com/) \n\n\nDas Plugin funktioniert aktuell mit den folgenden Inverter Moduln von KOSTAL:\n\n\n* KOSTAL PIKO 3.0 UI-Version 06.20 (datastructure=json)\n* KOSTAL PIKO 5.5 UI-Version 05.xx (datastructure=html)\n\n\n(should work with all KOSTAL PIKO inverters)", "en": "This plugin is designed to retrieve data from a [KOSTAL](http://www.kostal-solar-electric.com/) inverter \nmodule (e.g. PIKO inverters). Since UI-version (communication-board) 6 json-format is supported.\n\n\nIs currently working with the following KOSTAL inverter modules:\n\n\n* KOSTAL PIKO 3.0 UI-Version 06.20 (datastructure=json)\n* KOSTAL PIKO 5.5 UI-Version 05.xx (datastructure=html)\n\n\n(should work with all KOSTAL PIKO inverters)"}, "version": "1.3.2", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "kostalmodbus": {"type": "interface", "description": {"de": "Plugin zur Anbindung von einem Kostal Wechselrichter \u00fcber Modbus an SmartHomeNG", "en": "Plugin to connect your Kostal inverter via modbus with SmartHomeNG"}, "version": "1.6.0", "state": "develop", "documentation": null, "multi_instance": false, "configuration_needed": true}, "ksemmodbus": {"type": "interface", "description": {"de": "Plugin zur Anbindung von einem Kostal Smart Energy Meter \u00fcber Modbus an SmartHomeNG", "en": "Plugin to connect your Kostal Smart Energy Meter via modbus with SmartHomeNG"}, "version": "1.6.0", "state": "develop", "documentation": null, "multi_instance": false, "configuration_needed": true}, "lirc": {"type": "gateway", "description": {"de": "Sendet Kommandos an lircd, das wiederum IR-Signale an Ger\u00e4te mit IR-Schnittstelle versendet", "en": "Sends commands to lircd that sends IR-signals to any device that has an IR-interface"}, "version": "1.5.0", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/lirc/user_doc.html", "multi_instance": true, "configuration_needed": true}, "logo": {"type": "interface", "description": {"de": "Ansteuerung einer LOGO SPS", "en": "Control a LOGO PLC"}, "version": "1.2.4", "state": "ready", "documentation": "https://www.smarthomeng.de/dev/user/plugins/logo/README.html", "multi_instance": true, "configuration_needed": true}, "luxtronic2": {"type": "interface", "description": {"de": "Integration von Systemen die eine Luxtronic-Steuerung haben (z.B Heizungen)", "en": "Integration of systems that have a Luxtronic interface (e.g. heating systems)"}, "version": "1.3.2", "state": "qa-passed", "documentation": "", "multi_instance": false, "configuration_needed": true}, "mailrcv": {"type": "web", "description": {"de": "Empfangen von eMails via imap", "en": "Receive emails via imap"}, "version": "1.4.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "mailsend": {"type": "web", "description": {"de": "Versenden von eMails via smtp. Dieses Plugin erm\u00f6glicht das Versenden von eMails aus Logiken heraus, durch Aufruf einer Funktion", "en": "Send emails via smtp. This plugin allows to send emails from logics by calling a function."}, "version": "1.4.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "memlog": {"type": "system", "description": {"de": "Speichern der Logeintr\u00e4ge im Speicher (zur Anzeige in der VISU)", "en": "Store log entries in memory (for display in VISU)"}, "version": "1.6.0", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "miflora": {"type": "interface", "description": {"de": "Auslesen von Xiaomi Mi Flora Pflanzensensoren, **seit SmartHomeNG v1.3**", "en": "Read from Xiaomi MiFlora plant sensors."}, "version": "1.6.2", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins_doc/config/miflora.html", "multi_instance": true, "configuration_needed": true}, "milight": {"type": "gateway", "description": {"de": "Unterst\u00fctzung von MiLight Leuchtmitteln", "en": "Support of Milight Lights"}, "version": "1.6.1", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/milight/user_doc.html", "multi_instance": true, "configuration_needed": true}, "mlgw": {"type": "gateway", "description": {"de": "Bang & Olufsen Masterlink Gateway", "en": "Bang & Olufsen Masterlink Gateway"}, "version": "1.1.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "mpd": {"type": "gateway", "description": {"de": "Music Player Deamon (MPD) Unterst\u00fctzung", "en": "Music Player Deamon (MPD) support"}, "version": "1.4.2", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/mpd/README.html", "multi_instance": true, "configuration_needed": true}, "mqtt": {"type": "protocol", "description": {"de": "MQTT Plugin, welches das MQTT Module von SmartHomeNG zur Kommunikation nutzt.", "en": "MQTT plugin which utilizes the MQTT module of SmartHomeNG for communication"}, "version": "2.0.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "mvg_live": {"type": "web", "description": {"de": "Abfrage der Abfahrten in Stationen der M\u00fcnchner Verkehrsbetriebe (MVG)", "en": "Retrieval of departure times of stations within the M\u00fcnchner Verkehrsbetriebe (MVG)"}, "version": "1.5.1", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/mvg_live.html", "multi_instance": false, "configuration_needed": true}, "neato": {"type": "interface", "description": {"de": "Plugin zur Anbindung von einem Neato/Vorwerk Staubsauger Robotor an SmartHomeNG", "en": "Plugin to connect your Neato/Vorwerk Vacuum Robot with SmartHomeNG"}, "version": "1.6.4", "state": "ready", "documentation": "https://github.com/smarthomeng/plugins/blob/develop/neato/README.md", "multi_instance": false, "configuration_needed": true}, "network": {"type": "protocol", "description": {"de": "Daten per UDP und TCP Protokoll sowie HTTP GET empfangen und per UDP senden", "en": "Receive data with UDP and TCP protocol as well as HTTP GET and send with UDP"}, "version": "1.4.1", "state": "ready", "documentation": "https://www.smarthomeng.de/developer/plugins/network/user_doc.html", "multi_instance": false, "configuration_needed": true}, "nuki": {"type": "interface", "description": {"de": "Unterst\u00fctzung f\u00fcr ein NUKI Smart-Lock", "en": "Support for the NUKI Smart Lock"}, "version": "1.6.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "nut": {"type": "interface", "description": {"de": "Anbindung an eine UPS \u00fcber den NUT daemon\n\n\nMehr \u00fcber NUT unter http://networkupstools.org/", "en": "This plugin is connecting to NUT daemon and can be used to read ups variables.\n\n\nThe primary goal of the Network UPS Tools (NUT) project is to provide support for Power Devices, \nsuch as Uninterruptible Power Supplies, Power Distribution Units, Automatic Transfer Switch, Power Supply \nUnits and Solar Controllers.\n\n\nThe plugin can be used standalone to list available variables using command `upsc your_ups_name`. \nMore about NUT: http://networkupstools.org/"}, "version": "1.3.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "odlinfo": {"type": "web", "description": {"de": "Dieses Plugin liefert die Gamme-Ortsdosisleistung (ODL) in \u00b5Sv/h  von mehreren Stationen in Deutschland (zur Verf\u00fcgung gestellt durch das Bundesamt f\u00fcr Strahlenschutz). Mehr Informationen unter https://odlinfo.bfs.de.", "en": "This plugin retrieves the Gamma-Ortsdosisleistung (ODL) in from several measuring stations (by \"Bundesamt f\u00fcr Strahlenschutz\") in Germany. For more information see https://odlinfo.bfs.de."}, "version": "1.4.3", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/odlinfo.html", "multi_instance": false, "configuration_needed": true}, "onewire": {"type": "gateway", "description": {"de": "1-Wire Unterst\u00fctzung \u00fcber owserver", "en": "1-Wire support via owserver", "fr": "Support de 1-Wire \u00e0 travers owserver"}, "version": "1.6.8", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins_doc/config/onewire.html", "multi_instance": true, "configuration_needed": true}, "openweathermap": {"type": "web", "description": {"de": "Wetterdaten \u00fcber OpenWeatherMap.", "en": "Weather data via OpenWeatherMap."}, "version": "1.5.1", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins/openweathermap/user_doc.html", "multi_instance": true, "configuration_needed": true}, "operationlog": {"type": "system", "description": {"de": "Implementierung separater Logs", "en": "Implementation of additional logs"}, "version": "1.3.4", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/operationlog/README.html", "multi_instance": false, "configuration_needed": true}, "plex": {"type": "interface", "description": {"de": "Erlaubt das Senden von Notifications an Plex Clients (wie RasPlex)", "en": "Send notifications to Plex clients"}, "version": "1.0.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "pluggit": {"type": "interface", "description": {"de": "Anbindung einer KWL Pluggit AP310 \u00fcber das Modbus Protokoll", "en": "Connection of a Pluggit AP310 unit using Modbus protocol"}, "version": "1.2.3", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "prowl": {"type": "web", "description": {"de": "Prowl Unterst\u00fctzung", "en": "Support for prowl"}, "version": "1.3.2", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/prowl/README.html", "multi_instance": true, "configuration_needed": true}, "pushbullet": {"type": "web", "description": {"de": "Anbindung des Pushbullet Service", "en": "Support fro Pushbullet service"}, "version": "1.5.2", "state": "ready", "documentation": "https://www.smarthomeng.de/developer/plugins/pushbullet/README.html", "multi_instance": false, "configuration_needed": true}, "pushover": {"type": "web", "description": {"de": "Anbindung des Pushover Dienstes", "en": "Connect to the Pushover Service", "fr": "Connexion au service Pushover"}, "version": "1.6.1", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "raumfeld": {"type": "gateway", "description": {"de": "Prototyp einer einfachen Anbindung von Teufel Raumfeld", "en": ""}, "version": "", "state": "ready", "documentation": "", "multi_instance": "", "configuration_needed": true}, "raumfeld_ng": {"type": "gateway", "description": {"de": "Ansteuerung von Teufel Raumfeld Ger\u00e4ten via Raumserver und NodeRED", "en": "Control Teufel Raumfeld devices via Raumserver and NodeRED"}, "version": "1.5.1", "state": "develop", "documentation": "", "multi_instance": false, "configuration_needed": true}, "rcswitch": {"type": "gateway", "description": {"de": "Schalten von 433 MHz Funksteckdosen", "en": "Support for 433 MHz wireless sockets"}, "version": "1.2.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "resol": {"type": "interface", "description": {"de": "Interface fuer Resol VBUS", "en": "Interface for Resol VBUS"}, "version": "1.0.2", "state": "develop", "documentation": "https://github.com/smarthomeNG/plugins/resol/README.md", "multi_instance": false, "configuration_needed": true}, "robonect": {"type": "interface", "description": {"de": "Plugin zum Auslesen von Daten bzw. zum Ansteuern eines M\u00e4hroboters mit Robonect HX Modul (https://robonect.de/).", "en": "Plugin to read data / to control a robotic lawnmower with Robonect HX module (https://robonect.de/)."}, "version": "1.0.2", "state": "develop", "documentation": "", "multi_instance": false, "configuration_needed": true}, "roomba": {"type": "interface", "description": {"de": "Anbindung von iRobot Roomba Staubsaugern", "en": "Communication with iRobot Roomba vacuum cleaner"}, "version": "1.6.0", "state": "develop", "documentation": "https://github.com/smarthomeNG/smarthome/roomba/user_doc.html", "multi_instance": false, "configuration_needed": true}, "roomba_980": {"type": "interface", "description": {"de": "Anbindung von iRobot Roomba Staubsaugern der Serie 900", "en": "integration of the iRobot Roomba vacuum cleaner series 900"}, "version": "1.0.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "rpi1wire": {"type": "gateway", "description": {"de": "Plugin f\u00fcr den Rapberry Pi. Erlaubt den einfachen Zugriff auf 1-Wire Sensoren. Getestet mit Raspberry Pi B und dem Temperatursensor DS18B20", "en": "Plugin developed for the Raspberry Pi. It allows easy access to 1-Wire sensors. Tested with the Raspberry Pi B and the temperature sensor DS18B20", "fr": "Support de 1-Wire \u00e0 travers Raspberry Pi sur SmartHomeNG v1.5 et plus"}, "version": "1.7.1", "state": "develop", "documentation": "https://github.com/smarthomeNG/plugins/rpi1wire/Readme.md", "multi_instance": false, "configuration_needed": true}, "rrd": {"type": "system", "description": {"de": "Unterst\u00fctzung f\u00fcr Round Robin Datenbanken (rrdtool)", "en": "Support for round robin databases (rrdtool)"}, "version": "1.6.2", "state": "develop", "documentation": "https://github.com/smarthomeNG/plugins/blob/develop/rrd/README.md", "multi_instance": false, "configuration_needed": true}, "rtr": {"type": "system", "description": {"de": "Raum Temperatur Regler", "en": "Room Temperature controller"}, "version": "1.6.0", "state": "ready", "documentation": "https://www.smarthomeng.de/dev/user/plugins/rtr/README.html", "multi_instance": false, "configuration_needed": true}, "rtr2": {"type": "system", "description": {"de": "Raum Temperatur Regler v2", "en": "Room Temperature controller v2"}, "version": "2.0.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": false}, "russound": {"type": "interface", "description": {"de": "Anbindung von Russound Audio Ger\u00e4ten", "en": "Russound audio device "}, "version": "1.6.0", "state": "develop", "documentation": "https://github.com/smarthomeNG/smarthome/wiki/CLI-Plugin", "multi_instance": false, "configuration_needed": true}, "shelly": {"type": "gateway", "description": {"de": "Plugin zur Steuerung von Shelly Devices, welches das MQTT Module von SmartHomeNG zur Kommunikation nutzt.", "en": "Plugin to control Shelly devices which utilizes the MQTT module of SmartHomeNG for communication"}, "version": "1.1.3", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "simulation": {"type": "system", "description": {"de": "Aufnahme und Abspielen von Aktionsreihenfolgen.", "en": "Recording And Replay of Actions on Items."}, "version": "1.5.1", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/simulation/user_doc.html", "multi_instance": false, "configuration_needed": true}, "slack": {"type": "web", "description": {"de": "Slack messaging Dienst", "en": "Slack messaging service"}, "version": "1.0.0", "state": "develop", "documentation": "", "multi_instance": true, "configuration_needed": true}, "sma": {"type": "interface", "description": {"de": "Unterst\u00fctzung f\u00fcr SMA Wechselrichter SunnyBoy 5000TL-21, Sunny Tripower 8000TL-10, Sunny Tripower 12000TL-10", "en": "Support for the SMA Inverter SunnyBoy 5000TL-21, Sunny Tripower 8000TL-10, Sunny Tripower 12000TL-10"}, "version": "1.3.1", "state": "ready", "documentation": "https://smarthomeng.de/user/plugins_doc/config/sma.html", "multi_instance": false, "configuration_needed": true}, "sma_em": {"type": "interface", "description": {"de": "Auslesen des SMA Energy Meter Netzwerk Multicasts", "en": "Access to data from SMA Energy Meter network multicast"}, "version": "1.6.1", "state": "qa-passed", "documentation": "http://smarthomeng.de/user/plugins_doc/config/sma_em.html", "multi_instance": false, "configuration_needed": true}, "smarttv": {"type": "interface", "description": {"de": "Dieses Plugin erlaubt es SmartTV Ger\u00e4te wie z.B. Samsung zu steuern. Es hat zwei Implementierungen (f\u00fcr das alte und das neue API der TVs). F\u00fcr das neue API muss auf dem TV der Zugriff akzeptiert werden, indem ein Button auf dem TV gedr\u00fcckt wird, wenn der erste Request eingeht.", "en": "The plugin allows to control SmartTVs such as Samsung. It has two implementations for old and new versions of the API on the TV. For the new version you will have to accept the access to your TV by pressing a button on your TV on the first request that comes in."}, "version": "1.3.2", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "smartvisu": {"type": "system", "description": {"de": "smartVISU Unterst\u00fctzung: Autogenerierung von Seiten; Widget Handling", "en": "Support for smartVISU: Automatic generation of pages; widget handling"}, "version": "1.8.1", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/visu_smartvisu/user_doc.html", "multi_instance": true, "configuration_needed": true}, "sml": {"type": "interface", "description": {"de": "Auslesen von Stromz\u00e4hlern via SML-Protokoll", "en": "Read data from powermeter device using SML protocol"}, "version": "1.0.0", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/sml.html", "multi_instance": true, "configuration_needed": true}, "smlx": {"type": "gateway", "description": {"de": "Auslesen von Stromz\u00e4hlern via SML-Protokoll", "en": "Readout of smartmeter with SML protocol"}, "version": "1.1.4", "state": "ready", "documentation": "https://www.smarthomeng.de/developer/plugins/smlx/user_doc.html", "multi_instance": true, "configuration_needed": true}, "snap7_logo": {"type": "interface", "description": {"de": "Ansteuerung einer Siemens LOGO PLC", "en": "Control of a Siemens LOGO PLC"}, "version": "1.5.3", "state": "ready", "documentation": "", "multi_instance": true, "configuration_needed": true}, "snmp": {"type": "protocol", "description": {"de": "SNMP Queries", "en": "SNMP Queries"}, "version": "1.6.0", "state": "develop", "documentation": "", "multi_instance": true, "configuration_needed": true}, "snom": {"type": "gateway", "description": {"de": "Telefonbuch Anbindung f\u00fcr Snom Telefone", "en": ""}, "version": "", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "solarlog": {"type": "interface", "description": {"de": "Auslesen der Web-Seite eines SolarLog", "en": "Read content of Solarlog webpage"}, "version": "1.6.2", "state": "develop", "documentation": "http://smarthomeng.de/user/plugins/solarlog/user_doc.html", "multi_instance": false, "configuration_needed": true}, "sonos": {"type": "gateway", "description": {"de": "Anbindung von Sonos Lautsprechern", "en": "Sonos plugin"}, "version": "1.5.4", "state": "ready", "documentation": "https://github.com/smarthomeNG/plugins/tree/master/sonos", "multi_instance": false, "configuration_needed": true}, "speech": {"type": "web", "description": {"de": "Sprach Parser", "en": "Speech parser"}, "version": "1.6.0", "state": "develop", "documentation": "http://smarthomeng.de/user/plugins/speech/user_doc.html", "multi_instance": false, "configuration_needed": true}, "sqlite_visu2_8": {"type": "system", "description": {"de": "Integration einer SQLite Datenbank - zu verwenden f\u00fcr smartVISU v2.8 und h\u00f6her", "en": "Integration of a SQLite database - use this version of the plugin for smartVISU v2.8 and above"}, "version": "1.3.1", "state": "deprecated", "documentation": "", "multi_instance": false, "configuration_needed": true}, "squeezebox": {"type": "gateway", "description": {"de": "Anbindung von Squeezebox Devices (Hard- und Softwareplayer)", "en": "Connecting squeezebox devices (hard- and software players)"}, "version": "1.4.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "stateengine": {"type": "system", "description": {"de": "Zustandsautomat f\u00fcr SmarthomeNG, ehemals AutoBlind", "en": "Finite state machine for SmarthomeNG, previously known as AutoBlind"}, "version": "1.8.1", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/stateengine/user_doc.html", "multi_instance": false, "configuration_needed": true}, "systemair": {"type": "interface", "description": {"de": "Unterst\u00fctzung f\u00fcr Systemair residential air Ger\u00e4te \u00fcber Modbus.", "en": "Support for Systemair residential air units through Modbus"}, "version": "1.3.0.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "tankerkoenig": {"type": "web", "description": {"de": "Benzinpreise \u00fcber die API von Tankerk\u00f6nig. Bitte sicherstellen, die API nicht zu oft aufzurufen. Bitte Hinweise unter https://creativecommons.tankerkoenig.de/#techInfo beachten!", "en": "Petrol station prices by the API of TankerK\u00f6nig. Take care not to request the interface too often or for too many petrol stations. Please follow instructions given on https://creativecommons.tankerkoenig.de/#techInfo."}, "version": "1.4.1", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/tankerkoenig.html", "multi_instance": false, "configuration_needed": true}, "tasmota": {"type": "gateway", "description": {"de": "Plugin zur Steuerung von Switches, die mit Tasmota Firmware ausgestattet sind. Die Kommunikation erfolgt \u00fcber das MQTT Module von SmartHomeNG.", "en": "Plugin to control switches which are equipped with Tasmote firmware. Communication is handled through the MQTT module of SmartHomeNG."}, "version": "1.0.0", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/tasmota/user_doc.html", "multi_instance": true, "configuration_needed": true}, "telegram": {"type": "web", "description": {"de": "Anbindung des Telegram Messenger Service", "en": "Connects to the telegram messenger service"}, "version": "1.6.4", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/telegram/user_doc.html", "multi_instance": true, "configuration_needed": true}, "thz": {"type": "interface", "description": {"de": "Abfrage von Tecalor oder Stiebel Eltron W\u00e4rmepumpen", "en": "read values of a Tecalor or Stiebel Eltron heatpump"}, "version": "1.0.0", "state": "develop", "documentation": "https://www.smarthomeng.de/user/plugins/thz/README.html", "multi_instance": false, "configuration_needed": true}, "traffic": {"type": "web", "description": {"de": "Abfrage der Reisezeit \u00fcber die kostenlose Google Directions API. F\u00fcr einen eigenen Key siehe https://developers.google.com/maps/documentation/directions/intro?hl=de#traffic-model.", "en": "Get travel times and directions via the (free) Google Directions API. For your own key see https://developers.google.com/maps/documentation/directions/intro?hl=de#traffic-model."}, "version": "1.5.1", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/traffic.html", "multi_instance": false, "configuration_needed": true}, "trovis557x": {"type": "interface", "description": {"de": "Plugin zum Auslesen von SAMSON TROVIS 557x Heizungsreglern", "en": "Plugin to read out SAMSON TROVIS 557x heating controllers"}, "version": "0.1.a", "state": "develop", "documentation": "https://github.com/Tom-Bom-badil/samson_trovis_557x/wiki", "multi_instance": false, "configuration_needed": true}, "unifi": {"type": "interface", "description": {"de": "Plugin um einige Features von UniFi Controllern auszulesen und fernzusteuern", "en": "Plugin to read and control some features of UniFi Controllers"}, "version": "1.6.2", "state": "develop", "documentation": "", "multi_instance": false, "configuration_needed": true}, "uzsu": {"type": "system", "description": {"de": "Universelle Zeitschaltuhr", "en": "Universal time switch"}, "version": "1.5.3", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/uzsu/user_doc.html", "multi_instance": false, "configuration_needed": true}, "vacations": {"type": "web", "description": {"de": "Erm\u00f6glicht den Abruf deutscher Schulferien f\u00fcr die Bundesl\u00e4nder BW, BY, BE, BB, HB, HH, HE, MV, NI, NW, RP, SL, SN, ST, SH, TH.", "en": "Enables the retrieval of German school vacations for the provinces BW, BY, BE, BB, HB, HH, HE, MV, NI, NW, RP, SL, SN, ST, SH, TH."}, "version": "1.0.1", "state": "develop", "documentation": "http://smarthomeng.de/user/plugins_doc/config/vacations.html", "multi_instance": false, "configuration_needed": true}, "viessmann": {"type": "interface", "description": {"de": "Lesen und Schreiben von Werten einer Viessmann Heizung", "en": "Read and write data of a Viessmann heating system"}, "version": "1.2.2", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "visu_smartvisu": {"type": "system", "description": {"de": "smartVISU Unterst\u00fctzung: Autogenerierung von Seiten; Widget Handling", "en": "Support for smartVISU: Automatic generation of pages; widget handling"}, "version": "1.3.4", "state": "deprecated", "documentation": "http://smarthomeng.de/user/plugins/visu_smartvisu/user_doc.html", "multi_instance": true, "configuration_needed": true}, "visu_websocket": {"type": "system", "description": {"de": "Websocket Protokoll f\u00fcr Visus (smartVISU, etc.)", "en": "Support for a websocket protocol (for smartVISU, etc.)"}, "version": "1.5.3", "state": "deprecated", "documentation": "http://smarthomeng.de/user/plugins/visu_websocket/user_doc.html", "multi_instance": false, "configuration_needed": true}, "volkszaehler": {"type": "interface", "description": {"de": "Item Werte bei \u00c4nderung an einen Volksz\u00e4hler Server senden", "en": "Send item values at change to a Volkszaehler Server"}, "version": "1.6.1", "state": "ready", "documentation": "https://www.smarthomeng.de/user/plugins/volkszaehler/README.html", "multi_instance": true, "configuration_needed": true}, "vr100": {"type": "interface", "description": {"de": "Anbindung eines Vorwerk Kobold VR100 Staubsaugers. Der Kobold muss mit einem Bluetooth Modul ausger\u00fcstet sein", "en": ""}, "version": "", "state": "deprecated", "documentation": "", "multi_instance": "", "configuration_needed": true}, "webservices": {"type": "web", "description": {"de": "Implementierung eines Webservice interfaces", "en": "Implementation of a webservice interface"}, "version": "1.6.2", "state": "qa-passed", "documentation": "https://www.smarthomeng.de/?category_name=plugins&s=webservices", "multi_instance": false, "configuration_needed": true}, "wettercom": {"type": "web", "description": {"de": "Integration von Wetter.COM", "en": "Integrating Wetter.COM"}, "version": "1.4.0", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "withings_health": {"type": "web", "description": {"de": "Anbindung der Nokia Health API mit Oauth2", "en": "Usage of the nokia health api with oauth2"}, "version": "1.8.0", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins_doc/config/withings_health.html", "multi_instance": true, "configuration_needed": true}, "wol": {"type": "protocol", "description": {"de": "Wake on LAN", "en": "Wake on LAN"}, "version": "1.1.2", "state": "qa-passed", "documentation": "", "multi_instance": true, "configuration_needed": true}, "wunderground": {"type": "web", "description": {"de": "Abfrage der Daten des Wetterdienstes Wunderground.com", "en": "Get weather data from wunderground.com"}, "version": "1.4.9", "state": "deprecated", "documentation": "http://smarthomeng.de/user/plugins/wunderground/user_doc.html", "multi_instance": true, "configuration_needed": true}, "xiaomi_vac": {"type": "interface", "description": {"de": "Zugriff und Steuern eines Xiaomi Saugroboters", "en": "Control a Xioami Vacuum Robot"}, "version": "1.1.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "xmpp": {"type": "protocol", "description": {"de": "Unterst\u00fctzung des Extensible Messaging and Presence Protocol (XMPP). Unterst\u00fctzt z.Zt. nur das Senden von Nachrichten.", "en": "Support for the Extensible Messaging and Presence Protocol (XMPP). Currently only message sending supported."}, "version": "1.4.1", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "yamaha": {"type": "interface", "description": {"de": "Plugin um Yamaha RX-V und RX-S Receiver zu kontrollieren, **seit SmartHomeNG v1.3**", "en": "Plugin to control Yamaha RX-V and RX-S receiver, **since SmartHomeNG v1.3**"}, "version": "1.0.2", "state": "ready", "documentation": "http://smarthomeng.de/user/plugins/yamaha/user_doc.html", "multi_instance": false, "configuration_needed": true}, "yamahayxc": {"type": "interface", "description": {"de": "Plugin, um Yamaha MusicCast-Ger\u00e4te zu kontrollieren", "en": "plugin to control Yamaha MusicCast devices"}, "version": "1.0.6", "state": "ready", "documentation": "", "multi_instance": false, "configuration_needed": true}, "zwave": {"type": "gateway", "description": {"de": "Z-Wave Unterst\u00fctzung", "en": "Z-Wave Support"}, "version": "1.4.2", "state": "develop", "documentation": "", "multi_instance": false, "configuration_needed": true}}'
    2021-02-03  01:04:11 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  01:04:28 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  01:04:28 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  02:03:23 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  02:03:23 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  02:03:23 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  02:04:11 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  03:04:11 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  04:19:12 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  04:20:12 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  05:49:12 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  07:03:41 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  07:03:41 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  07:03:41 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  07:04:13 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  07:39:13 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:03:30 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:03:31 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:03:31 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:04:13 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:18:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:18:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  08:18:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  09:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  09:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  09:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  09:04:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  10:04:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:03:29 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:04:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:09:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:10:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  11:29:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  12:04:14 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  13:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  14:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  15:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  16:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  16:05:39 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  16:05:39 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  16:05:39 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  16:49:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  17:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  18:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  19:02:19 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  19:02:19 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  19:02:19 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  19:03:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    2021-02-03  19:04:16 WARNING  plugins.database    Skipping dump, since an other database operation running! Data is buffered and dumped later.
    Welche Datenbank nimmst du her? SQLITE3 oder MYSQL?

    Sonst keiner eine Idee?

    Gruß Danny

    Einen Kommentar schreiben:


  • Sipple
    antwortet
    danny

    Ich hatte diese Warnung auch schon, aber nur einmal, kurz nach einem Neustart:

    Code:
    2021-02-02 00:01:26 WARNING lib.smarthome.main -------------------- SmartHomeNG initialization finished --------------------
    [COLOR=#e74c3c][B]2021-02-02 00:03:39 WARNING plugins.database Skipping dump, since an other database operation running! Data is buffered and dumped later.[/B][/COLOR]
    2021-02-02 00:04:38 WARNING lib.smarthome.main -------------------- SmartHomeNG restarting, initiated by admin interface --------------------
    2021-02-02 00:05:15 WARNING lib.smarthome.main -------------------- Init SmartHomeNG 1.8.1.master (84873f74) --------------------
    2021-02-02 00:05:15 WARNING lib.smarthome.main Running in Python interpreter 'v3.7.3 final', from directory /usr/local/smarthome
    2021-02-02 00:05:15 WARNING lib.smarthome.main - on Linux-5.4.83-v7+-armv7l-with-debian-10.7 (pid=11984)
    2021-02-02 00:05:16 WARNING lib.smarthome.main - Nutze Feiertage für Land 'DE', Provinz 'BY', benutzerdefinierte(r) Feiertag(e) nicht definiert
    2021-02-02 00:05:26 WARNING lib.smarthome.main -------------------- SmartHomeNG initialization finished --------------------
    Seitdem ist aber Ruhe.
    Ist es bei dir seitdem wieder aufgetreten?

    Einen Kommentar schreiben:

Lädt...
X