Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support für Gen3-Geräte #141

Open
ledermann opened this issue Oct 12, 2024 · 8 comments
Open

Support für Gen3-Geräte #141

ledermann opened this issue Oct 12, 2024 · 8 comments

Comments

@ledermann
Copy link
Member

ledermann commented Oct 12, 2024

Ein Shelly PM Mini Gen3 wird derzeitig nicht unterstützt, andere Gen3-Geräte vermutlich auch nicht.

Beispielhafte Antwort von /rpc/Shelly.GetStatus

{
    "ble": {},
    "bthome": {
        "errors": [
            "observer_disabled"
        ]
    },
    "cloud": {
        "connected": true
    },
    "mqtt": {
        "connected": true
    },
    "pm1:0": {
        "id": 0,
        "voltage": 225.7,
        "current": 0.483,
        "apower": 5.9,
        "freq": 49.9,
        "aenergy": {
            "total": 38332.91,
            "by_minute": [
                0,
                212.986,
                0
            ],
            "minute_ts": 1728147840
        },
        "ret_aenergy": {
            "total": 0,
            "by_minute": [
                0,
                0,
                0
            ],
            "minute_ts": 1728147840
        }
    },
    "script:1": {
        "id": 1,
        "running": true,
        "mem_used": 560,
        "mem_peak": 4900,
        "mem_free": 24626
    },
    "sys": {
        "mac": "ECDA3BC4D4DC",
        "restart_required": false,
        "time": "19:04",
        "unixtime": 1728147850,
        "uptime": 152243,
        "ram_size": 259852,
        "ram_free": 78408,
        "fs_size": 1048576,
        "fs_free": 614400,
        "cfg_rev": 26,
        "kvs_rev": 0,
        "schedule_rev": 0,
        "webhook_rev": 0,
        "available_updates": {},
        "reset_reason": 3
    },
    "wifi": {
        "sta_ip": "192.168.178.124",
        "status": "got ip",
        "ssid": "FRITZ!Box 6591 Cable GJ",
        "rssi": -71
    },
    "ws": {
        "connected": false
    }
}

Ansprechpartner: @Opa62

@ledermann
Copy link
Member Author

@Opa62 Ich habe das jetzt mal implementiert. Könntest du testen, ob das funktioniert?

  1. Wechsel auf develop, also image: ghcr.io/solectrus/shelly-collector:develop
  2. Setzen von SHELLY_GEN=3

Ich selbst habe (noch) kein Gen3-Gerät von Shelly und insbesondere auch kein PM Mini Gen3.

@Opa62
Copy link

Opa62 commented Jan 14, 2025 via email

@ledermann
Copy link
Member Author

Anleitung hier:
https://docs.solectrus.de/referenz/shelly-collector/

Nur eben mit Image-Tag develop (statt latest) und SHELLY_GEN=3.

Wenn du mit Docker nicht so vertraut bist, warten wir vermutlich besser auf jemand anderen, sonst wird das eine sehr mühsame Sache für alle Beteiligte ;-)

@Opa62
Copy link

Opa62 commented Jan 14, 2025 via email

@ledermann
Copy link
Member Author

Deine compose.yaml sehe ich hier leider nicht. Bitte möglichst nicht per E-Mail an GitHub antworten, sondern direkt hier auf GitHub schreiben. Anhänge funktionieren sonst nichts.

Außerdem: Was genau meinst du mit "der shelly wird nicht angezeigt"? Relevant ist die Ausgabe im Docker-Log des Shelly-Collectors. Dort wird genau protokolliert, ob und wie der Shelly kontaktiert wurde und welche Antwort es gab.

@ledermann
Copy link
Member Author

@Opa62: Für einen leichteren Test habe ich dir folgende compose.yaml vorbereitet:

services:
  shelly-collector:
    image: ghcr.io/solectrus/shelly-collector:develop
    depends_on:
      - influxdb
    environment:
      - SHELLY_GEN=3
      - SHELLY_HOST=192.168.178.123
      - INFLUX_MEASUREMENT=television
      - INFLUX_HOST=influxdb
      - INFLUX_TOKEN=my-token
      - INFLUX_ORG=my-org
      - INFLUX_BUCKET=my-bucket

  influxdb:
    image: influxdb:2.7-alpine
    ports:
      - 8086
    environment:
      - INFLUXD_HTTP_BIND_ADDRESS=:8086
      - DOCKER_INFLUXDB_INIT_MODE=setup
      - DOCKER_INFLUXDB_INIT_USERNAME=my-user
      - DOCKER_INFLUXDB_INIT_PASSWORD=my-password
      - DOCKER_INFLUXDB_INIT_ORG=my-org
      - DOCKER_INFLUXDB_INIT_BUCKET=my-bucket
      - DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-token

Damit kannst du völlig unabhängig von SOLECTRUS und ohne deine bisherige Installation ins Wanken zu bringen, die neue Entwicklerversion des Collector testen. Es wird eine separate InfluxDB verwendet, die in ein eigenes Docker-Volume schreibt.

Einfach auf den Raspi kopieren (in einen neuen Ordner als compose.yaml) und dann mit docker compose up starten. Mich würde der Output interessieren.

@Opa62
Copy link

Opa62 commented Jan 15, 2025

Hallo Georg,

ich denke ich habs geschaft,

hier der Qutput
die Werte stimmen überein

services:
shelly-collector:
image: ghcr.io/solectrus/shelly-collector:develop
depends_on:
- influxdb
environment:
- SHELLY_GEN=3
- SHELLY_HOST=192.168.178.123
- INFLUX_MEASUREMENT=television
- INFLUX_HOST=influxdb
- INFLUX_TOKEN=my-token
- INFLUX_ORG=my-org
- INFLUX_BUCKET=my-bucket

influxdb:
image: influxdb:2.7-alpine
ports:
- 8086
environment:
- INFLUXD_HTTP_BIND_ADDRESS=:8086
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=my-user
- DOCKER_INFLUXDB_INIT_PASSWORD=my-password
- DOCKER_INFLUXDB_INIT_ORG=my-org
- DOCKER_INFLUXDB_INIT_BUCKET=my-bucket
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-tokenpi@raspberrypi:~ $
pi@raspberrypi:~ $ docker compose up
[+] Running 3/2
✔ Network pi_default Created 0.2s
✔ Container pi-influxdb-1 Created 0.1s
✔ Container pi-shelly-collector-1 C... 0.0s
Attaching to influxdb-1, shelly-collector-1
influxdb-1 | {
influxdb-1 | "bolt-path": "/var/lib/influxdb2/influxd.bolt",
influxdb-1 | "engine-path": "/var/lib/influxdb2/engine",
influxdb-1 | "nats-port": 4222,
influxdb-1 | "http-bind-address": ":9999"
influxdb-1 | }
influxdb-1 | 2025-01-15T17:15:54. info booting influxd server i n the background {"system": "docker"}
influxdb-1 | ts=2025-01-15T17:15:55.131327Z lvl=info msg="Welcome to In fluxDB" log_id=0u6kHHUW000 version=v2.7.11 commit=fbf5d4ab5e build_date=2024-12- 02T17:48:08Z log_level=info
influxdb-1 | ts=2025-01-15T17:15:55.131400Z lvl=warn msg="nats-port arg ument is deprecated and unused" log_id=0u6kHHUW000
influxdb-1 | ts=2025-01-15T17:15:55.138205Z lvl=info msg="Resources ope ned" log_id=0u6kHHUW000 service=bolt path=/var/lib/influxdb2/influxd.bolt
influxdb-1 | ts=2025-01-15T17:15:55.138897Z lvl=info msg="Resources ope ned" log_id=0u6kHHUW000 service=sqlite path=/var/lib/influxdb2/influxd.sqlite
influxdb-1 | ts=2025-01-15T17:15:55.140833Z lvl=info msg="Bringing up m etadata migrations" log_id=0u6kHHUW000 service="KV migrations" migration_count=2 0
influxdb-1 | ts=2025-01-15T17:15:55.306355Z lvl=info msg="Bringing up m etadata migrations" log_id=0u6kHHUW000 service="SQL migrations" migration_count= 8
influxdb-1 | ts=2025-01-15T17:15:55.377946Z lvl=info msg="Using data di r" log_id=0u6kHHUW000 service=storage-engine service=store path=/var/lib/influxd b2/engine/data
influxdb-1 | ts=2025-01-15T17:15:55.378191Z lvl=info msg="Compaction se ttings" log_id=0u6kHHUW000 service=storage-engine service=store max_concurrent_c ompactions=2 throughput_bytes_per_second=50331648 throughput_bytes_per_second_bu rst=50331648
influxdb-1 | ts=2025-01-15T17:15:55.378220Z lvl=info msg="Open store (s tart)" log_id=0u6kHHUW000 service=storage-engine service=store op_name=tsdb_open op_event=start
influxdb-1 | ts=2025-01-15T17:15:55.378373Z lvl=info msg="Open store (e nd)" log_id=0u6kHHUW000 service=storage-engine service=store op_name=tsdb_open o p_event=end op_elapsed=0.156ms
influxdb-1 | ts=2025-01-15T17:15:55.378611Z lvl=info msg="Starting rete ntion policy enforcement service" log_id=0u6kHHUW000 service=retention check_int erval=30m
influxdb-1 | ts=2025-01-15T17:15:55.378776Z lvl=info msg="Starting prec reation service" log_id=0u6kHHUW000 service=shard-precreation check_interval=10m advance_period=30m
influxdb-1 | ts=2025-01-15T17:15:55.381592Z lvl=info msg="Starting quer y controller" log_id=0u6kHHUW000 service=storage-reads concurrency_quota=1024 in itial_memory_bytes_quota_per_query=9223372036854775807 memory_bytes_quota_per_qu ery=9223372036854775807 max_memory_bytes=0 queue_size=1024
influxdb-1 | ts=2025-01-15T17:15:55.389614Z lvl=info msg="Configuring I nfluxQL statement executor (zeros indicate unlimited)." log_id=0u6kHHUW000 max_s elect_point=0 max_select_series=0 max_select_buckets=0
influxdb-1 | ts=2025-01-15T17:15:55.403773Z lvl=info msg=Starting log_i d=0u6kHHUW000 service=telemetry interval=8h
influxdb-1 | ts=2025-01-15T17:15:55.404309Z lvl=info msg=Listening log_ id=0u6kHHUW000 service=tcp-listener transport=http addr=:9999 port=9999
influxdb-1 | 2025-01-15T17:15:55. info pinging influxd... { "system": "docker", "ping_attempt": "0"}
influxdb-1 | 2025-01-15T17:15:55. info got response from influx d, proceeding {"system": "docker", "total_pings": "1"}
influxdb-1 | User Organization Bucket
influxdb-1 | my-user my-org my-bucket
influxdb-1 | 2025-01-15T17:15:56. info Executing user-provided scripts {"system": "docker", "script_dir": "/docker-entrypoint-initdb.d"}
influxdb-1 | 2025-01-15T17:15:56. info initialization complete, shutting down background influxd {"system": "docker"}
shelly-collector-1 | Shelly collector for SOLECTRUS, Version develop, built at 2025-01-14T12:18:17.045Z
shelly-collector-1 | https://github.com/solectrus/shelly-collector
shelly-collector-1 | Copyright (c) 2024-2025 Georg Ledermann, released under th e MIT License
shelly-collector-1 |
shelly-collector-1 | Using Ruby 3.4.1 on platform aarch64-linux-musl
shelly-collector-1 | Pushing to InfluxDB at http://influxdb:8086, bucket my-buc ket, measurement television
shelly-collector-1 | Pulling from your Shelly (Gen3) at http://192.168.178.123/ rpc/Shelly.GetStatus every 5 seconds
influxdb-1 | 2025-01-15T17:15:56. info found existing boltdb fi le, skipping setup wrapper {"system": "docker", "bolt_path": "/var/lib/infl uxdb2/influxd.bolt"}
shelly-collector-1 |
shelly-collector-1 | Got record #1 at 2025-01-15 17:15:56 +0000 within 43 ms, P ower 65.3 W
shelly-collector-1 | Error while pushing record #1 to InfluxDB: Failed to open TCP connection to influxdb:8086 (Connection refused - connect(2) for "influxdb" port 8086)
shelly-collector-1 | The record has been queued. Will retry to push 1 records l ater.
influxdb-1 | ts=2025-01-15T17:15:56.574723Z lvl=info msg="Welcome to In fluxDB" log_id=0u6kHN7W000 version=v2.7.11 commit=fbf5d4ab5e build_date=2024-12- 02T17:48:08Z log_level=info
influxdb-1 | ts=2025-01-15T17:15:56.574782Z lvl=warn msg="nats-port arg ument is deprecated and unused" log_id=0u6kHN7W000
influxdb-1 | ts=2025-01-15T17:15:56.581956Z lvl=info msg="Resources ope ned" log_id=0u6kHN7W000 service=bolt path=/var/lib/influxdb2/influxd.bolt
influxdb-1 | ts=2025-01-15T17:15:56.582509Z lvl=info msg="Resources ope ned" log_id=0u6kHN7W000 service=sqlite path=/var/lib/influxdb2/influxd.sqlite
influxdb-1 | ts=2025-01-15T17:15:56.589123Z lvl=info msg="Checking Infl uxDB metadata for prior version." log_id=0u6kHN7W000 bolt_path=/var/lib/influxdb 2/influxd.bolt
influxdb-1 | ts=2025-01-15T17:15:56.589348Z lvl=info msg="Using data di r" log_id=0u6kHN7W000 service=storage-engine service=store path=/var/lib/influxd b2/engine/data
influxdb-1 | ts=2025-01-15T17:15:56.589397Z lvl=info msg="Compaction se ttings" log_id=0u6kHN7W000 service=storage-engine service=store max_concurrent_c ompactions=2 throughput_bytes_per_second=50331648 throughput_bytes_per_second_bu rst=50331648
influxdb-1 | ts=2025-01-15T17:15:56.589419Z lvl=info msg="Open store (s tart)" log_id=0u6kHN7W000 service=storage-engine service=store op_name=tsdb_open op_event=start
influxdb-1 | ts=2025-01-15T17:15:56.589615Z lvl=info msg="Open store (e nd)" log_id=0u6kHN7W000 service=storage-engine service=store op_name=tsdb_open o p_event=end op_elapsed=0.197ms
influxdb-1 | ts=2025-01-15T17:15:56.589709Z lvl=info msg="Starting rete ntion policy enforcement service" log_id=0u6kHN7W000 service=retention check_int erval=30m
influxdb-1 | ts=2025-01-15T17:15:56.589742Z lvl=info msg="Starting prec reation service" log_id=0u6kHN7W000 service=shard-precreation check_interval=10m advance_period=30m
influxdb-1 | ts=2025-01-15T17:15:56.591400Z lvl=info msg="Starting quer y controller" log_id=0u6kHN7W000 service=storage-reads concurrency_quota=1024 in itial_memory_bytes_quota_per_query=9223372036854775807 memory_bytes_quota_per_qu ery=9223372036854775807 max_memory_bytes=0 queue_size=1024
influxdb-1 | ts=2025-01-15T17:15:56.598487Z lvl=info msg="Configuring I nfluxQL statement executor (zeros indicate unlimited)." log_id=0u6kHN7W000 max_s elect_point=0 max_select_series=0 max_select_buckets=0
influxdb-1 | ts=2025-01-15T17:15:56.610841Z lvl=info msg=Starting log_i d=0u6kHN7W000 service=telemetry interval=8h
influxdb-1 | ts=2025-01-15T17:15:56.611319Z lvl=info msg=Listening log_ id=0u6kHN7W000 service=tcp-listener transport=http addr=:8086 port=8086
shelly-collector-1 |
shelly-collector-1 | Got record #2 at 2025-01-15 17:16:01 +0000 within 34 ms, P ower 64.9 W
influxdb-1 | ts=2025-01-15T17:16:01.412924Z lvl=info msg="index opened with 8 partitions" log_id=0u6kHN7W000 service=storage-engine index=tsi
influxdb-1 | ts=2025-01-15T17:16:01.413843Z lvl=info msg="loading chang es (start)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_name="field indices" path=/var/lib/influxdb2/engine/data/4c6aeebcea6ee61d/autogen/1/fields. idxl op_event=start
influxdb-1 | ts=2025-01-15T17:16:01.413973Z lvl=info msg="loading chang es (end)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_name="field i ndices" path=/var/lib/influxdb2/engine/data/4c6aeebcea6ee61d/autogen/1/fields.id xl op_event=end op_elapsed=0.139ms
influxdb-1 | ts=2025-01-15T17:16:01.414455Z lvl=info msg="Reindexing TS M data" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 db_shard_id=1
influxdb-1 | ts=2025-01-15T17:16:01.414570Z lvl=info msg="Reindexing WA L data" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 db_shard_id=1
influxdb-1 | ts=2025-01-15T17:16:01.419727Z lvl=info msg="saving field index changes (start)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_ name=MeasurementFieldSet op_event=start
influxdb-1 | ts=2025-01-15T17:16:01.421763Z lvl=info msg="saving field index changes (end)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_na me=MeasurementFieldSet op_event=end op_elapsed=2.039ms
shelly-collector-1 | Successfully pushed record #1 to InfluxDB
shelly-collector-1 | Successfully pushed record #2 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #3 at 2025-01-15 17:16:06 +0000 within 50 ms, P ower 65.2 W
shelly-collector-1 | Successfully pushed record #3 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #4 at 2025-01-15 17:16:11 +0000 within 32 ms, P ower 65.2 W
shelly-collector-1 | Successfully pushed record #4 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #5 at 2025-01-15 17:16:17 +0000 within 1048 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #5 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #6 at 2025-01-15 17:16:22 +0000 within 35 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #6 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #7 at 2025-01-15 17:16:27 +0000 within 31 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #7 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #8 at 2025-01-15 17:16:32 +0000 within 37 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #8 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #9 at 2025-01-15 17:16:37 +0000 within 85 ms, Power 65.3 W
shelly-collector-1 | Successfully pushed record #9 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #10 at 2025-01-15 17:16:42 +0000 within 33 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #10 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #11 at 2025-01-15 17:16:47 +0000 within 37 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #11 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #12 at 2025-01-15 17:16:52 +0000 within 32 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #12 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #13 at 2025-01-15 17:16:57 +0000 within 62 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #13 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #14 at 2025-01-15 17:17:02 +0000 within 35 ms, Power 65.4 W
shelly-collector-1 | Successfully pushed record #14 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #15 at 2025-01-15 17:17:07 +0000 within 64 ms, Power 64.6 W
shelly-collector-1 | Successfully pushed record #15 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #16 at 2025-01-15 17:17:13 +0000 within 31 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #16 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #17 at 2025-01-15 17:17:18 +0000 within 89 ms, Power 64.9 W
shelly-collector-1 | Successfully pushed record #17 to InfluxDB
L data" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 db_shard_id=1
influxdb-1 | ts=2025-01-15T17:16:01.419727Z lvl=info msg="saving field index changes (start)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_ name=MeasurementFieldSet op_event=start
influxdb-1 | ts=2025-01-15T17:16:01.421763Z lvl=info msg="saving field index changes (end)" log_id=0u6kHN7W000 service=storage-engine engine=tsm1 op_na me=MeasurementFieldSet op_event=end op_elapsed=2.039ms
shelly-collector-1 | Successfully pushed record #1 to InfluxDB
shelly-collector-1 | Successfully pushed record #2 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #3 at 2025-01-15 17:16:06 +0000 within 50 ms, P ower 65.2 W
shelly-collector-1 | Successfully pushed record #3 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #4 at 2025-01-15 17:16:11 +0000 within 32 ms, P ower 65.2 W
shelly-collector-1 | Successfully pushed record #4 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #5 at 2025-01-15 17:16:17 +0000 within 1048 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #5 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #6 at 2025-01-15 17:16:22 +0000 within 35 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #6 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #7 at 2025-01-15 17:16:27 +0000 within 31 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #7 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #8 at 2025-01-15 17:16:32 +0000 within 37 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #8 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #9 at 2025-01-15 17:16:37 +0000 within 85 ms, Power 65.3 W
shelly-collector-1 | Successfully pushed record #9 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #10 at 2025-01-15 17:16:42 +0000 within 33 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #10 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #11 at 2025-01-15 17:16:47 +0000 within 37 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #11 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #12 at 2025-01-15 17:16:52 +0000 within 32 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #12 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #13 at 2025-01-15 17:16:57 +0000 within 62 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #13 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #14 at 2025-01-15 17:17:02 +0000 within 35 ms, Power 65.4 W
sshelly-collector-1 |
shelly-collector-1 | Got record #18 at 2025-01-15 17:17:23 +0000 within 70 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #18 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #19 at 2025-01-15 17:17:28 +0000 within 40 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #19 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #20 at 2025-01-15 17:17:33 +0000 within 40 ms, Power 64.7 W
shelly-collector-1 | Successfully pushed record #20 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #21 at 2025-01-15 17:17:38 +0000 within 36 ms, Power 65.3 W
shelly-collector-1 | Successfully pushed record #21 to InfluxDB
^[shelly-collector-1 |
shelly-collector-1 | Got record #22 at 2025-01-15 17:17:43 +0000 within 33 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #22 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #23 at 2025-01-15 17:17:48 +0000 within 33 ms, Power 65.3 W
shelly-collector-1 | Successfully pushed record #23 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #24 at 2025-01-15 17:17:53 +0000 within 34 ms, Power 64.9 W
shelly-collector-1 | Successfully pushed record #24 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #25 at 2025-01-15 17:17:58 +0000 within 48 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #25 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #26 at 2025-01-15 17:18:03 +0000 within 35 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #26 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #27 at 2025-01-15 17:18:08 +0000 within 47 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #27 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #28 at 2025-01-15 17:18:13 +0000 within 33 ms, Power 64.9 W
shelly-collector-1 | Successfully pushed record #28 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #29 at 2025-01-15 17:18:18 +0000 within 71 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #29 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #30 at 2025-01-15 17:18:23 +0000 within 33 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #30 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #31 at 2025-01-15 17:18:28 +0000 within 34 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #31 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #32 at 2025-01-15 17:18:33 +0000 within 34 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #32 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #33 at 2025-01-15 17:18:38 +0000 within 56 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #33 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #34 at 2025-01-15 17:18:43 +0000 within 32 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #34 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #35 at 2025-01-15 17:18:48 +0000 within 32 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #35 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #36 at 2025-01-15 17:18:53 +0000 within 33 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #36 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #37 at 2025-01-15 17:18:59 +0000 within 1048 ms , Power 65.1 W
shelly-collector-1 | Successfully pushed record #37 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #38 at 2025-01-15 17:19:05 +0000 within 79 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #38 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #39 at 2025-01-15 17:19:10 +0000 within 30 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #39 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #40 at 2025-01-15 17:19:15 +0000 within 54 ms, Power 64.9 W
shelly-collector-1 | Successfully pushed record #40 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #41 at 2025-01-15 17:19:20 +0000 within 39 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #41 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #42 at 2025-01-15 17:19:25 +0000 within 56 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #42 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #43 at 2025-01-15 17:19:30 +0000 within 37 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #43 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #44 at 2025-01-15 17:19:35 +0000 within 52 ms, Power 64.7 W
shelly-collector-1 | Successfully pushed record #44 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #45 at 2025-01-15 17:19:40 +0000 within 36 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #45 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #46 at 2025-01-15 17:19:45 +0000 within 63 ms, Power 65.1 W
shelly-collector-1 | Successfully pushed record #46 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #47 at 2025-01-15 17:19:50 +0000 within 32 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #47 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #48 at 2025-01-15 17:19:55 +0000 within 51 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #48 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #49 at 2025-01-15 17:20:00 +0000 within 31 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #49 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #50 at 2025-01-15 17:20:05 +0000 within 101 ms, Power 64.8 W
shelly-collector-1 | Successfully pushed record #50 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #51 at 2025-01-15 17:20:10 +0000 within 57 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #51 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #52 at 2025-01-15 17:20:15 +0000 within 36 ms, Power 65.0 W
shelly-collector-1 | Successfully pushed record #52 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #53 at 2025-01-15 17:20:20 +0000 within 51 ms, Power 65.3 W
shelly-collector-1 | Successfully pushed record #53 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #54 at 2025-01-15 17:20:25 +0000 within 34 ms, Power 64.7 W
shelly-collector-1 | Successfully pushed record #54 to InfluxDB
shelly-collector-1 |
shelly-collector-1 | Got record #55 at 2025-01-15 17:20:30 +0000 within 79 ms, Power 65.2 W
shelly-collector-1 | Successfully pushed record #55 to InfluxDB

@ledermann
Copy link
Member Author

Prima, danke für die Rückmeldung. Dann kannst du das ja in deine SOLECTRUS-Installation übernehmen.

Ich lasse das Issue noch offen, bis ich ein neues Release mache.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants