diff --git a/.gitignore b/.gitignore index 27c7c3d..b728977 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /target /out /_work +**/CLAUDE.md +**/AGENTS.md diff --git a/examples/python-distributed-zenoh/README.md b/examples/python-distributed-zenoh/README.md new file mode 100755 index 0000000..ea9dc74 --- /dev/null +++ b/examples/python-distributed-zenoh/README.md @@ -0,0 +1,272 @@ +# Python Distributed Dora Sensor Network + +This example demonstrates **Dora's built-in distributed deployment capabilities** using the coordinator-daemon architecture with automatic Zenoh routing for cross-network communication. + +## Key Features + +✅ **Native Dora Distribution**: Uses `_unstable_deploy.machine` tags +✅ **Coordinator-Daemon Architecture**: Standard Dora distributed pattern +✅ **Automatic Zenoh Routing**: Cross-network communication handled by Dora +✅ **No Manual Zenoh Setup**: Dora manages Zenoh internally +✅ **Machine-Based Deployment**: Each node assigned to specific machine ID + +## Architecture + +``` + Dora Coordinator + │ + ┌────────────────┼────────────────┐ + │ │ │ + Daemon (edge1) Daemon (edge2) Daemon (edge3) Daemon (cloud) + │ │ │ │ + sensor-temp sensor-humidity sensor-pressure cloud-aggregator + (temperature) (humidity) (pressure) (aggregates all) +``` + +**Zenoh Integration**: When nodes are on different machines, Dora automatically uses its built-in Zenoh backend to route messages. Data flows through Zenoh topics like: +``` +dora/default/{dataflow_id}/output/sensor-temp/data +dora/default/{dataflow_id}/output/sensor-humidity/data +dora/default/{dataflow_id}/output/sensor-pressure/data +``` + +## Dataflow Configuration + +The `dataflow.yml` uses Dora's `_unstable_deploy` feature: + +```yaml +nodes: + - id: sensor-temp + _unstable_deploy: + machine: edge1 # Runs on daemon with --machine-id edge1 + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + path: python3 + args: sensor_node.py sensor_temp temperature + outputs: + - data + + - id: cloud-aggregator + _unstable_deploy: + machine: cloud # Runs on daemon with --machine-id cloud + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + inputs: + temp_data: sensor-temp/data + humidity_data: sensor-humidity/data + pressure_data: sensor-pressure/data +``` + +**Important**: The `working_dir` parameter tells each daemon where to find the Python scripts. For real distributed deployments, ensure the scripts exist at this path on each target machine. + +## Installation + +```bash +pip install -r requirements.txt +``` + +## Running on ONE Machine (Simulation) + +Simulate distributed deployment with multiple daemons on one PC: + +### Automated (Recommended) +```bash +./run_local.sh +``` + +### Manual Steps + +**Terminal 1 - Coordinator:** +```bash +dora coordinator +``` + +**Terminal 2 - Edge Device 1 (Temperature Sensor):** +```bash +dora daemon --machine-id edge1 +``` + +**Terminal 3 - Edge Device 2 (Humidity Sensor):** +```bash +dora daemon --machine-id edge2 --local-listen-port 53291 +``` + +**Terminal 4 - Edge Device 3 (Pressure Sensor):** +```bash +dora daemon --machine-id edge3 --local-listen-port 53292 +``` + +**Terminal 5 - Cloud Server:** +```bash +dora daemon --machine-id cloud --local-listen-port 53293 +``` + +**Terminal 6 - Start Dataflow:** +```bash +dora build dataflow.yml +dora start dataflow.yml +``` + +## Running on MULTIPLE Machines (Real Distribution) + +### Same Network (WiFi/LAN) + +All machines in the same network can auto-discover via Zenoh multicast. + +**On Cloud Server (e.g., 192.168.1.100):** +```bash +# Start coordinator +dora coordinator +``` + +**On Each Edge Device:** +```bash +# Edge device 1 +dora daemon --coordinator-addr 192.168.1.100 --machine-id edge1 + +# Edge device 2 +dora daemon --coordinator-addr 192.168.1.100 --machine-id edge2 + +# Edge device 3 +dora daemon --coordinator-addr 192.168.1.100 --machine-id edge3 +``` + +**On Cloud Server:** +```bash +# This daemon runs the cloud-aggregator node +dora daemon --machine-id cloud + +# Start the dataflow +dora start --coordinator-addr 192.168.1.100 dataflow.yml +``` + +### Different Networks (Cross-Network) + +When machines are in different networks (behind NAT/firewalls), use Zenoh routers. + +**1. Set up Zenoh Router on each network:** + +Create `zenoh_config.json5`: +```json5 +{ + connect: { + endpoints: ["tcp/:7447"] + } +} +``` + +**2. Start Zenoh Router:** +```bash +zenohd -l tcp/0.0.0.0:7447 +``` + +**3. Start Dora Daemons with Zenoh Config:** +```bash +# On each machine +ZENOH_CONFIG=zenoh_config.json5 dora daemon --coordinator-addr --machine-id edge1 +``` + +## Expected Output + +**Sensor Node (edge1):** +``` +=== Sensor Node: sensor_temp === +Type: temperature +Sensor node sensor_temp started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: temperature=23.45celsius +[0002] Sent: temperature=24.12celsius +[0003] Sent: temperature=22.89celsius +... +``` + +**Cloud Aggregator:** +``` +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing + +Cloud aggregator started! Press Ctrl+C to stop + +>> [00001] Received from sensor_temp: temperature=23.45celsius +>> [00002] Received from sensor_humidity: humidity=65.32percent +>> [00003] Received from sensor_temp: temperature=24.12celsius +>> [00004] Received from sensor_pressure: pressure=1013.45hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 15 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_temp | temperature | 24.12 celsius | Count: 5 +🟢 ACTIVE | sensor_humidity | humidity | 65.32 percent | Count: 4 +🟢 ACTIVE | sensor_pressure | pressure | 1013.45 hPa | Count: 3 +====================================================================== +``` + +## How Dora's Distribution Works + +1. **Coordinator**: Central manager that tracks all daemons and dataflows +2. **Daemons**: One per machine, identified by `--machine-id` +3. **Machine Assignment**: Nodes use `_unstable_deploy.machine` in YAML +4. **Automatic Routing**: + - Same machine: Direct communication + - Same network: Zenoh multicast auto-discovery + - Different networks: Zenoh routers (configured via `ZENOH_CONFIG`) + +## Deployment Checklist + +- [ ] Copy Python scripts to each target machine +- [ ] Install `dora-rs` on all machines: `pip install dora-rs` +- [ ] Start coordinator on accessible server +- [ ] Start daemon on each machine with unique `--machine-id` +- [ ] Machine IDs in YAML must match daemon `--machine-id` +- [ ] For cross-network: Set up Zenoh routers and `ZENOH_CONFIG` + +## Troubleshooting + +**"No such file or directory" error:** +- Ensure `working_dir` is set in `_unstable_deploy` section +- Verify Python scripts exist at the working directory path +- For distributed setups, copy scripts to the same path on all machines + +**Nodes not connecting:** +- Check coordinator IP is accessible from all machines +- Verify machine IDs in YAML match daemon `--machine-id` +- Check firewall allows Zenoh ports (default: UDP 7447) + +**No data received:** +- Verify nodes are running: `dora list` +- Check logs: `dora logs sensor-temp`, `dora logs cloud-aggregator` +- Ensure all Python scripts are present on their target machines + +**Cross-network issues:** +- Verify Zenoh router (`zenohd`) is running +- Check `ZENOH_CONFIG` points to correct router +- Test Zenoh connectivity: `z_ping` + +**Zenoh warnings (tcp/[::]:5456 already in use):** +- Safe to ignore when running multiple daemons locally +- Daemons will automatically retry with alternative configuration + +## Zenoh Topic Structure + +Dora uses this Zenoh topic naming: +``` +dora/{network_id}/{dataflow_id}/output/{node_id}/{output_id} +``` + +Example: +``` +dora/default/019a41c7-0718-75ca-82fe-66ad9b289b5b/output/sensor-temp/data +``` + +You can monitor these topics directly with Zenoh tools: +```bash +# Subscribe to all dora topics +z_sub 'dora/**' +``` + +## References + +- [Dora Multiple Daemons Example](https://github.com/dora-rs/dora/tree/main/examples/multiple-daemons) +- [Zenoh Documentation](https://zenoh.io/docs/) +- [Dora Documentation](https://github.com/dora-rs/dora) diff --git a/examples/python-distributed-zenoh/cloud_node.py b/examples/python-distributed-zenoh/cloud_node.py new file mode 100755 index 0000000..e6317ee --- /dev/null +++ b/examples/python-distributed-zenoh/cloud_node.py @@ -0,0 +1,151 @@ +#!/usr/bin/env python3 +""" +Distributed Cloud Aggregator using Dora +Receives sensor data from distributed nodes via Dora's Zenoh routing. +""" + +import json +import time +from collections import defaultdict +from dora import Node + + +def _ensure_bytes(value): + """Convert Dora event values (bytes or Arrow arrays) into raw bytes.""" + + if value is None: + return b"" + + if isinstance(value, (bytes, bytearray, memoryview)): + return bytes(value) + + # pyarrow Scalar exposes to_pybytes for binary payloads + to_pybytes = getattr(value, "to_pybytes", None) + if callable(to_pybytes): + return to_pybytes() + + # Arrow arrays (e.g., UInt8Array) provide a Python list view of integers + to_pylist = getattr(value, "to_pylist", None) + if callable(to_pylist): + try: + return bytes(to_pylist()) + except TypeError: + pass + + # NumPy-compatible buffers support to_numpy -> tobytes chain + to_numpy = getattr(value, "to_numpy", None) + if callable(to_numpy): + array = to_numpy() + if hasattr(array, "tobytes"): + return array.tobytes() + + raise TypeError(f"Unsupported payload type for Dora event: {type(value)!r}") + +class SensorAggregator: + def __init__(self): + self.sensor_data = defaultdict(lambda: {"count": 0, "last_value": None, "last_update": None}) + self.total_messages = 0 + + def update(self, sensor_id, data): + """Update sensor data""" + self.sensor_data[sensor_id]["count"] += 1 + self.sensor_data[sensor_id]["last_value"] = data + self.sensor_data[sensor_id]["last_update"] = time.time() + self.total_messages += 1 + + def get_active_sensors(self, timeout=5): + """Get list of sensors that have sent data recently""" + current_time = time.time() + active = [] + for sensor_id, info in self.sensor_data.items(): + if info["last_update"] and (current_time - info["last_update"]) < timeout: + active.append(sensor_id) + return active + + def print_summary(self): + """Print summary of all sensors""" + active_sensors = self.get_active_sensors() + print(f"\n{'='*70}") + print(f"Cloud Aggregator Summary - Total Messages: {self.total_messages}") + print(f"Active Sensors: {len(active_sensors)}") + print(f"{'='*70}") + + for sensor_id in sorted(self.sensor_data.keys()): + info = self.sensor_data[sensor_id] + status = "🟢 ACTIVE" if sensor_id in active_sensors else "🔴 INACTIVE" + + if info["last_value"]: + data = info["last_value"] + print(f"{status} | {sensor_id:15s} | {data['sensor_type']:12s} | " + f"{data['value']:7.2f} {data['unit']:8s} | Count: {info['count']:5d}") + else: + print(f"{status} | {sensor_id:15s} | No data received yet") + + print(f"{'='*70}\n") + +def main(): + print("=== Cloud Aggregator Node ===") + print("Receiving data via Dora's distributed Zenoh routing") + + # Initialize the Dora node + # Dora automatically handles Zenoh communication for distributed nodes + node = Node() + + print("\nCloud aggregator started! Press Ctrl+C to stop\n") + + aggregator = SensorAggregator() + last_summary_time = time.time() + summary_interval = 10 # Print summary every 10 seconds + + # Process events + try: + for event in node: + event_type = event["type"] + + if event_type == "INPUT": + input_id = event["id"] + + # Handle data from different sensors + if input_id in ["temp_data", "humidity_data", "pressure_data"]: + # Parse sensor data + raw_value = event["value"] + try: + data_bytes = _ensure_bytes(raw_value) + except TypeError as exc: + print(f"Unsupported payload for {input_id}: {exc}") + continue + payload = data_bytes.decode('utf-8') + data = json.loads(payload) + sensor_id = data["sensor_id"] + + # Update aggregator + aggregator.update(sensor_id, data) + + # Print received data + print(f">> [{aggregator.total_messages:05d}] Received from {sensor_id}: " + f"{data['sensor_type']}={data['value']}{data['unit']}") + + # Print summary periodically + current_time = time.time() + if current_time - last_summary_time >= summary_interval: + aggregator.print_summary() + last_summary_time = current_time + + elif event_type == "STOP": + print("Received stop signal") + break + + elif event_type == "INPUT_CLOSED": + print(f"Input `{event['id']}` was closed") + + except KeyboardInterrupt: + print("\n\nReceived Ctrl+C, shutting down...") + + # Print final summary + print("\n=== Final Summary ===") + aggregator.print_summary() + + print("Cloud aggregator exited successfully") + +if __name__ == "__main__": + main() diff --git a/examples/python-distributed-zenoh/dataflow.yml b/examples/python-distributed-zenoh/dataflow.yml new file mode 100755 index 0000000..fdb6ace --- /dev/null +++ b/examples/python-distributed-zenoh/dataflow.yml @@ -0,0 +1,45 @@ +nodes: + - id: sensor-temp + _unstable_deploy: + machine: edge1 + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + path: python3 + args: sensor_node.py sensor_temp temperature + inputs: + tick: dora/timer/millis/1000 + outputs: + - data + + - id: sensor-humidity + _unstable_deploy: + machine: edge2 + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + path: python3 + args: sensor_node.py sensor_humidity humidity + inputs: + tick: dora/timer/millis/1500 + outputs: + - data + + - id: sensor-pressure + _unstable_deploy: + machine: edge3 + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + path: python3 + args: sensor_node.py sensor_pressure pressure + inputs: + tick: dora/timer/millis/2000 + outputs: + - data + + - id: cloud-aggregator + _unstable_deploy: + machine: cloud + working_dir: /Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh + path: python3 + args: cloud_node.py + inputs: + temp_data: sensor-temp/data + humidity_data: sensor-humidity/data + pressure_data: sensor-pressure/data + tick: dora/timer/millis/100 diff --git a/examples/python-distributed-zenoh/out/.gitignore b/examples/python-distributed-zenoh/out/.gitignore new file mode 100644 index 0000000..b4d9991 --- /dev/null +++ b/examples/python-distributed-zenoh/out/.gitignore @@ -0,0 +1,3 @@ +/dataflow.dora-session.yaml + +/dataflow.local.dora-session.yaml diff --git a/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_cloud-aggregator.txt b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_cloud-aggregator.txt new file mode 100644 index 0000000..350865d --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_cloud-aggregator.txt @@ -0,0 +1,17 @@ +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 114, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 60, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-humidity.txt b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-humidity.txt new file mode 100644 index 0000000..d4882dd --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-humidity.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_humidity === +Type: humidity +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-pressure.txt b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-pressure.txt new file mode 100644 index 0000000..a080774 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-pressure.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_pressure === +Type: pressure +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-temp.txt b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-temp.txt new file mode 100644 index 0000000..67149e0 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4630-93c9-7be6-945b-90626adbabf3/log_sensor-temp.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_temp === +Type: temperature +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_cloud-aggregator.txt b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_cloud-aggregator.txt new file mode 100644 index 0000000..350865d --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_cloud-aggregator.txt @@ -0,0 +1,17 @@ +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 114, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 60, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-humidity.txt b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-humidity.txt new file mode 100644 index 0000000..d4882dd --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-humidity.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_humidity === +Type: humidity +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-pressure.txt b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-pressure.txt new file mode 100644 index 0000000..a080774 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-pressure.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_pressure === +Type: pressure +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-temp.txt b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-temp.txt new file mode 100644 index 0000000..67149e0 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4640-7af8-7f2c-98b1-1e2b13497de7/log_sensor-temp.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_temp === +Type: temperature +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_cloud-aggregator.txt b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_cloud-aggregator.txt new file mode 100644 index 0000000..350865d --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_cloud-aggregator.txt @@ -0,0 +1,17 @@ +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 114, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 60, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-humidity.txt b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-humidity.txt new file mode 100644 index 0000000..d4882dd --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-humidity.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_humidity === +Type: humidity +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-pressure.txt b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-pressure.txt new file mode 100644 index 0000000..a080774 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-pressure.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_pressure === +Type: pressure +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-temp.txt b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-temp.txt new file mode 100644 index 0000000..67149e0 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a464b-1c92-7740-b473-191578abab02/log_sensor-temp.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_temp === +Type: temperature +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 90, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/sensor_node.py", line 49, in main + node = Node() + ^^^^^^ +RuntimeError: Could not initiate node from environment variable. For dynamic node, please add a node id in the initialization function. + +Caused by: + 0: failed to init event stream + 1: failed to register node with dora-daemon + 2: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 + +Location: + apis/rust/node/src/daemon_connection/mod.rs:71:30 diff --git a/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_cloud-aggregator.txt b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_cloud-aggregator.txt new file mode 100644 index 0000000..c2e1ec7 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_cloud-aggregator.txt @@ -0,0 +1,12 @@ +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing + +Cloud aggregator started! Press Ctrl+C to stop + +Traceback (most recent call last): + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 114, in + main() + File "/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh/cloud_node.py", line 80, in main + payload = data_bytes.decode('utf-8') + ^^^^^^^^^^^^^^^^^ +AttributeError: 'pyarrow.lib.UInt8Array' object has no attribute 'decode' diff --git a/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-humidity.txt b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-humidity.txt new file mode 100644 index 0000000..ea012fe --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-humidity.txt @@ -0,0 +1,17 @@ +=== Sensor Node: sensor_humidity === +Type: humidity +Sensor node sensor_humidity started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: humidity=64.27percent +[0002] Sent: humidity=69.24percent +[0003] Sent: humidity=75.53percent +[0004] Sent: humidity=63.43percent +[0005] Sent: humidity=50.57percent +[0006] Sent: humidity=65.22percent +[0007] Sent: humidity=35.45percent +[0008] Sent: humidity=82.93percent +[0009] Sent: humidity=62.86percent +Received stop signal +Sensor node sensor_humidity exited successfully diff --git a/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-pressure.txt b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-pressure.txt new file mode 100644 index 0000000..80878c4 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-pressure.txt @@ -0,0 +1,15 @@ +=== Sensor Node: sensor_pressure === +Type: pressure +Sensor node sensor_pressure started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: pressure=1028.2hPa +[0002] Sent: pressure=1013.11hPa +[0003] Sent: pressure=1020.81hPa +[0004] Sent: pressure=1006.34hPa +[0005] Sent: pressure=980.64hPa +[0006] Sent: pressure=989.55hPa +[0007] Sent: pressure=1017.73hPa +Received stop signal +Sensor node sensor_pressure exited successfully diff --git a/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-temp.txt b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-temp.txt new file mode 100644 index 0000000..38406c6 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a465b-ee2e-7e87-b4dc-00c9b449194b/log_sensor-temp.txt @@ -0,0 +1,22 @@ +=== Sensor Node: sensor_temp === +Type: temperature +Sensor node sensor_temp started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: temperature=30.85celsius +[0002] Sent: temperature=17.38celsius +[0003] Sent: temperature=34.59celsius +[0004] Sent: temperature=19.72celsius +[0005] Sent: temperature=15.06celsius +[0006] Sent: temperature=19.9celsius +[0007] Sent: temperature=27.23celsius +[0008] Sent: temperature=27.25celsius +[0009] Sent: temperature=21.0celsius +[0010] Sent: temperature=20.81celsius +[0011] Sent: temperature=23.5celsius +[0012] Sent: temperature=27.85celsius +[0013] Sent: temperature=26.04celsius +[0014] Sent: temperature=15.79celsius +Received stop signal +Sensor node sensor_temp exited successfully diff --git a/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_cloud-aggregator.txt b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_cloud-aggregator.txt new file mode 100644 index 0000000..5921841 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_cloud-aggregator.txt @@ -0,0 +1,4255 @@ +=== Cloud Aggregator Node === +Receiving data via Dora's distributed Zenoh routing + +Cloud aggregator started! Press Ctrl+C to stop + +>> [00001] Received from sensor_temp: temperature=33.82celsius +>> [00002] Received from sensor_humidity: humidity=69.97percent +>> [00003] Received from sensor_pressure: pressure=1007.0hPa +>> [00004] Received from sensor_temp: temperature=28.38celsius +>> [00005] Received from sensor_humidity: humidity=30.85percent +>> [00006] Received from sensor_pressure: pressure=1000.25hPa +>> [00007] Received from sensor_temp: temperature=23.72celsius +>> [00008] Received from sensor_humidity: humidity=41.04percent +>> [00009] Received from sensor_temp: temperature=24.19celsius +>> [00010] Received from sensor_pressure: pressure=1005.78hPa +>> [00011] Received from sensor_temp: temperature=21.7celsius +>> [00012] Received from sensor_humidity: humidity=48.75percent +>> [00013] Received from sensor_temp: temperature=23.69celsius +>> [00014] Received from sensor_pressure: pressure=1029.81hPa +>> [00015] Received from sensor_humidity: humidity=34.87percent +>> [00016] Received from sensor_temp: temperature=17.85celsius +>> [00017] Received from sensor_temp: temperature=34.14celsius +>> [00018] Received from sensor_humidity: humidity=36.02percent +>> [00019] Received from sensor_pressure: pressure=1017.97hPa +>> [00020] Received from sensor_temp: temperature=23.59celsius +>> [00021] Received from sensor_humidity: humidity=89.5percent +>> [00022] Received from sensor_temp: temperature=15.45celsius +>> [00023] Received from sensor_pressure: pressure=1014.72hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 23 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 89.50 percent | Count: 7 +🟢 ACTIVE | sensor_pressure | pressure | 1014.72 hPa | Count: 6 +🟢 ACTIVE | sensor_temp | temperature | 15.45 celsius | Count: 10 +====================================================================== + +>> [00024] Received from sensor_temp: temperature=23.53celsius +>> [00025] Received from sensor_humidity: humidity=30.08percent +>> [00026] Received from sensor_temp: temperature=23.01celsius +>> [00027] Received from sensor_humidity: humidity=32.04percent +>> [00028] Received from sensor_pressure: pressure=999.87hPa +>> [00029] Received from sensor_temp: temperature=30.72celsius +>> [00030] Received from sensor_temp: temperature=20.35celsius +>> [00031] Received from sensor_humidity: humidity=47.09percent +>> [00032] Received from sensor_pressure: pressure=1020.21hPa +>> [00033] Received from sensor_temp: temperature=23.89celsius +>> [00034] Received from sensor_humidity: humidity=57.18percent +>> [00035] Received from sensor_temp: temperature=27.52celsius +>> [00036] Received from sensor_pressure: pressure=1031.8hPa +>> [00037] Received from sensor_temp: temperature=19.89celsius +>> [00038] Received from sensor_humidity: humidity=81.11percent +>> [00039] Received from sensor_temp: temperature=23.32celsius +>> [00040] Received from sensor_humidity: humidity=68.57percent +>> [00041] Received from sensor_pressure: pressure=996.84hPa +>> [00042] Received from sensor_temp: temperature=31.24celsius +>> [00043] Received from sensor_temp: temperature=18.25celsius +>> [00044] Received from sensor_humidity: humidity=38.74percent +>> [00045] Received from sensor_temp: temperature=15.59celsius +>> [00046] Received from sensor_pressure: pressure=1005.06hPa +>> [00047] Received from sensor_humidity: humidity=85.31percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 47 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.31 percent | Count: 15 +🟢 ACTIVE | sensor_pressure | pressure | 1005.06 hPa | Count: 11 +🟢 ACTIVE | sensor_temp | temperature | 15.59 celsius | Count: 21 +====================================================================== + +>> [00048] Received from sensor_temp: temperature=28.19celsius +>> [00049] Received from sensor_pressure: pressure=1039.23hPa +>> [00050] Received from sensor_temp: temperature=28.92celsius +>> [00051] Received from sensor_humidity: humidity=46.62percent +>> [00052] Received from sensor_temp: temperature=21.24celsius +>> [00053] Received from sensor_humidity: humidity=39.25percent +>> [00054] Received from sensor_pressure: pressure=1046.51hPa +>> [00055] Received from sensor_temp: temperature=18.75celsius +>> [00056] Received from sensor_temp: temperature=18.26celsius +>> [00057] Received from sensor_humidity: humidity=88.16percent +>> [00058] Received from sensor_pressure: pressure=993.91hPa +>> [00059] Received from sensor_temp: temperature=18.53celsius +>> [00060] Received from sensor_humidity: humidity=84.18percent +>> [00061] Received from sensor_temp: temperature=17.48celsius +>> [00062] Received from sensor_pressure: pressure=1030.4hPa +>> [00063] Received from sensor_temp: temperature=20.36celsius +>> [00064] Received from sensor_humidity: humidity=89.48percent +>> [00065] Received from sensor_temp: temperature=27.77celsius +>> [00066] Received from sensor_humidity: humidity=37.67percent +>> [00067] Received from sensor_pressure: pressure=1011.72hPa +>> [00068] Received from sensor_temp: temperature=27.86celsius +>> [00069] Received from sensor_temp: temperature=25.09celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 69 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 37.67 percent | Count: 21 +🟢 ACTIVE | sensor_pressure | pressure | 1011.72 hPa | Count: 16 +🟢 ACTIVE | sensor_temp | temperature | 25.09 celsius | Count: 32 +====================================================================== + +>> [00070] Received from sensor_humidity: humidity=32.28percent +>> [00071] Received from sensor_pressure: pressure=1032.08hPa +>> [00072] Received from sensor_temp: temperature=31.12celsius +>> [00073] Received from sensor_humidity: humidity=55.98percent +>> [00074] Received from sensor_temp: temperature=18.33celsius +>> [00075] Received from sensor_pressure: pressure=1037.6hPa +>> [00076] Received from sensor_temp: temperature=34.16celsius +>> [00077] Received from sensor_humidity: humidity=48.43percent +>> [00078] Received from sensor_temp: temperature=30.3celsius +>> [00079] Received from sensor_humidity: humidity=54.19percent +>> [00080] Received from sensor_pressure: pressure=1013.82hPa +>> [00081] Received from sensor_temp: temperature=30.89celsius +>> [00082] Received from sensor_temp: temperature=23.69celsius +>> [00083] Received from sensor_humidity: humidity=86.15percent +>> [00084] Received from sensor_pressure: pressure=989.38hPa +>> [00085] Received from sensor_temp: temperature=25.96celsius +>> [00086] Received from sensor_humidity: humidity=54.14percent +>> [00087] Received from sensor_temp: temperature=16.21celsius +>> [00088] Received from sensor_pressure: pressure=1026.45hPa +>> [00089] Received from sensor_temp: temperature=17.97celsius +>> [00090] Received from sensor_humidity: humidity=52.51percent +>> [00091] Received from sensor_temp: temperature=34.13celsius +>> [00092] Received from sensor_pressure: pressure=1047.74hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 92 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 52.51 percent | Count: 28 +🟢 ACTIVE | sensor_pressure | pressure | 1047.74 hPa | Count: 22 +🟢 ACTIVE | sensor_temp | temperature | 34.13 celsius | Count: 42 +====================================================================== + +>> [00093] Received from sensor_humidity: humidity=31.06percent +>> [00094] Received from sensor_temp: temperature=15.9celsius +>> [00095] Received from sensor_temp: temperature=28.68celsius +>> [00096] Received from sensor_humidity: humidity=32.43percent +>> [00097] Received from sensor_pressure: pressure=1048.36hPa +>> [00098] Received from sensor_temp: temperature=27.19celsius +>> [00099] Received from sensor_humidity: humidity=42.32percent +>> [00100] Received from sensor_temp: temperature=22.93celsius +>> [00101] Received from sensor_pressure: pressure=1020.65hPa +>> [00102] Received from sensor_temp: temperature=22.97celsius +>> [00103] Received from sensor_humidity: humidity=43.34percent +>> [00104] Received from sensor_temp: temperature=22.25celsius +>> [00105] Received from sensor_humidity: humidity=31.51percent +>> [00106] Received from sensor_pressure: pressure=990.03hPa +>> [00107] Received from sensor_temp: temperature=23.25celsius +>> [00108] Received from sensor_temp: temperature=16.31celsius +>> [00109] Received from sensor_humidity: humidity=65.04percent +>> [00110] Received from sensor_temp: temperature=31.48celsius +>> [00111] Received from sensor_pressure: pressure=1025.61hPa +>> [00112] Received from sensor_humidity: humidity=64.84percent +>> [00113] Received from sensor_temp: temperature=15.28celsius +>> [00114] Received from sensor_pressure: pressure=989.93hPa +>> [00115] Received from sensor_temp: temperature=20.31celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 115 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.84 percent | Count: 35 +🟢 ACTIVE | sensor_pressure | pressure | 989.93 hPa | Count: 27 +🟢 ACTIVE | sensor_temp | temperature | 20.31 celsius | Count: 53 +====================================================================== + +>> [00116] Received from sensor_humidity: humidity=41.69percent +>> [00117] Received from sensor_temp: temperature=16.27celsius +>> [00118] Received from sensor_humidity: humidity=80.89percent +>> [00119] Received from sensor_pressure: pressure=991.72hPa +>> [00120] Received from sensor_temp: temperature=34.05celsius +>> [00121] Received from sensor_temp: temperature=31.59celsius +>> [00122] Received from sensor_humidity: humidity=62.37percent +>> [00123] Received from sensor_pressure: pressure=1018.01hPa +>> [00124] Received from sensor_temp: temperature=27.08celsius +>> [00125] Received from sensor_humidity: humidity=39.4percent +>> [00126] Received from sensor_temp: temperature=19.98celsius +>> [00127] Received from sensor_pressure: pressure=1033.82hPa +>> [00128] Received from sensor_temp: temperature=15.73celsius +>> [00129] Received from sensor_humidity: humidity=75.08percent +>> [00130] Received from sensor_temp: temperature=20.28celsius +>> [00131] Received from sensor_pressure: pressure=991.62hPa +>> [00132] Received from sensor_humidity: humidity=63.0percent +>> [00133] Received from sensor_temp: temperature=23.64celsius +>> [00134] Received from sensor_temp: temperature=21.11celsius +>> [00135] Received from sensor_humidity: humidity=52.71percent +>> [00136] Received from sensor_pressure: pressure=992.29hPa +>> [00137] Received from sensor_temp: temperature=22.31celsius +>> [00138] Received from sensor_humidity: humidity=45.03percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 138 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 45.03 percent | Count: 43 +🟢 ACTIVE | sensor_pressure | pressure | 992.29 hPa | Count: 32 +🟢 ACTIVE | sensor_temp | temperature | 22.31 celsius | Count: 63 +====================================================================== + +>> [00139] Received from sensor_temp: temperature=18.27celsius +>> [00140] Received from sensor_pressure: pressure=1030.93hPa +>> [00141] Received from sensor_temp: temperature=20.43celsius +>> [00142] Received from sensor_humidity: humidity=55.19percent +>> [00143] Received from sensor_temp: temperature=17.43celsius +>> [00144] Received from sensor_pressure: pressure=987.65hPa +>> [00145] Received from sensor_humidity: humidity=61.45percent +>> [00146] Received from sensor_temp: temperature=28.33celsius +>> [00147] Received from sensor_temp: temperature=26.9celsius +>> [00148] Received from sensor_humidity: humidity=52.97percent +>> [00149] Received from sensor_temp: temperature=23.5celsius +>> [00150] Received from sensor_pressure: pressure=980.13hPa +>> [00151] Received from sensor_humidity: humidity=74.1percent +>> [00152] Received from sensor_temp: temperature=15.66celsius +>> [00153] Received from sensor_pressure: pressure=995.69hPa +>> [00154] Received from sensor_temp: temperature=31.75celsius +>> [00155] Received from sensor_humidity: humidity=38.01percent +>> [00156] Received from sensor_temp: temperature=32.74celsius +>> [00157] Received from sensor_pressure: pressure=999.28hPa +>> [00158] Received from sensor_humidity: humidity=79.0percent +>> [00159] Received from sensor_temp: temperature=17.61celsius +>> [00160] Received from sensor_temp: temperature=34.53celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 160 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 79.00 percent | Count: 49 +🟢 ACTIVE | sensor_pressure | pressure | 999.28 hPa | Count: 37 +🟢 ACTIVE | sensor_temp | temperature | 34.53 celsius | Count: 74 +====================================================================== + +>> [00161] Received from sensor_humidity: humidity=77.87percent +>> [00162] Received from sensor_pressure: pressure=1002.37hPa +>> [00163] Received from sensor_temp: temperature=26.32celsius +>> [00164] Received from sensor_humidity: humidity=72.97percent +>> [00165] Received from sensor_temp: temperature=18.96celsius +>> [00166] Received from sensor_temp: temperature=18.36celsius +>> [00167] Received from sensor_pressure: pressure=1027.44hPa +>> [00168] Received from sensor_humidity: humidity=68.7percent +>> [00169] Received from sensor_temp: temperature=22.42celsius +>> [00170] Received from sensor_humidity: humidity=81.82percent +>> [00171] Received from sensor_pressure: pressure=1033.76hPa +>> [00172] Received from sensor_temp: temperature=20.98celsius +>> [00173] Received from sensor_temp: temperature=15.92celsius +>> [00174] Received from sensor_humidity: humidity=46.46percent +>> [00175] Received from sensor_pressure: pressure=981.22hPa +>> [00176] Received from sensor_temp: temperature=24.82celsius +>> [00177] Received from sensor_humidity: humidity=50.79percent +>> [00178] Received from sensor_temp: temperature=28.33celsius +>> [00179] Received from sensor_pressure: pressure=1033.34hPa +>> [00180] Received from sensor_temp: temperature=21.64celsius +>> [00181] Received from sensor_humidity: humidity=33.67percent +>> [00182] Received from sensor_temp: temperature=33.67celsius +>> [00183] Received from sensor_humidity: humidity=77.86percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 183 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 77.86 percent | Count: 57 +🟢 ACTIVE | sensor_pressure | pressure | 1033.34 hPa | Count: 42 +🟢 ACTIVE | sensor_temp | temperature | 33.67 celsius | Count: 84 +====================================================================== + +>> [00184] Received from sensor_pressure: pressure=1044.0hPa +>> [00185] Received from sensor_temp: temperature=21.23celsius +>> [00186] Received from sensor_temp: temperature=21.86celsius +>> [00187] Received from sensor_humidity: humidity=75.21percent +>> [00188] Received from sensor_pressure: pressure=991.36hPa +>> [00189] Received from sensor_temp: temperature=26.82celsius +>> [00190] Received from sensor_humidity: humidity=57.31percent +>> [00191] Received from sensor_temp: temperature=20.95celsius +>> [00192] Received from sensor_pressure: pressure=1048.06hPa +>> [00193] Received from sensor_temp: temperature=30.42celsius +>> [00194] Received from sensor_humidity: humidity=65.46percent +>> [00195] Received from sensor_temp: temperature=17.19celsius +>> [00196] Received from sensor_pressure: pressure=1021.16hPa +>> [00197] Received from sensor_humidity: humidity=85.77percent +>> [00198] Received from sensor_temp: temperature=34.71celsius +>> [00199] Received from sensor_temp: temperature=17.4celsius +>> [00200] Received from sensor_humidity: humidity=57.31percent +>> [00201] Received from sensor_pressure: pressure=1020.12hPa +>> [00202] Received from sensor_temp: temperature=28.54celsius +>> [00203] Received from sensor_humidity: humidity=36.43percent +>> [00204] Received from sensor_temp: temperature=21.83celsius +>> [00205] Received from sensor_pressure: pressure=1032.49hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 205 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 36.43 percent | Count: 63 +🟢 ACTIVE | sensor_pressure | pressure | 1032.49 hPa | Count: 48 +🟢 ACTIVE | sensor_temp | temperature | 21.83 celsius | Count: 94 +====================================================================== + +>> [00206] Received from sensor_temp: temperature=24.89celsius +>> [00207] Received from sensor_humidity: humidity=59.0percent +>> [00208] Received from sensor_temp: temperature=19.48celsius +>> [00209] Received from sensor_humidity: humidity=66.75percent +>> [00210] Received from sensor_pressure: pressure=1032.69hPa +>> [00211] Received from sensor_temp: temperature=26.85celsius +>> [00212] Received from sensor_temp: temperature=16.61celsius +>> [00213] Received from sensor_humidity: humidity=45.49percent +>> [00214] Received from sensor_temp: temperature=27.82celsius +>> [00215] Received from sensor_pressure: pressure=987.57hPa +>> [00216] Received from sensor_humidity: humidity=67.72percent +>> [00217] Received from sensor_temp: temperature=20.82celsius +>> [00218] Received from sensor_pressure: pressure=1039.22hPa +>> [00219] Received from sensor_temp: temperature=16.44celsius +>> [00220] Received from sensor_humidity: humidity=45.97percent +>> [00221] Received from sensor_temp: temperature=23.24celsius +>> [00222] Received from sensor_temp: temperature=34.06celsius +>> [00223] Received from sensor_pressure: pressure=993.9hPa +>> [00224] Received from sensor_humidity: humidity=36.89percent +>> [00225] Received from sensor_temp: temperature=23.46celsius +>> [00226] Received from sensor_humidity: humidity=31.76percent +>> [00227] Received from sensor_pressure: pressure=996.56hPa +>> [00228] Received from sensor_temp: temperature=22.86celsius +>> [00229] Received from sensor_humidity: humidity=43.05percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 229 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 43.05 percent | Count: 71 +🟢 ACTIVE | sensor_pressure | pressure | 996.56 hPa | Count: 53 +🟢 ACTIVE | sensor_temp | temperature | 22.86 celsius | Count: 105 +====================================================================== + +>> [00230] Received from sensor_temp: temperature=27.55celsius +>> [00231] Received from sensor_pressure: pressure=982.24hPa +>> [00232] Received from sensor_temp: temperature=25.54celsius +>> [00233] Received from sensor_humidity: humidity=87.51percent +>> [00234] Received from sensor_temp: temperature=33.17celsius +>> [00235] Received from sensor_pressure: pressure=981.47hPa +>> [00236] Received from sensor_humidity: humidity=50.0percent +>> [00237] Received from sensor_temp: temperature=25.31celsius +>> [00238] Received from sensor_temp: temperature=16.16celsius +>> [00239] Received from sensor_humidity: humidity=50.71percent +>> [00240] Received from sensor_pressure: pressure=1020.44hPa +>> [00241] Received from sensor_temp: temperature=19.14celsius +>> [00242] Received from sensor_humidity: humidity=42.62percent +>> [00243] Received from sensor_temp: temperature=27.45celsius +>> [00244] Received from sensor_pressure: pressure=985.54hPa +>> [00245] Received from sensor_temp: temperature=31.38celsius +>> [00246] Received from sensor_humidity: humidity=71.68percent +>> [00247] Received from sensor_temp: temperature=34.61celsius +>> [00248] Received from sensor_pressure: pressure=985.45hPa +>> [00249] Received from sensor_humidity: humidity=49.77percent +>> [00250] Received from sensor_temp: temperature=26.02celsius +>> [00251] Received from sensor_temp: temperature=20.54celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 251 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 49.77 percent | Count: 77 +🟢 ACTIVE | sensor_pressure | pressure | 985.45 hPa | Count: 58 +🟢 ACTIVE | sensor_temp | temperature | 20.54 celsius | Count: 116 +====================================================================== + +>> [00252] Received from sensor_humidity: humidity=46.83percent +>> [00253] Received from sensor_pressure: pressure=981.68hPa +>> [00254] Received from sensor_temp: temperature=26.87celsius +>> [00255] Received from sensor_temp: temperature=23.02celsius +>> [00256] Received from sensor_humidity: humidity=39.44percent +>> [00257] Received from sensor_pressure: pressure=982.48hPa +>> [00258] Received from sensor_temp: temperature=18.24celsius +>> [00259] Received from sensor_humidity: humidity=89.47percent +>> [00260] Received from sensor_temp: temperature=21.78celsius +>> [00261] Received from sensor_pressure: pressure=980.89hPa +>> [00262] Received from sensor_humidity: humidity=73.48percent +>> [00263] Received from sensor_temp: temperature=15.27celsius +>> [00264] Received from sensor_temp: temperature=28.98celsius +>> [00265] Received from sensor_humidity: humidity=88.15percent +>> [00266] Received from sensor_pressure: pressure=1005.5hPa +>> [00267] Received from sensor_temp: temperature=34.56celsius +>> [00268] Received from sensor_humidity: humidity=76.73percent +>> [00269] Received from sensor_temp: temperature=25.48celsius +>> [00270] Received from sensor_temp: temperature=32.93celsius +>> [00271] Received from sensor_pressure: pressure=1030.26hPa +>> [00272] Received from sensor_humidity: humidity=74.48percent +>> [00273] Received from sensor_temp: temperature=17.08celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 273 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 74.48 percent | Count: 84 +🟢 ACTIVE | sensor_pressure | pressure | 1030.26 hPa | Count: 63 +🟢 ACTIVE | sensor_temp | temperature | 17.08 celsius | Count: 126 +====================================================================== + +>> [00274] Received from sensor_pressure: pressure=1025.52hPa +>> [00275] Received from sensor_humidity: humidity=85.96percent +>> [00276] Received from sensor_temp: temperature=21.88celsius +>> [00277] Received from sensor_temp: temperature=29.23celsius +>> [00278] Received from sensor_humidity: humidity=35.47percent +>> [00279] Received from sensor_pressure: pressure=999.58hPa +>> [00280] Received from sensor_temp: temperature=28.3celsius +>> [00281] Received from sensor_humidity: humidity=52.68percent +>> [00282] Received from sensor_temp: temperature=34.38celsius +>> [00283] Received from sensor_pressure: pressure=1046.09hPa +>> [00284] Received from sensor_temp: temperature=22.73celsius +>> [00285] Received from sensor_humidity: humidity=82.44percent +>> [00286] Received from sensor_temp: temperature=22.11celsius +>> [00287] Received from sensor_humidity: humidity=59.78percent +>> [00288] Received from sensor_pressure: pressure=999.52hPa +>> [00289] Received from sensor_temp: temperature=34.59celsius +>> [00290] Received from sensor_temp: temperature=30.06celsius +>> [00291] Received from sensor_humidity: humidity=72.01percent +>> [00292] Received from sensor_pressure: pressure=1018.82hPa +>> [00293] Received from sensor_temp: temperature=26.34celsius +>> [00294] Received from sensor_humidity: humidity=88.64percent +>> [00295] Received from sensor_temp: temperature=28.5celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 295 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 88.64 percent | Count: 91 +🟢 ACTIVE | sensor_pressure | pressure | 1018.82 hPa | Count: 68 +🟢 ACTIVE | sensor_temp | temperature | 28.50 celsius | Count: 136 +====================================================================== + +>> [00296] Received from sensor_pressure: pressure=992.53hPa +>> [00297] Received from sensor_temp: temperature=21.66celsius +>> [00298] Received from sensor_humidity: humidity=31.51percent +>> [00299] Received from sensor_temp: temperature=18.47celsius +>> [00300] Received from sensor_pressure: pressure=1002.36hPa +>> [00301] Received from sensor_humidity: humidity=88.43percent +>> [00302] Received from sensor_temp: temperature=26.86celsius +>> [00303] Received from sensor_temp: temperature=32.88celsius +>> [00304] Received from sensor_humidity: humidity=39.52percent +>> [00305] Received from sensor_temp: temperature=29.34celsius +>> [00306] Received from sensor_pressure: pressure=1037.4hPa +>> [00307] Received from sensor_humidity: humidity=35.04percent +>> [00308] Received from sensor_temp: temperature=15.3celsius +>> [00309] Received from sensor_temp: temperature=19.98celsius +>> [00310] Received from sensor_pressure: pressure=990.19hPa +>> [00311] Received from sensor_humidity: humidity=31.98percent +>> [00312] Received from sensor_temp: temperature=30.48celsius +>> [00313] Received from sensor_pressure: pressure=1002.23hPa +>> [00314] Received from sensor_humidity: humidity=66.9percent +>> [00315] Received from sensor_temp: temperature=26.55celsius +>> [00316] Received from sensor_temp: temperature=31.23celsius +>> [00317] Received from sensor_humidity: humidity=59.06percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 317 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 59.06 percent | Count: 98 +🟢 ACTIVE | sensor_pressure | pressure | 1002.23 hPa | Count: 73 +🟢 ACTIVE | sensor_temp | temperature | 31.23 celsius | Count: 146 +====================================================================== + +>> [00318] Received from sensor_pressure: pressure=1042.12hPa +>> [00319] Received from sensor_temp: temperature=15.37celsius +>> [00320] Received from sensor_humidity: humidity=78.54percent +>> [00321] Received from sensor_temp: temperature=27.35celsius +>> [00322] Received from sensor_pressure: pressure=1006.5hPa +>> [00323] Received from sensor_temp: temperature=20.79celsius +>> [00324] Received from sensor_humidity: humidity=41.44percent +>> [00325] Received from sensor_temp: temperature=20.07celsius +>> [00326] Received from sensor_pressure: pressure=1043.61hPa +>> [00327] Received from sensor_humidity: humidity=85.24percent +>> [00328] Received from sensor_temp: temperature=32.76celsius +>> [00329] Received from sensor_temp: temperature=20.28celsius +>> [00330] Received from sensor_humidity: humidity=72.21percent +>> [00331] Received from sensor_pressure: pressure=1045.29hPa +>> [00332] Received from sensor_temp: temperature=20.2celsius +>> [00333] Received from sensor_temp: temperature=22.77celsius +>> [00334] Received from sensor_humidity: humidity=66.4percent +>> [00335] Received from sensor_pressure: pressure=1034.11hPa +>> [00336] Received from sensor_temp: temperature=24.3celsius +>> [00337] Received from sensor_humidity: humidity=47.36percent +>> [00338] Received from sensor_temp: temperature=30.24celsius +>> [00339] Received from sensor_pressure: pressure=1006.81hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 339 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 47.36 percent | Count: 104 +🟢 ACTIVE | sensor_pressure | pressure | 1006.81 hPa | Count: 79 +🟢 ACTIVE | sensor_temp | temperature | 30.24 celsius | Count: 156 +====================================================================== + +>> [00340] Received from sensor_humidity: humidity=71.59percent +>> [00341] Received from sensor_temp: temperature=29.54celsius +>> [00342] Received from sensor_temp: temperature=34.59celsius +>> [00343] Received from sensor_humidity: humidity=65.87percent +>> [00344] Received from sensor_temp: temperature=15.86celsius +>> [00345] Received from sensor_pressure: pressure=1048.1hPa +>> [00346] Received from sensor_humidity: humidity=40.07percent +>> [00347] Received from sensor_temp: temperature=25.89celsius +>> [00348] Received from sensor_pressure: pressure=1020.56hPa +>> [00349] Received from sensor_temp: temperature=17.42celsius +>> [00350] Received from sensor_humidity: humidity=68.98percent +>> [00351] Received from sensor_temp: temperature=16.13celsius +>> [00352] Received from sensor_pressure: pressure=994.2hPa +>> [00353] Received from sensor_humidity: humidity=44.84percent +>> [00354] Received from sensor_temp: temperature=28.45celsius +>> [00355] Received from sensor_temp: temperature=32.41celsius +>> [00356] Received from sensor_humidity: humidity=85.25percent +>> [00357] Received from sensor_pressure: pressure=1035.04hPa +>> [00358] Received from sensor_temp: temperature=26.19celsius +>> [00359] Received from sensor_humidity: humidity=79.98percent +>> [00360] Received from sensor_temp: temperature=16.66celsius +>> [00361] Received from sensor_temp: temperature=24.27celsius +>> [00362] Received from sensor_pressure: pressure=1039.11hPa +>> [00363] Received from sensor_humidity: humidity=41.51percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 363 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 41.51 percent | Count: 112 +🟢 ACTIVE | sensor_pressure | pressure | 1039.11 hPa | Count: 84 +🟢 ACTIVE | sensor_temp | temperature | 24.27 celsius | Count: 167 +====================================================================== + +>> [00364] Received from sensor_temp: temperature=29.52celsius +>> [00365] Received from sensor_pressure: pressure=985.35hPa +>> [00366] Received from sensor_humidity: humidity=56.63percent +>> [00367] Received from sensor_temp: temperature=31.95celsius +>> [00368] Received from sensor_temp: temperature=30.48celsius +>> [00369] Received from sensor_humidity: humidity=63.4percent +>> [00370] Received from sensor_pressure: pressure=1049.77hPa +>> [00371] Received from sensor_temp: temperature=17.91celsius +>> [00372] Received from sensor_humidity: humidity=39.37percent +>> [00373] Received from sensor_temp: temperature=19.19celsius +>> [00374] Received from sensor_pressure: pressure=1002.85hPa +>> [00375] Received from sensor_temp: temperature=27.29celsius +>> [00376] Received from sensor_humidity: humidity=68.85percent +>> [00377] Received from sensor_temp: temperature=30.65celsius +>> [00378] Received from sensor_humidity: humidity=62.69percent +>> [00379] Received from sensor_pressure: pressure=1004.7hPa +>> [00380] Received from sensor_temp: temperature=25.16celsius +>> [00381] Received from sensor_temp: temperature=15.94celsius +>> [00382] Received from sensor_humidity: humidity=77.19percent +>> [00383] Received from sensor_pressure: pressure=1014.31hPa +>> [00384] Received from sensor_temp: temperature=18.17celsius +>> [00385] Received from sensor_humidity: humidity=64.3percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 385 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.30 percent | Count: 119 +🟢 ACTIVE | sensor_pressure | pressure | 1014.31 hPa | Count: 89 +🟢 ACTIVE | sensor_temp | temperature | 18.17 celsius | Count: 177 +====================================================================== + +>> [00386] Received from sensor_temp: temperature=33.78celsius +>> [00387] Received from sensor_pressure: pressure=1032.33hPa +>> [00388] Received from sensor_temp: temperature=32.77celsius +>> [00389] Received from sensor_humidity: humidity=61.9percent +>> [00390] Received from sensor_temp: temperature=34.06celsius +>> [00391] Received from sensor_humidity: humidity=45.39percent +>> [00392] Received from sensor_pressure: pressure=1015.32hPa +>> [00393] Received from sensor_temp: temperature=31.94celsius +>> [00394] Received from sensor_temp: temperature=20.52celsius +>> [00395] Received from sensor_humidity: humidity=88.72percent +>> [00396] Received from sensor_pressure: pressure=993.04hPa +>> [00397] Received from sensor_temp: temperature=17.39celsius +>> [00398] Received from sensor_humidity: humidity=70.92percent +>> [00399] Received from sensor_temp: temperature=25.81celsius +>> [00400] Received from sensor_pressure: pressure=1003.39hPa +>> [00401] Received from sensor_temp: temperature=22.08celsius +>> [00402] Received from sensor_humidity: humidity=60.2percent +>> [00403] Received from sensor_temp: temperature=21.55celsius +>> [00404] Received from sensor_pressure: pressure=1041.75hPa +>> [00405] Received from sensor_humidity: humidity=57.75percent +>> [00406] Received from sensor_temp: temperature=18.89celsius +>> [00407] Received from sensor_temp: temperature=25.38celsius +>> [00408] Received from sensor_humidity: humidity=39.86percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 408 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 39.86 percent | Count: 126 +🟢 ACTIVE | sensor_pressure | pressure | 1041.75 hPa | Count: 94 +🟢 ACTIVE | sensor_temp | temperature | 25.38 celsius | Count: 188 +====================================================================== + +>> [00409] Received from sensor_pressure: pressure=1023.02hPa +>> [00410] Received from sensor_temp: temperature=32.85celsius +>> [00411] Received from sensor_humidity: humidity=75.99percent +>> [00412] Received from sensor_temp: temperature=31.23celsius +>> [00413] Received from sensor_pressure: pressure=1041.92hPa +>> [00414] Received from sensor_temp: temperature=33.19celsius +>> [00415] Received from sensor_humidity: humidity=40.26percent +>> [00416] Received from sensor_temp: temperature=29.2celsius +>> [00417] Received from sensor_temp: temperature=27.41celsius +>> [00418] Received from sensor_pressure: pressure=1015.01hPa +>> [00419] Received from sensor_humidity: humidity=32.34percent +>> [00420] Received from sensor_temp: temperature=25.2celsius +>> [00421] Received from sensor_humidity: humidity=81.57percent +>> [00422] Received from sensor_temp: temperature=24.75celsius +>> [00423] Received from sensor_pressure: pressure=1010.33hPa +>> [00424] Received from sensor_humidity: humidity=64.94percent +>> [00425] Received from sensor_temp: temperature=28.61celsius +>> [00426] Received from sensor_pressure: pressure=1023.6hPa +>> [00427] Received from sensor_temp: temperature=23.94celsius +>> [00428] Received from sensor_humidity: humidity=51.26percent +>> [00429] Received from sensor_temp: temperature=27.32celsius +>> [00430] Received from sensor_pressure: pressure=1049.55hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 430 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 51.26 percent | Count: 132 +🟢 ACTIVE | sensor_pressure | pressure | 1049.55 hPa | Count: 100 +🟢 ACTIVE | sensor_temp | temperature | 27.32 celsius | Count: 198 +====================================================================== + +>> [00431] Received from sensor_humidity: humidity=48.85percent +>> [00432] Received from sensor_temp: temperature=28.64celsius +>> [00433] Received from sensor_temp: temperature=28.2celsius +>> [00434] Received from sensor_humidity: humidity=59.45percent +>> [00435] Received from sensor_pressure: pressure=1044.54hPa +>> [00436] Received from sensor_temp: temperature=26.09celsius +>> [00437] Received from sensor_humidity: humidity=38.21percent +>> [00438] Received from sensor_temp: temperature=29.67celsius +>> [00439] Received from sensor_pressure: pressure=1042.05hPa +>> [00440] Received from sensor_temp: temperature=29.57celsius +>> [00441] Received from sensor_humidity: humidity=34.59percent +>> [00442] Received from sensor_temp: temperature=29.2celsius +>> [00443] Received from sensor_pressure: pressure=1037.14hPa +>> [00444] Received from sensor_humidity: humidity=52.03percent +>> [00445] Received from sensor_temp: temperature=34.19celsius +>> [00446] Received from sensor_temp: temperature=17.1celsius +>> [00447] Received from sensor_humidity: humidity=41.37percent +>> [00448] Received from sensor_pressure: pressure=983.07hPa +>> [00449] Received from sensor_temp: temperature=28.46celsius +>> [00450] Received from sensor_humidity: humidity=50.18percent +>> [00451] Received from sensor_temp: temperature=18.67celsius +>> [00452] Received from sensor_pressure: pressure=986.61hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 452 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 50.18 percent | Count: 139 +🟢 ACTIVE | sensor_pressure | pressure | 986.61 hPa | Count: 105 +🟢 ACTIVE | sensor_temp | temperature | 18.67 celsius | Count: 208 +====================================================================== + +>> [00453] Received from sensor_temp: temperature=31.6celsius +>> [00454] Received from sensor_humidity: humidity=40.29percent +>> [00455] Received from sensor_temp: temperature=30.02celsius +>> [00456] Received from sensor_pressure: pressure=1004.36hPa +>> [00457] Received from sensor_humidity: humidity=32.12percent +>> [00458] Received from sensor_temp: temperature=22.75celsius +>> [00459] Received from sensor_temp: temperature=33.79celsius +>> [00460] Received from sensor_humidity: humidity=73.11percent +>> [00461] Received from sensor_pressure: pressure=989.06hPa +>> [00462] Received from sensor_temp: temperature=18.26celsius +>> [00463] Received from sensor_humidity: humidity=52.64percent +>> [00464] Received from sensor_temp: temperature=22.35celsius +>> [00465] Received from sensor_temp: temperature=17.08celsius +>> [00466] Received from sensor_pressure: pressure=1041.39hPa +>> [00467] Received from sensor_humidity: humidity=85.55percent +>> [00468] Received from sensor_temp: temperature=28.28celsius +>> [00469] Received from sensor_pressure: pressure=1038.28hPa +>> [00470] Received from sensor_humidity: humidity=51.25percent +>> [00471] Received from sensor_temp: temperature=31.59celsius +>> [00472] Received from sensor_temp: temperature=27.44celsius +>> [00473] Received from sensor_humidity: humidity=49.66percent +>> [00474] Received from sensor_temp: temperature=27.67celsius +>> [00475] Received from sensor_pressure: pressure=1034.16hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 475 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 49.66 percent | Count: 146 +🟢 ACTIVE | sensor_pressure | pressure | 1034.16 hPa | Count: 110 +🟢 ACTIVE | sensor_temp | temperature | 27.67 celsius | Count: 219 +====================================================================== + +>> [00476] Received from sensor_humidity: humidity=83.13percent +>> [00477] Received from sensor_temp: temperature=33.01celsius +>> [00478] Received from sensor_pressure: pressure=1005.91hPa +>> [00479] Received from sensor_temp: temperature=17.93celsius +>> [00480] Received from sensor_humidity: humidity=45.22percent +>> [00481] Received from sensor_temp: temperature=23.57celsius +>> [00482] Received from sensor_pressure: pressure=1015.49hPa +>> [00483] Received from sensor_humidity: humidity=46.28percent +>> [00484] Received from sensor_temp: temperature=22.22celsius +>> [00485] Received from sensor_temp: temperature=22.87celsius +>> [00486] Received from sensor_humidity: humidity=40.3percent +>> [00487] Received from sensor_pressure: pressure=1006.39hPa +>> [00488] Received from sensor_temp: temperature=22.94celsius +>> [00489] Received from sensor_humidity: humidity=88.15percent +>> [00490] Received from sensor_temp: temperature=33.2celsius +>> [00491] Received from sensor_pressure: pressure=1037.53hPa +>> [00492] Received from sensor_temp: temperature=22.64celsius +>> [00493] Received from sensor_humidity: humidity=37.83percent +>> [00494] Received from sensor_temp: temperature=22.79celsius +>> [00495] Received from sensor_humidity: humidity=51.14percent +>> [00496] Received from sensor_pressure: pressure=1040.3hPa +>> [00497] Received from sensor_temp: temperature=20.0celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 497 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 51.14 percent | Count: 153 +🟢 ACTIVE | sensor_pressure | pressure | 1040.30 hPa | Count: 115 +🟢 ACTIVE | sensor_temp | temperature | 20.00 celsius | Count: 229 +====================================================================== + +>> [00498] Received from sensor_temp: temperature=20.72celsius +>> [00499] Received from sensor_humidity: humidity=52.48percent +>> [00500] Received from sensor_pressure: pressure=1013.26hPa +>> [00501] Received from sensor_temp: temperature=31.92celsius +>> [00502] Received from sensor_humidity: humidity=81.85percent +>> [00503] Received from sensor_temp: temperature=29.92celsius +>> [00504] Received from sensor_pressure: pressure=991.68hPa +>> [00505] Received from sensor_temp: temperature=18.25celsius +>> [00506] Received from sensor_humidity: humidity=85.48percent +>> [00507] Received from sensor_temp: temperature=15.56celsius +>> [00508] Received from sensor_humidity: humidity=34.25percent +>> [00509] Received from sensor_pressure: pressure=1044.61hPa +>> [00510] Received from sensor_temp: temperature=15.2celsius +>> [00511] Received from sensor_temp: temperature=26.22celsius +>> [00512] Received from sensor_humidity: humidity=42.58percent +>> [00513] Received from sensor_pressure: pressure=1013.8hPa +>> [00514] Received from sensor_temp: temperature=34.27celsius +>> [00515] Received from sensor_humidity: humidity=64.89percent +>> [00516] Received from sensor_temp: temperature=34.92celsius +>> [00517] Received from sensor_pressure: pressure=980.82hPa +>> [00518] Received from sensor_temp: temperature=18.17celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 518 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.89 percent | Count: 159 +🟢 ACTIVE | sensor_pressure | pressure | 980.82 hPa | Count: 120 +🟢 ACTIVE | sensor_temp | temperature | 18.17 celsius | Count: 239 +====================================================================== + +>> [00519] Received from sensor_humidity: humidity=54.15percent +>> [00520] Received from sensor_temp: temperature=18.96celsius +>> [00521] Received from sensor_humidity: humidity=63.17percent +>> [00522] Received from sensor_pressure: pressure=1043.23hPa +>> [00523] Received from sensor_temp: temperature=15.93celsius +>> [00524] Received from sensor_temp: temperature=17.21celsius +>> [00525] Received from sensor_humidity: humidity=80.66percent +>> [00526] Received from sensor_pressure: pressure=997.53hPa +>> [00527] Received from sensor_temp: temperature=34.36celsius +>> [00528] Received from sensor_humidity: humidity=36.54percent +>> [00529] Received from sensor_temp: temperature=32.13celsius +>> [00530] Received from sensor_pressure: pressure=1024.37hPa +>> [00531] Received from sensor_temp: temperature=28.27celsius +>> [00532] Received from sensor_humidity: humidity=40.27percent +>> [00533] Received from sensor_temp: temperature=25.51celsius +>> [00534] Received from sensor_pressure: pressure=998.87hPa +>> [00535] Received from sensor_humidity: humidity=45.23percent +>> [00536] Received from sensor_temp: temperature=26.11celsius +>> [00537] Received from sensor_temp: temperature=23.4celsius +>> [00538] Received from sensor_humidity: humidity=72.56percent +>> [00539] Received from sensor_pressure: pressure=990.23hPa +>> [00540] Received from sensor_temp: temperature=26.81celsius +>> [00541] Received from sensor_humidity: humidity=38.36percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 541 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 38.36 percent | Count: 167 +🟢 ACTIVE | sensor_pressure | pressure | 990.23 hPa | Count: 125 +🟢 ACTIVE | sensor_temp | temperature | 26.81 celsius | Count: 249 +====================================================================== + +>> [00542] Received from sensor_temp: temperature=34.41celsius +>> [00543] Received from sensor_temp: temperature=17.47celsius +>> [00544] Received from sensor_pressure: pressure=992.89hPa +>> [00545] Received from sensor_humidity: humidity=36.65percent +>> [00546] Received from sensor_temp: temperature=34.25celsius +>> [00547] Received from sensor_pressure: pressure=993.92hPa +>> [00548] Received from sensor_humidity: humidity=81.19percent +>> [00549] Received from sensor_temp: temperature=17.93celsius +>> [00550] Received from sensor_temp: temperature=26.51celsius +>> [00551] Received from sensor_humidity: humidity=59.74percent +>> [00552] Received from sensor_pressure: pressure=1000.5hPa +>> [00553] Received from sensor_temp: temperature=31.02celsius +>> [00554] Received from sensor_humidity: humidity=73.43percent +>> [00555] Received from sensor_temp: temperature=29.82celsius +>> [00556] Received from sensor_pressure: pressure=1018.2hPa +>> [00557] Received from sensor_temp: temperature=21.96celsius +>> [00558] Received from sensor_humidity: humidity=46.55percent +>> [00559] Received from sensor_temp: temperature=23.23celsius +>> [00560] Received from sensor_pressure: pressure=1044.8hPa +>> [00561] Received from sensor_humidity: humidity=42.5percent +>> [00562] Received from sensor_temp: temperature=17.58celsius +>> [00563] Received from sensor_temp: temperature=20.42celsius +>> [00564] Received from sensor_humidity: humidity=31.86percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 564 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 31.86 percent | Count: 174 +🟢 ACTIVE | sensor_pressure | pressure | 1044.80 hPa | Count: 130 +🟢 ACTIVE | sensor_temp | temperature | 20.42 celsius | Count: 260 +====================================================================== + +>> [00565] Received from sensor_pressure: pressure=1013.67hPa +>> [00566] Received from sensor_temp: temperature=28.11celsius +>> [00567] Received from sensor_humidity: humidity=46.25percent +>> [00568] Received from sensor_temp: temperature=20.7celsius +>> [00569] Received from sensor_temp: temperature=16.72celsius +>> [00570] Received from sensor_pressure: pressure=1011.58hPa +>> [00571] Received from sensor_humidity: humidity=47.41percent +>> [00572] Received from sensor_temp: temperature=16.29celsius +>> [00573] Received from sensor_pressure: pressure=1035.88hPa +>> [00574] Received from sensor_humidity: humidity=45.16percent +>> [00575] Received from sensor_temp: temperature=32.31celsius +>> [00576] Received from sensor_temp: temperature=29.59celsius +>> [00577] Received from sensor_humidity: humidity=54.41percent +>> [00578] Received from sensor_pressure: pressure=1003.16hPa +>> [00579] Received from sensor_temp: temperature=21.85celsius +>> [00580] Received from sensor_humidity: humidity=30.7percent +>> [00581] Received from sensor_temp: temperature=22.22celsius +>> [00582] Received from sensor_pressure: pressure=1021.14hPa +>> [00583] Received from sensor_temp: temperature=28.55celsius +>> [00584] Received from sensor_humidity: humidity=66.09percent +>> [00585] Received from sensor_temp: temperature=25.1celsius +>> [00586] Received from sensor_humidity: humidity=63.57percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 586 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 63.57 percent | Count: 181 +🟢 ACTIVE | sensor_pressure | pressure | 1021.14 hPa | Count: 135 +🟢 ACTIVE | sensor_temp | temperature | 25.10 celsius | Count: 270 +====================================================================== + +>> [00587] Received from sensor_pressure: pressure=1013.76hPa +>> [00588] Received from sensor_temp: temperature=27.22celsius +>> [00589] Received from sensor_temp: temperature=32.58celsius +>> [00590] Received from sensor_humidity: humidity=60.52percent +>> [00591] Received from sensor_pressure: pressure=1032.52hPa +>> [00592] Received from sensor_temp: temperature=19.23celsius +>> [00593] Received from sensor_humidity: humidity=36.35percent +>> [00594] Received from sensor_temp: temperature=34.85celsius +>> [00595] Received from sensor_pressure: pressure=992.83hPa +>> [00596] Received from sensor_temp: temperature=22.69celsius +>> [00597] Received from sensor_humidity: humidity=41.44percent +>> [00598] Received from sensor_temp: temperature=27.6celsius +>> [00599] Received from sensor_pressure: pressure=986.11hPa +>> [00600] Received from sensor_humidity: humidity=43.41percent +>> [00601] Received from sensor_temp: temperature=17.08celsius +>> [00602] Received from sensor_temp: temperature=15.13celsius +>> [00603] Received from sensor_humidity: humidity=31.17percent +>> [00604] Received from sensor_temp: temperature=17.52celsius +>> [00605] Received from sensor_pressure: pressure=1011.08hPa +>> [00606] Received from sensor_humidity: humidity=65.38percent +>> [00607] Received from sensor_temp: temperature=28.94celsius +>> [00608] Received from sensor_pressure: pressure=1022.43hPa +>> [00609] Received from sensor_temp: temperature=27.34celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 609 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 65.38 percent | Count: 187 +🟢 ACTIVE | sensor_pressure | pressure | 1022.43 hPa | Count: 141 +🟢 ACTIVE | sensor_temp | temperature | 27.34 celsius | Count: 281 +====================================================================== + +>> [00610] Received from sensor_humidity: humidity=36.23percent +>> [00611] Received from sensor_temp: temperature=31.82celsius +>> [00612] Received from sensor_pressure: pressure=1027.73hPa +>> [00613] Received from sensor_humidity: humidity=89.24percent +>> [00614] Received from sensor_temp: temperature=18.57celsius +>> [00615] Received from sensor_temp: temperature=31.97celsius +>> [00616] Received from sensor_humidity: humidity=64.24percent +>> [00617] Received from sensor_pressure: pressure=1011.28hPa +>> [00618] Received from sensor_temp: temperature=29.69celsius +>> [00619] Received from sensor_humidity: humidity=72.57percent +>> [00620] Received from sensor_temp: temperature=23.53celsius +>> [00621] Received from sensor_temp: temperature=34.15celsius +>> [00622] Received from sensor_pressure: pressure=980.72hPa +>> [00623] Received from sensor_humidity: humidity=58.05percent +>> [00624] Received from sensor_temp: temperature=21.07celsius +>> [00625] Received from sensor_humidity: humidity=50.7percent +>> [00626] Received from sensor_pressure: pressure=1040.0hPa +>> [00627] Received from sensor_temp: temperature=32.21celsius +>> [00628] Received from sensor_temp: temperature=31.38celsius +>> [00629] Received from sensor_humidity: humidity=55.01percent +>> [00630] Received from sensor_pressure: pressure=1024.46hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 630 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 55.01 percent | Count: 194 +🟢 ACTIVE | sensor_pressure | pressure | 1024.46 hPa | Count: 146 +🟢 ACTIVE | sensor_temp | temperature | 31.38 celsius | Count: 290 +====================================================================== + +>> [00631] Received from sensor_temp: temperature=30.21celsius +>> [00632] Received from sensor_humidity: humidity=73.03percent +>> [00633] Received from sensor_temp: temperature=30.37celsius +>> [00634] Received from sensor_pressure: pressure=1034.57hPa +>> [00635] Received from sensor_temp: temperature=16.6celsius +>> [00636] Received from sensor_humidity: humidity=78.24percent +>> [00637] Received from sensor_temp: temperature=25.5celsius +>> [00638] Received from sensor_pressure: pressure=1014.86hPa +>> [00639] Received from sensor_humidity: humidity=32.77percent +>> [00640] Received from sensor_temp: temperature=15.66celsius +>> [00641] Received from sensor_temp: temperature=32.42celsius +>> [00642] Received from sensor_humidity: humidity=33.03percent +>> [00643] Received from sensor_pressure: pressure=1033.59hPa +>> [00644] Received from sensor_temp: temperature=32.16celsius +>> [00645] Received from sensor_humidity: humidity=69.61percent +>> [00646] Received from sensor_temp: temperature=15.59celsius +>> [00647] Received from sensor_temp: temperature=24.72celsius +>> [00648] Received from sensor_pressure: pressure=983.53hPa +>> [00649] Received from sensor_humidity: humidity=73.14percent +>> [00650] Received from sensor_temp: temperature=22.82celsius +>> [00651] Received from sensor_humidity: humidity=87.26percent +>> [00652] Received from sensor_pressure: pressure=1012.26hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 652 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 87.26 percent | Count: 201 +🟢 ACTIVE | sensor_pressure | pressure | 1012.26 hPa | Count: 151 +🟢 ACTIVE | sensor_temp | temperature | 22.82 celsius | Count: 300 +====================================================================== + +>> [00653] Received from sensor_temp: temperature=29.68celsius +>> [00654] Received from sensor_temp: temperature=21.06celsius +>> [00655] Received from sensor_humidity: humidity=89.3percent +>> [00656] Received from sensor_pressure: pressure=1025.54hPa +>> [00657] Received from sensor_temp: temperature=18.39celsius +>> [00658] Received from sensor_humidity: humidity=65.73percent +>> [00659] Received from sensor_temp: temperature=30.08celsius +>> [00660] Received from sensor_pressure: pressure=1038.99hPa +>> [00661] Received from sensor_temp: temperature=28.62celsius +>> [00662] Received from sensor_humidity: humidity=80.78percent +>> [00663] Received from sensor_temp: temperature=29.52celsius +>> [00664] Received from sensor_pressure: pressure=1037.09hPa +>> [00665] Received from sensor_humidity: humidity=49.64percent +>> [00666] Received from sensor_temp: temperature=32.63celsius +>> [00667] Received from sensor_temp: temperature=25.59celsius +>> [00668] Received from sensor_humidity: humidity=87.8percent +>> [00669] Received from sensor_temp: temperature=22.19celsius +>> [00670] Received from sensor_pressure: pressure=1021.38hPa +>> [00671] Received from sensor_humidity: humidity=61.32percent +>> [00672] Received from sensor_temp: temperature=17.74celsius +>> [00673] Received from sensor_pressure: pressure=1028.21hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 673 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 61.32 percent | Count: 207 +🟢 ACTIVE | sensor_pressure | pressure | 1028.21 hPa | Count: 156 +🟢 ACTIVE | sensor_temp | temperature | 17.74 celsius | Count: 310 +====================================================================== + +>> [00674] Received from sensor_temp: temperature=28.7celsius +>> [00675] Received from sensor_humidity: humidity=53.85percent +>> [00676] Received from sensor_temp: temperature=18.83celsius +>> [00677] Received from sensor_pressure: pressure=1003.0hPa +>> [00678] Received from sensor_humidity: humidity=78.92percent +>> [00679] Received from sensor_temp: temperature=33.05celsius +>> [00680] Received from sensor_temp: temperature=23.07celsius +>> [00681] Received from sensor_humidity: humidity=82.11percent +>> [00682] Received from sensor_pressure: pressure=1040.62hPa +>> [00683] Received from sensor_temp: temperature=33.91celsius +>> [00684] Received from sensor_humidity: humidity=70.07percent +>> [00685] Received from sensor_temp: temperature=29.0celsius +>> [00686] Received from sensor_pressure: pressure=1037.16hPa +>> [00687] Received from sensor_temp: temperature=22.19celsius +>> [00688] Received from sensor_humidity: humidity=75.65percent +>> [00689] Received from sensor_temp: temperature=27.06celsius +>> [00690] Received from sensor_pressure: pressure=985.86hPa +>> [00691] Received from sensor_humidity: humidity=79.3percent +>> [00692] Received from sensor_temp: temperature=25.82celsius +>> [00693] Received from sensor_temp: temperature=27.11celsius +>> [00694] Received from sensor_humidity: humidity=54.62percent +>> [00695] Received from sensor_temp: temperature=32.3celsius +>> [00696] Received from sensor_pressure: pressure=1049.83hPa +>> [00697] Received from sensor_humidity: humidity=30.09percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 697 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 30.09 percent | Count: 215 +🟢 ACTIVE | sensor_pressure | pressure | 1049.83 hPa | Count: 161 +🟢 ACTIVE | sensor_temp | temperature | 32.30 celsius | Count: 321 +====================================================================== + +>> [00698] Received from sensor_temp: temperature=31.79celsius +>> [00699] Received from sensor_pressure: pressure=1038.77hPa +>> [00700] Received from sensor_temp: temperature=26.5celsius +>> [00701] Received from sensor_humidity: humidity=47.39percent +>> [00702] Received from sensor_temp: temperature=33.99celsius +>> [00703] Received from sensor_humidity: humidity=49.26percent +>> [00704] Received from sensor_pressure: pressure=1027.12hPa +>> [00705] Received from sensor_temp: temperature=19.31celsius +>> [00706] Received from sensor_temp: temperature=18.06celsius +>> [00707] Received from sensor_humidity: humidity=30.38percent +>> [00708] Received from sensor_pressure: pressure=981.98hPa +>> [00709] Received from sensor_temp: temperature=30.54celsius +>> [00710] Received from sensor_humidity: humidity=53.62percent +>> [00711] Received from sensor_temp: temperature=16.84celsius +>> [00712] Received from sensor_pressure: pressure=1014.82hPa +>> [00713] Received from sensor_temp: temperature=15.79celsius +>> [00714] Received from sensor_humidity: humidity=72.24percent +>> [00715] Received from sensor_temp: temperature=16.52celsius +>> [00716] Received from sensor_pressure: pressure=996.88hPa +>> [00717] Received from sensor_humidity: humidity=37.07percent +>> [00718] Received from sensor_temp: temperature=22.83celsius +>> [00719] Received from sensor_temp: temperature=15.89celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 719 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 37.07 percent | Count: 221 +🟢 ACTIVE | sensor_pressure | pressure | 996.88 hPa | Count: 166 +🟢 ACTIVE | sensor_temp | temperature | 15.89 celsius | Count: 332 +====================================================================== + +>> [00720] Received from sensor_humidity: humidity=63.35percent +>> [00721] Received from sensor_pressure: pressure=1046.86hPa +>> [00722] Received from sensor_temp: temperature=19.31celsius +>> [00723] Received from sensor_humidity: humidity=54.73percent +>> [00724] Received from sensor_temp: temperature=21.11celsius +>> [00725] Received from sensor_temp: temperature=22.61celsius +>> [00726] Received from sensor_pressure: pressure=1044.0hPa +>> [00727] Received from sensor_humidity: humidity=50.59percent +>> [00728] Received from sensor_temp: temperature=18.89celsius +>> [00729] Received from sensor_pressure: pressure=990.6hPa +>> [00730] Received from sensor_humidity: humidity=66.03percent +>> [00731] Received from sensor_temp: temperature=30.87celsius +>> [00732] Received from sensor_temp: temperature=21.18celsius +>> [00733] Received from sensor_humidity: humidity=38.71percent +>> [00734] Received from sensor_temp: temperature=21.47celsius +>> [00735] Received from sensor_pressure: pressure=1006.37hPa +>> [00736] Received from sensor_humidity: humidity=37.96percent +>> [00737] Received from sensor_temp: temperature=31.55celsius +>> [00738] Received from sensor_pressure: pressure=1032.88hPa +>> [00739] Received from sensor_temp: temperature=28.36celsius +>> [00740] Received from sensor_humidity: humidity=65.98percent +>> [00741] Received from sensor_temp: temperature=32.72celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 741 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 65.98 percent | Count: 228 +🟢 ACTIVE | sensor_pressure | pressure | 1032.88 hPa | Count: 171 +🟢 ACTIVE | sensor_temp | temperature | 32.72 celsius | Count: 342 +====================================================================== + +>> [00742] Received from sensor_pressure: pressure=1005.76hPa +>> [00743] Received from sensor_humidity: humidity=71.96percent +>> [00744] Received from sensor_temp: temperature=29.27celsius +>> [00745] Received from sensor_temp: temperature=17.5celsius +>> [00746] Received from sensor_humidity: humidity=87.16percent +>> [00747] Received from sensor_pressure: pressure=1046.53hPa +>> [00748] Received from sensor_temp: temperature=18.68celsius +>> [00749] Received from sensor_humidity: humidity=48.05percent +>> [00750] Received from sensor_temp: temperature=26.19celsius +>> [00751] Received from sensor_pressure: pressure=1000.93hPa +>> [00752] Received from sensor_temp: temperature=27.24celsius +>> [00753] Received from sensor_humidity: humidity=89.1percent +>> [00754] Received from sensor_temp: temperature=32.34celsius +>> [00755] Received from sensor_pressure: pressure=1024.06hPa +>> [00756] Received from sensor_humidity: humidity=77.66percent +>> [00757] Received from sensor_temp: temperature=30.13celsius +>> [00758] Received from sensor_temp: temperature=25.54celsius +>> [00759] Received from sensor_humidity: humidity=61.58percent +>> [00760] Received from sensor_temp: temperature=19.09celsius +>> [00761] Received from sensor_pressure: pressure=1036.81hPa +>> [00762] Received from sensor_humidity: humidity=45.0percent +>> [00763] Received from sensor_temp: temperature=24.89celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 763 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 45.00 percent | Count: 235 +🟢 ACTIVE | sensor_pressure | pressure | 1036.81 hPa | Count: 176 +🟢 ACTIVE | sensor_temp | temperature | 24.89 celsius | Count: 352 +====================================================================== + +>> [00764] Received from sensor_pressure: pressure=1037.97hPa +>> [00765] Received from sensor_temp: temperature=33.5celsius +>> [00766] Received from sensor_humidity: humidity=73.9percent +>> [00767] Received from sensor_temp: temperature=26.61celsius +>> [00768] Received from sensor_pressure: pressure=1036.81hPa +>> [00769] Received from sensor_humidity: humidity=68.78percent +>> [00770] Received from sensor_temp: temperature=18.46celsius +>> [00771] Received from sensor_temp: temperature=28.98celsius +>> [00772] Received from sensor_humidity: humidity=66.99percent +>> [00773] Received from sensor_pressure: pressure=1026.24hPa +>> [00774] Received from sensor_temp: temperature=25.11celsius +>> [00775] Received from sensor_humidity: humidity=73.45percent +>> [00776] Received from sensor_temp: temperature=29.19celsius +>> [00777] Received from sensor_pressure: pressure=1034.32hPa +>> [00778] Received from sensor_temp: temperature=26.09celsius +>> [00779] Received from sensor_humidity: humidity=84.38percent +>> [00780] Received from sensor_temp: temperature=25.64celsius +>> [00781] Received from sensor_humidity: humidity=83.83percent +>> [00782] Received from sensor_pressure: pressure=1002.35hPa +>> [00783] Received from sensor_temp: temperature=28.24celsius +>> [00784] Received from sensor_temp: temperature=31.55celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 784 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 83.83 percent | Count: 241 +🟢 ACTIVE | sensor_pressure | pressure | 1002.35 hPa | Count: 181 +🟢 ACTIVE | sensor_temp | temperature | 31.55 celsius | Count: 362 +====================================================================== + +>> [00785] Received from sensor_humidity: humidity=88.98percent +>> [00786] Received from sensor_pressure: pressure=992.12hPa +>> [00787] Received from sensor_temp: temperature=32.42celsius +>> [00788] Received from sensor_humidity: humidity=88.46percent +>> [00789] Received from sensor_temp: temperature=30.67celsius +>> [00790] Received from sensor_pressure: pressure=1034.3hPa +>> [00791] Received from sensor_temp: temperature=21.12celsius +>> [00792] Received from sensor_humidity: humidity=87.28percent +>> [00793] Received from sensor_temp: temperature=15.86celsius +>> [00794] Received from sensor_temp: temperature=19.55celsius +>> [00795] Received from sensor_pressure: pressure=984.2hPa +>> [00796] Received from sensor_humidity: humidity=88.92percent +>> [00797] Received from sensor_temp: temperature=34.54celsius +>> [00798] Received from sensor_humidity: humidity=76.78percent +>> [00799] Received from sensor_pressure: pressure=1001.14hPa +>> [00800] Received from sensor_temp: temperature=31.79celsius +>> [00801] Received from sensor_humidity: humidity=49.47percent +>> [00802] Received from sensor_temp: temperature=22.59celsius +>> [00803] Received from sensor_pressure: pressure=983.48hPa +>> [00804] Received from sensor_temp: temperature=33.73celsius +>> [00805] Received from sensor_humidity: humidity=81.07percent +>> [00806] Received from sensor_temp: temperature=19.07celsius +>> [00807] Received from sensor_humidity: humidity=74.05percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 807 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 74.05 percent | Count: 249 +🟢 ACTIVE | sensor_pressure | pressure | 983.48 hPa | Count: 186 +🟢 ACTIVE | sensor_temp | temperature | 19.07 celsius | Count: 372 +====================================================================== + +>> [00808] Received from sensor_pressure: pressure=1012.1hPa +>> [00809] Received from sensor_temp: temperature=33.59celsius +>> [00810] Received from sensor_temp: temperature=23.26celsius +>> [00811] Received from sensor_humidity: humidity=55.33percent +>> [00812] Received from sensor_temp: temperature=16.83celsius +>> [00813] Received from sensor_pressure: pressure=1003.8hPa +>> [00814] Received from sensor_humidity: humidity=37.11percent +>> [00815] Received from sensor_temp: temperature=22.65celsius +>> [00816] Received from sensor_temp: temperature=18.21celsius +>> [00817] Received from sensor_pressure: pressure=1015.97hPa +>> [00818] Received from sensor_humidity: humidity=88.93percent +>> [00819] Received from sensor_temp: temperature=25.98celsius +>> [00820] Received from sensor_pressure: pressure=1000.94hPa +>> [00821] Received from sensor_humidity: humidity=75.23percent +>> [00822] Received from sensor_temp: temperature=17.36celsius +>> [00823] Received from sensor_temp: temperature=28.72celsius +>> [00824] Received from sensor_humidity: humidity=69.28percent +>> [00825] Received from sensor_temp: temperature=24.56celsius +>> [00826] Received from sensor_pressure: pressure=1027.54hPa +>> [00827] Received from sensor_humidity: humidity=31.4percent +>> [00828] Received from sensor_temp: temperature=30.51celsius +>> [00829] Received from sensor_temp: temperature=23.3celsius +>> [00830] Received from sensor_pressure: pressure=1017.63hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 830 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 31.40 percent | Count: 255 +🟢 ACTIVE | sensor_pressure | pressure | 1017.63 hPa | Count: 192 +🟢 ACTIVE | sensor_temp | temperature | 23.30 celsius | Count: 383 +====================================================================== + +>> [00831] Received from sensor_humidity: humidity=54.99percent +>> [00832] Received from sensor_temp: temperature=15.46celsius +>> [00833] Received from sensor_pressure: pressure=1032.02hPa +>> [00834] Received from sensor_humidity: humidity=47.56percent +>> [00835] Received from sensor_temp: temperature=19.32celsius +>> [00836] Received from sensor_temp: temperature=27.08celsius +>> [00837] Received from sensor_humidity: humidity=33.42percent +>> [00838] Received from sensor_pressure: pressure=1033.77hPa +>> [00839] Received from sensor_temp: temperature=27.82celsius +>> [00840] Received from sensor_humidity: humidity=79.59percent +>> [00841] Received from sensor_temp: temperature=21.6celsius +>> [00842] Received from sensor_pressure: pressure=1038.73hPa +>> [00843] Received from sensor_temp: temperature=27.66celsius +>> [00844] Received from sensor_humidity: humidity=38.89percent +>> [00845] Received from sensor_temp: temperature=28.39celsius +>> [00846] Received from sensor_pressure: pressure=1045.48hPa +>> [00847] Received from sensor_humidity: humidity=76.73percent +>> [00848] Received from sensor_temp: temperature=31.13celsius +>> [00849] Received from sensor_temp: temperature=32.98celsius +>> [00850] Received from sensor_humidity: humidity=85.92percent +>> [00851] Received from sensor_pressure: pressure=985.95hPa +>> [00852] Received from sensor_temp: temperature=24.07celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 852 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.92 percent | Count: 262 +🟢 ACTIVE | sensor_pressure | pressure | 985.95 hPa | Count: 197 +🟢 ACTIVE | sensor_temp | temperature | 24.07 celsius | Count: 393 +====================================================================== + +>> [00853] Received from sensor_humidity: humidity=52.5percent +>> [00854] Received from sensor_temp: temperature=22.43celsius +>> [00855] Received from sensor_temp: temperature=16.15celsius +>> [00856] Received from sensor_pressure: pressure=988.06hPa +>> [00857] Received from sensor_humidity: humidity=58.09percent +>> [00858] Received from sensor_temp: temperature=17.57celsius +>> [00859] Received from sensor_humidity: humidity=67.66percent +>> [00860] Received from sensor_pressure: pressure=1025.2hPa +>> [00861] Received from sensor_temp: temperature=32.74celsius +>> [00862] Received from sensor_temp: temperature=28.49celsius +>> [00863] Received from sensor_humidity: humidity=74.48percent +>> [00864] Received from sensor_temp: temperature=28.1celsius +>> [00865] Received from sensor_pressure: pressure=1019.14hPa +>> [00866] Received from sensor_humidity: humidity=89.44percent +>> [00867] Received from sensor_temp: temperature=16.32celsius +>> [00868] Received from sensor_pressure: pressure=1002.01hPa +>> [00869] Received from sensor_temp: temperature=26.2celsius +>> [00870] Received from sensor_humidity: humidity=45.03percent +>> [00871] Received from sensor_temp: temperature=16.0celsius +>> [00872] Received from sensor_pressure: pressure=1002.69hPa +>> [00873] Received from sensor_humidity: humidity=48.71percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 873 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 48.71 percent | Count: 269 +🟢 ACTIVE | sensor_pressure | pressure | 1002.69 hPa | Count: 202 +🟢 ACTIVE | sensor_temp | temperature | 16.00 celsius | Count: 402 +====================================================================== + +>> [00874] Received from sensor_temp: temperature=19.74celsius +>> [00875] Received from sensor_temp: temperature=23.16celsius +>> [00876] Received from sensor_humidity: humidity=31.33percent +>> [00877] Received from sensor_pressure: pressure=1040.94hPa +>> [00878] Received from sensor_temp: temperature=27.98celsius +>> [00879] Received from sensor_humidity: humidity=41.19percent +>> [00880] Received from sensor_temp: temperature=16.09celsius +>> [00881] Received from sensor_pressure: pressure=980.17hPa +>> [00882] Received from sensor_temp: temperature=29.94celsius +>> [00883] Received from sensor_humidity: humidity=31.63percent +>> [00884] Received from sensor_temp: temperature=28.51celsius +>> [00885] Received from sensor_pressure: pressure=990.51hPa +>> [00886] Received from sensor_humidity: humidity=63.13percent +>> [00887] Received from sensor_temp: temperature=25.35celsius +>> [00888] Received from sensor_temp: temperature=34.39celsius +>> [00889] Received from sensor_humidity: humidity=62.54percent +>> [00890] Received from sensor_pressure: pressure=995.58hPa +>> [00891] Received from sensor_temp: temperature=26.12celsius +>> [00892] Received from sensor_humidity: humidity=77.23percent +>> [00893] Received from sensor_temp: temperature=34.35celsius +>> [00894] Received from sensor_pressure: pressure=1002.62hPa +>> [00895] Received from sensor_temp: temperature=15.79celsius +>> [00896] Received from sensor_humidity: humidity=49.26percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 896 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 49.26 percent | Count: 276 +🟢 ACTIVE | sensor_pressure | pressure | 1002.62 hPa | Count: 207 +🟢 ACTIVE | sensor_temp | temperature | 15.79 celsius | Count: 413 +====================================================================== + +>> [00897] Received from sensor_temp: temperature=19.1celsius +>> [00898] Received from sensor_pressure: pressure=1033.84hPa +>> [00899] Received from sensor_humidity: humidity=32.18percent +>> [00900] Received from sensor_temp: temperature=29.55celsius +>> [00901] Received from sensor_temp: temperature=19.86celsius +>> [00902] Received from sensor_humidity: humidity=65.18percent +>> [00903] Received from sensor_pressure: pressure=1033.06hPa +>> [00904] Received from sensor_temp: temperature=16.19celsius +>> [00905] Received from sensor_humidity: humidity=81.89percent +>> [00906] Received from sensor_temp: temperature=24.14celsius +>> [00907] Received from sensor_pressure: pressure=982.55hPa +>> [00908] Received from sensor_temp: temperature=16.05celsius +>> [00909] Received from sensor_humidity: humidity=84.3percent +>> [00910] Received from sensor_temp: temperature=16.09celsius +>> [00911] Received from sensor_humidity: humidity=72.16percent +>> [00912] Received from sensor_pressure: pressure=1039.94hPa +>> [00913] Received from sensor_temp: temperature=27.4celsius +>> [00914] Received from sensor_temp: temperature=23.4celsius +>> [00915] Received from sensor_humidity: humidity=47.16percent +>> [00916] Received from sensor_pressure: pressure=1040.13hPa +>> [00917] Received from sensor_temp: temperature=28.18celsius +>> [00918] Received from sensor_humidity: humidity=89.33percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 918 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 89.33 percent | Count: 283 +🟢 ACTIVE | sensor_pressure | pressure | 1040.13 hPa | Count: 212 +🟢 ACTIVE | sensor_temp | temperature | 28.18 celsius | Count: 423 +====================================================================== + +>> [00919] Received from sensor_temp: temperature=20.78celsius +>> [00920] Received from sensor_pressure: pressure=983.73hPa +>> [00921] Received from sensor_temp: temperature=22.35celsius +>> [00922] Received from sensor_humidity: humidity=88.41percent +>> [00923] Received from sensor_temp: temperature=16.97celsius +>> [00924] Received from sensor_pressure: pressure=982.18hPa +>> [00925] Received from sensor_humidity: humidity=49.93percent +>> [00926] Received from sensor_temp: temperature=20.88celsius +>> [00927] Received from sensor_temp: temperature=19.46celsius +>> [00928] Received from sensor_humidity: humidity=37.46percent +>> [00929] Received from sensor_temp: temperature=19.99celsius +>> [00930] Received from sensor_pressure: pressure=1027.07hPa +>> [00931] Received from sensor_humidity: humidity=64.81percent +>> [00932] Received from sensor_temp: temperature=21.95celsius +>> [00933] Received from sensor_pressure: pressure=1048.84hPa +>> [00934] Received from sensor_temp: temperature=31.38celsius +>> [00935] Received from sensor_humidity: humidity=34.36percent +>> [00936] Received from sensor_temp: temperature=27.42celsius +>> [00937] Received from sensor_pressure: pressure=1030.84hPa +>> [00938] Received from sensor_humidity: humidity=64.13percent +>> [00939] Received from sensor_temp: temperature=23.38celsius +>> [00940] Received from sensor_temp: temperature=31.9celsius +>> [00941] Received from sensor_humidity: humidity=74.38percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 941 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 74.38 percent | Count: 290 +🟢 ACTIVE | sensor_pressure | pressure | 1030.84 hPa | Count: 217 +🟢 ACTIVE | sensor_temp | temperature | 31.90 celsius | Count: 434 +====================================================================== + +>> [00942] Received from sensor_temp: temperature=30.61celsius +>> [00943] Received from sensor_pressure: pressure=989.3hPa +>> [00944] Received from sensor_humidity: humidity=71.92percent +>> [00945] Received from sensor_temp: temperature=26.81celsius +>> [00946] Received from sensor_pressure: pressure=1044.0hPa +>> [00947] Received from sensor_temp: temperature=25.32celsius +>> [00948] Received from sensor_humidity: humidity=86.1percent +>> [00949] Received from sensor_temp: temperature=16.11celsius +>> [00950] Received from sensor_temp: temperature=32.66celsius +>> [00951] Received from sensor_pressure: pressure=1027.98hPa +>> [00952] Received from sensor_humidity: humidity=89.79percent +>> [00953] Received from sensor_temp: temperature=25.17celsius +>> [00954] Received from sensor_humidity: humidity=72.48percent +>> [00955] Received from sensor_pressure: pressure=1010.4hPa +>> [00956] Received from sensor_temp: temperature=19.88celsius +>> [00957] Received from sensor_humidity: humidity=48.14percent +>> [00958] Received from sensor_temp: temperature=26.35celsius +>> [00959] Received from sensor_temp: temperature=30.89celsius +>> [00960] Received from sensor_pressure: pressure=1025.32hPa +>> [00961] Received from sensor_humidity: humidity=41.41percent +>> [00962] Received from sensor_temp: temperature=33.41celsius +>> [00963] Received from sensor_humidity: humidity=39.63percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 963 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 39.63 percent | Count: 297 +🟢 ACTIVE | sensor_pressure | pressure | 1025.32 hPa | Count: 222 +🟢 ACTIVE | sensor_temp | temperature | 33.41 celsius | Count: 444 +====================================================================== + +>> [00964] Received from sensor_pressure: pressure=1032.43hPa +>> [00965] Received from sensor_temp: temperature=29.15celsius +>> [00966] Received from sensor_temp: temperature=29.02celsius +>> [00967] Received from sensor_humidity: humidity=51.27percent +>> [00968] Received from sensor_temp: temperature=25.39celsius +>> [00969] Received from sensor_pressure: pressure=1005.43hPa +>> [00970] Received from sensor_humidity: humidity=33.38percent +>> [00971] Received from sensor_temp: temperature=21.18celsius +>> [00972] Received from sensor_pressure: pressure=1002.02hPa +>> [00973] Received from sensor_temp: temperature=15.08celsius +>> [00974] Received from sensor_humidity: humidity=39.5percent +>> [00975] Received from sensor_temp: temperature=15.3celsius +>> [00976] Received from sensor_pressure: pressure=1014.47hPa +>> [00977] Received from sensor_humidity: humidity=30.63percent +>> [00978] Received from sensor_temp: temperature=32.84celsius +>> [00979] Received from sensor_temp: temperature=30.89celsius +>> [00980] Received from sensor_humidity: humidity=76.51percent +>> [00981] Received from sensor_temp: temperature=20.13celsius +>> [00982] Received from sensor_pressure: pressure=1047.4hPa +>> [00983] Received from sensor_humidity: humidity=81.56percent +>> [00984] Received from sensor_temp: temperature=32.64celsius +>> [00985] Received from sensor_pressure: pressure=993.91hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 985 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 81.56 percent | Count: 303 +🟢 ACTIVE | sensor_pressure | pressure | 993.91 hPa | Count: 228 +🟢 ACTIVE | sensor_temp | temperature | 32.64 celsius | Count: 454 +====================================================================== + +>> [00986] Received from sensor_temp: temperature=28.15celsius +>> [00987] Received from sensor_humidity: humidity=88.2percent +>> [00988] Received from sensor_temp: temperature=27.37celsius +>> [00989] Received from sensor_pressure: pressure=1046.36hPa +>> [00990] Received from sensor_humidity: humidity=46.09percent +>> [00991] Received from sensor_temp: temperature=32.67celsius +>> [00992] Received from sensor_temp: temperature=21.39celsius +>> [00993] Received from sensor_humidity: humidity=76.5percent +>> [00994] Received from sensor_pressure: pressure=1008.1hPa +>> [00995] Received from sensor_temp: temperature=32.33celsius +>> [00996] Received from sensor_humidity: humidity=56.09percent +>> [00997] Received from sensor_temp: temperature=26.74celsius +>> [00998] Received from sensor_pressure: pressure=1036.55hPa +>> [00999] Received from sensor_temp: temperature=30.85celsius +>> [01000] Received from sensor_humidity: humidity=69.07percent +>> [01001] Received from sensor_temp: temperature=21.16celsius +>> [01002] Received from sensor_pressure: pressure=991.13hPa +>> [01003] Received from sensor_humidity: humidity=87.84percent +>> [01004] Received from sensor_temp: temperature=23.5celsius +>> [01005] Received from sensor_temp: temperature=26.34celsius +>> [01006] Received from sensor_humidity: humidity=63.93percent +>> [01007] Received from sensor_pressure: pressure=983.39hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1007 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 63.93 percent | Count: 310 +🟢 ACTIVE | sensor_pressure | pressure | 983.39 hPa | Count: 233 +🟢 ACTIVE | sensor_temp | temperature | 26.34 celsius | Count: 464 +====================================================================== + +>> [01008] Received from sensor_temp: temperature=28.31celsius +>> [01009] Received from sensor_humidity: humidity=69.95percent +>> [01010] Received from sensor_temp: temperature=24.72celsius +>> [01011] Received from sensor_temp: temperature=27.27celsius +>> [01012] Received from sensor_pressure: pressure=995.77hPa +>> [01013] Received from sensor_humidity: humidity=51.02percent +>> [01014] Received from sensor_temp: temperature=27.2celsius +>> [01015] Received from sensor_pressure: pressure=1032.21hPa +>> [01016] Received from sensor_humidity: humidity=47.95percent +>> [01017] Received from sensor_temp: temperature=27.19celsius +>> [01018] Received from sensor_temp: temperature=26.45celsius +>> [01019] Received from sensor_humidity: humidity=41.37percent +>> [01020] Received from sensor_pressure: pressure=1001.33hPa +>> [01021] Received from sensor_temp: temperature=21.67celsius +>> [01022] Received from sensor_humidity: humidity=81.22percent +>> [01023] Received from sensor_temp: temperature=31.48celsius +>> [01024] Received from sensor_pressure: pressure=985.18hPa +>> [01025] Received from sensor_temp: temperature=20.17celsius +>> [01026] Received from sensor_humidity: humidity=74.77percent +>> [01027] Received from sensor_temp: temperature=31.94celsius +>> [01028] Received from sensor_temp: temperature=17.97celsius +>> [01029] Received from sensor_pressure: pressure=1016.93hPa +>> [01030] Received from sensor_humidity: humidity=77.89percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1030 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 77.89 percent | Count: 317 +🟢 ACTIVE | sensor_pressure | pressure | 1016.93 hPa | Count: 238 +🟢 ACTIVE | sensor_temp | temperature | 17.97 celsius | Count: 475 +====================================================================== + +>> [01031] Received from sensor_temp: temperature=31.17celsius +>> [01032] Received from sensor_humidity: humidity=79.74percent +>> [01033] Received from sensor_pressure: pressure=1001.46hPa +>> [01034] Received from sensor_temp: temperature=23.68celsius +>> [01035] Received from sensor_humidity: humidity=58.34percent +>> [01036] Received from sensor_temp: temperature=26.93celsius +>> [01037] Received from sensor_pressure: pressure=1000.63hPa +>> [01038] Received from sensor_temp: temperature=23.07celsius +>> [01039] Received from sensor_humidity: humidity=62.9percent +>> [01040] Received from sensor_temp: temperature=22.16celsius +>> [01041] Received from sensor_pressure: pressure=1035.28hPa +>> [01042] Received from sensor_humidity: humidity=45.73percent +>> [01043] Received from sensor_temp: temperature=29.54celsius +>> [01044] Received from sensor_temp: temperature=23.1celsius +>> [01045] Received from sensor_humidity: humidity=41.12percent +>> [01046] Received from sensor_pressure: pressure=982.57hPa +>> [01047] Received from sensor_temp: temperature=15.8celsius +>> [01048] Received from sensor_humidity: humidity=85.97percent +>> [01049] Received from sensor_temp: temperature=25.21celsius +>> [01050] Received from sensor_pressure: pressure=982.94hPa +>> [01051] Received from sensor_temp: temperature=21.09celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1051 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.97 percent | Count: 323 +🟢 ACTIVE | sensor_pressure | pressure | 982.94 hPa | Count: 243 +🟢 ACTIVE | sensor_temp | temperature | 21.09 celsius | Count: 485 +====================================================================== + +>> [01052] Received from sensor_humidity: humidity=87.62percent +>> [01053] Received from sensor_temp: temperature=18.87celsius +>> [01054] Received from sensor_pressure: pressure=980.44hPa +>> [01055] Received from sensor_humidity: humidity=44.91percent +>> [01056] Received from sensor_temp: temperature=30.51celsius +>> [01057] Received from sensor_temp: temperature=29.05celsius +>> [01058] Received from sensor_humidity: humidity=58.27percent +>> [01059] Received from sensor_temp: temperature=31.35celsius +>> [01060] Received from sensor_pressure: pressure=994.43hPa +>> [01061] Received from sensor_humidity: humidity=52.02percent +>> [01062] Received from sensor_temp: temperature=16.62celsius +>> [01063] Received from sensor_pressure: pressure=1019.11hPa +>> [01064] Received from sensor_temp: temperature=35.0celsius +>> [01065] Received from sensor_humidity: humidity=74.32percent +>> [01066] Received from sensor_temp: temperature=22.23celsius +>> [01067] Received from sensor_humidity: humidity=75.44percent +>> [01068] Received from sensor_pressure: pressure=997.71hPa +>> [01069] Received from sensor_temp: temperature=26.02celsius +>> [01070] Received from sensor_temp: temperature=16.83celsius +>> [01071] Received from sensor_humidity: humidity=46.25percent +>> [01072] Received from sensor_pressure: pressure=1047.99hPa +>> [01073] Received from sensor_temp: temperature=26.89celsius +>> [01074] Received from sensor_humidity: humidity=80.82percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1074 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 80.82 percent | Count: 331 +🟢 ACTIVE | sensor_pressure | pressure | 1047.99 hPa | Count: 248 +🟢 ACTIVE | sensor_temp | temperature | 26.89 celsius | Count: 495 +====================================================================== + +>> [01075] Received from sensor_temp: temperature=28.26celsius +>> [01076] Received from sensor_pressure: pressure=1049.24hPa +>> [01077] Received from sensor_temp: temperature=29.32celsius +>> [01078] Received from sensor_humidity: humidity=88.39percent +>> [01079] Received from sensor_temp: temperature=21.59celsius +>> [01080] Received from sensor_humidity: humidity=40.48percent +>> [01081] Received from sensor_pressure: pressure=1015.21hPa +>> [01082] Received from sensor_temp: temperature=21.74celsius +>> [01083] Received from sensor_temp: temperature=31.43celsius +>> [01084] Received from sensor_humidity: humidity=48.77percent +>> [01085] Received from sensor_pressure: pressure=1033.13hPa +>> [01086] Received from sensor_temp: temperature=19.48celsius +>> [01087] Received from sensor_humidity: humidity=37.04percent +>> [01088] Received from sensor_temp: temperature=27.79celsius +>> [01089] Received from sensor_temp: temperature=17.28celsius +>> [01090] Received from sensor_pressure: pressure=1021.96hPa +>> [01091] Received from sensor_humidity: humidity=35.74percent +>> [01092] Received from sensor_temp: temperature=23.58celsius +>> [01093] Received from sensor_pressure: pressure=1011.99hPa +>> [01094] Received from sensor_humidity: humidity=82.69percent +>> [01095] Received from sensor_temp: temperature=24.67celsius +>> [01096] Received from sensor_temp: temperature=33.26celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1096 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 82.69 percent | Count: 337 +🟢 ACTIVE | sensor_pressure | pressure | 1011.99 hPa | Count: 253 +🟢 ACTIVE | sensor_temp | temperature | 33.26 celsius | Count: 506 +====================================================================== + +>> [01097] Received from sensor_humidity: humidity=81.44percent +>> [01098] Received from sensor_pressure: pressure=1020.46hPa +>> [01099] Received from sensor_temp: temperature=31.94celsius +>> [01100] Received from sensor_temp: temperature=23.53celsius +>> [01101] Received from sensor_humidity: humidity=39.16percent +>> [01102] Received from sensor_pressure: pressure=1028.56hPa +>> [01103] Received from sensor_temp: temperature=17.52celsius +>> [01104] Received from sensor_humidity: humidity=70.4percent +>> [01105] Received from sensor_temp: temperature=18.06celsius +>> [01106] Received from sensor_humidity: humidity=48.88percent +>> [01107] Received from sensor_pressure: pressure=1014.04hPa +>> [01108] Received from sensor_temp: temperature=29.06celsius +>> [01109] Received from sensor_temp: temperature=18.89celsius +>> [01110] Received from sensor_humidity: humidity=83.88percent +>> [01111] Received from sensor_pressure: pressure=995.18hPa +>> [01112] Received from sensor_temp: temperature=33.5celsius +>> [01113] Received from sensor_humidity: humidity=84.06percent +>> [01114] Received from sensor_temp: temperature=27.1celsius +>> [01115] Received from sensor_pressure: pressure=996.22hPa +>> [01116] Received from sensor_temp: temperature=29.87celsius +>> [01117] Received from sensor_humidity: humidity=33.21percent +>> [01118] Received from sensor_temp: temperature=18.6celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1118 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 33.21 percent | Count: 344 +🟢 ACTIVE | sensor_pressure | pressure | 996.22 hPa | Count: 258 +🟢 ACTIVE | sensor_temp | temperature | 18.60 celsius | Count: 516 +====================================================================== + +>> [01119] Received from sensor_humidity: humidity=53.86percent +>> [01120] Received from sensor_pressure: pressure=1030.17hPa +>> [01121] Received from sensor_temp: temperature=29.9celsius +>> [01122] Received from sensor_temp: temperature=26.67celsius +>> [01123] Received from sensor_humidity: humidity=33.5percent +>> [01124] Received from sensor_temp: temperature=15.27celsius +>> [01125] Received from sensor_pressure: pressure=1043.66hPa +>> [01126] Received from sensor_humidity: humidity=63.11percent +>> [01127] Received from sensor_temp: temperature=30.53celsius +>> [01128] Received from sensor_pressure: pressure=1023.32hPa +>> [01129] Received from sensor_temp: temperature=31.01celsius +>> [01130] Received from sensor_humidity: humidity=56.32percent +>> [01131] Received from sensor_temp: temperature=27.81celsius +>> [01132] Received from sensor_humidity: humidity=57.66percent +>> [01133] Received from sensor_pressure: pressure=1022.68hPa +>> [01134] Received from sensor_temp: temperature=25.99celsius +>> [01135] Received from sensor_temp: temperature=22.47celsius +>> [01136] Received from sensor_humidity: humidity=73.69percent +>> [01137] Received from sensor_pressure: pressure=1003.34hPa +>> [01138] Received from sensor_temp: temperature=32.54celsius +>> [01139] Received from sensor_humidity: humidity=36.74percent +>> [01140] Received from sensor_temp: temperature=21.77celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1140 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 36.74 percent | Count: 351 +🟢 ACTIVE | sensor_pressure | pressure | 1003.34 hPa | Count: 263 +🟢 ACTIVE | sensor_temp | temperature | 21.77 celsius | Count: 526 +====================================================================== + +>> [01141] Received from sensor_temp: temperature=26.23celsius +>> [01142] Received from sensor_pressure: pressure=997.93hPa +>> [01143] Received from sensor_humidity: humidity=86.16percent +>> [01144] Received from sensor_temp: temperature=21.09celsius +>> [01145] Received from sensor_pressure: pressure=1031.73hPa +>> [01146] Received from sensor_humidity: humidity=86.91percent +>> [01147] Received from sensor_temp: temperature=29.35celsius +>> [01148] Received from sensor_temp: temperature=30.64celsius +>> [01149] Received from sensor_humidity: humidity=62.63percent +>> [01150] Received from sensor_pressure: pressure=1008.91hPa +>> [01151] Received from sensor_temp: temperature=24.97celsius +>> [01152] Received from sensor_humidity: humidity=75.93percent +>> [01153] Received from sensor_temp: temperature=15.65celsius +>> [01154] Received from sensor_pressure: pressure=997.91hPa +>> [01155] Received from sensor_temp: temperature=34.39celsius +>> [01156] Received from sensor_humidity: humidity=71.64percent +>> [01157] Received from sensor_temp: temperature=16.49celsius +>> [01158] Received from sensor_temp: temperature=22.02celsius +>> [01159] Received from sensor_pressure: pressure=984.69hPa +>> [01160] Received from sensor_humidity: humidity=70.28percent +>> [01161] Received from sensor_temp: temperature=32.81celsius +>> [01162] Received from sensor_humidity: humidity=78.07percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1162 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.07 percent | Count: 358 +🟢 ACTIVE | sensor_pressure | pressure | 984.69 hPa | Count: 268 +🟢 ACTIVE | sensor_temp | temperature | 32.81 celsius | Count: 536 +====================================================================== + +>> [01163] Received from sensor_pressure: pressure=1044.94hPa +>> [01164] Received from sensor_temp: temperature=31.78celsius +>> [01165] Received from sensor_humidity: humidity=41.93percent +>> [01166] Received from sensor_temp: temperature=24.98celsius +>> [01167] Received from sensor_pressure: pressure=1030.64hPa +>> [01168] Received from sensor_temp: temperature=26.18celsius +>> [01169] Received from sensor_humidity: humidity=67.68percent +>> [01170] Received from sensor_temp: temperature=26.65celsius +>> [01171] Received from sensor_humidity: humidity=67.66percent +>> [01172] Received from sensor_pressure: pressure=1024.96hPa +>> [01173] Received from sensor_temp: temperature=20.62celsius +>> [01174] Received from sensor_temp: temperature=25.05celsius +>> [01175] Received from sensor_humidity: humidity=72.81percent +>> [01176] Received from sensor_temp: temperature=26.09celsius +>> [01177] Received from sensor_pressure: pressure=991.94hPa +>> [01178] Received from sensor_humidity: humidity=78.36percent +>> [01179] Received from sensor_temp: temperature=23.71celsius +>> [01180] Received from sensor_pressure: pressure=1015.43hPa +>> [01181] Received from sensor_temp: temperature=31.34celsius +>> [01182] Received from sensor_humidity: humidity=78.0percent +>> [01183] Received from sensor_temp: temperature=15.31celsius +>> [01184] Received from sensor_pressure: pressure=1004.48hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1184 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.00 percent | Count: 364 +🟢 ACTIVE | sensor_pressure | pressure | 1004.48 hPa | Count: 274 +🟢 ACTIVE | sensor_temp | temperature | 15.31 celsius | Count: 546 +====================================================================== + +>> [01185] Received from sensor_humidity: humidity=49.48percent +>> [01186] Received from sensor_temp: temperature=23.49celsius +>> [01187] Received from sensor_temp: temperature=20.51celsius +>> [01188] Received from sensor_humidity: humidity=51.61percent +>> [01189] Received from sensor_pressure: pressure=1023.43hPa +>> [01190] Received from sensor_temp: temperature=29.32celsius +>> [01191] Received from sensor_humidity: humidity=45.33percent +>> [01192] Received from sensor_temp: temperature=30.77celsius +>> [01193] Received from sensor_temp: temperature=33.66celsius +>> [01194] Received from sensor_pressure: pressure=982.0hPa +>> [01195] Received from sensor_humidity: humidity=52.04percent +>> [01196] Received from sensor_temp: temperature=19.34celsius +>> [01197] Received from sensor_pressure: pressure=1001.38hPa +>> [01198] Received from sensor_humidity: humidity=85.09percent +>> [01199] Received from sensor_temp: temperature=16.99celsius +>> [01200] Received from sensor_temp: temperature=24.29celsius +>> [01201] Received from sensor_humidity: humidity=44.13percent +>> [01202] Received from sensor_pressure: pressure=1049.8hPa +>> [01203] Received from sensor_temp: temperature=15.75celsius +>> [01204] Received from sensor_humidity: humidity=80.71percent +>> [01205] Received from sensor_temp: temperature=19.93celsius +>> [01206] Received from sensor_pressure: pressure=980.27hPa +>> [01207] Received from sensor_temp: temperature=18.54celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1207 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 80.71 percent | Count: 371 +🟢 ACTIVE | sensor_pressure | pressure | 980.27 hPa | Count: 279 +🟢 ACTIVE | sensor_temp | temperature | 18.54 celsius | Count: 557 +====================================================================== + +>> [01208] Received from sensor_humidity: humidity=61.8percent +>> [01209] Received from sensor_temp: temperature=24.6celsius +>> [01210] Received from sensor_humidity: humidity=40.76percent +>> [01211] Received from sensor_pressure: pressure=1023.95hPa +>> [01212] Received from sensor_temp: temperature=26.14celsius +>> [01213] Received from sensor_temp: temperature=16.02celsius +>> [01214] Received from sensor_humidity: humidity=57.88percent +>> [01215] Received from sensor_temp: temperature=19.06celsius +>> [01216] Received from sensor_pressure: pressure=1033.77hPa +>> [01217] Received from sensor_humidity: humidity=85.36percent +>> [01218] Received from sensor_temp: temperature=32.94celsius +>> [01219] Received from sensor_pressure: pressure=1047.28hPa +>> [01220] Received from sensor_temp: temperature=31.68celsius +>> [01221] Received from sensor_humidity: humidity=45.98percent +>> [01222] Received from sensor_temp: temperature=33.07celsius +>> [01223] Received from sensor_humidity: humidity=82.68percent +>> [01224] Received from sensor_temp: temperature=20.64celsius +>> [01225] Received from sensor_pressure: pressure=1040.31hPa +>> [01226] Received from sensor_temp: temperature=23.18celsius +>> [01227] Received from sensor_humidity: humidity=80.2percent +>> [01228] Received from sensor_temp: temperature=23.0celsius +>> [01229] Received from sensor_pressure: pressure=997.55hPa +>> [01230] Received from sensor_humidity: humidity=64.48percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1230 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.48 percent | Count: 379 +🟢 ACTIVE | sensor_pressure | pressure | 997.55 hPa | Count: 284 +🟢 ACTIVE | sensor_temp | temperature | 23.00 celsius | Count: 567 +====================================================================== + +>> [01231] Received from sensor_temp: temperature=25.07celsius +>> [01232] Received from sensor_pressure: pressure=1023.43hPa +>> [01233] Received from sensor_temp: temperature=31.01celsius +>> [01234] Received from sensor_humidity: humidity=31.96percent +>> [01235] Received from sensor_temp: temperature=29.55celsius +>> [01236] Received from sensor_pressure: pressure=1024.25hPa +>> [01237] Received from sensor_humidity: humidity=49.03percent +>> [01238] Received from sensor_temp: temperature=23.67celsius +>> [01239] Received from sensor_temp: temperature=21.24celsius +>> [01240] Received from sensor_humidity: humidity=87.52percent +>> [01241] Received from sensor_pressure: pressure=1007.35hPa +>> [01242] Received from sensor_temp: temperature=16.03celsius +>> [01243] Received from sensor_humidity: humidity=78.79percent +>> [01244] Received from sensor_temp: temperature=25.25celsius +>> [01245] Received from sensor_pressure: pressure=1032.16hPa +>> [01246] Received from sensor_temp: temperature=17.75celsius +>> [01247] Received from sensor_humidity: humidity=89.22percent +>> [01248] Received from sensor_temp: temperature=15.86celsius +>> [01249] Received from sensor_pressure: pressure=981.02hPa +>> [01250] Received from sensor_humidity: humidity=77.18percent +>> [01251] Received from sensor_temp: temperature=18.03celsius +>> [01252] Received from sensor_temp: temperature=15.02celsius +>> [01253] Received from sensor_humidity: humidity=72.44percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1253 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 72.44 percent | Count: 386 +🟢 ACTIVE | sensor_pressure | pressure | 981.02 hPa | Count: 289 +🟢 ACTIVE | sensor_temp | temperature | 15.02 celsius | Count: 578 +====================================================================== + +>> [01254] Received from sensor_pressure: pressure=1019.25hPa +>> [01255] Received from sensor_temp: temperature=26.76celsius +>> [01256] Received from sensor_temp: temperature=31.94celsius +>> [01257] Received from sensor_humidity: humidity=84.05percent +>> [01258] Received from sensor_pressure: pressure=1048.21hPa +>> [01259] Received from sensor_temp: temperature=21.42celsius +>> [01260] Received from sensor_humidity: humidity=36.17percent +>> [01261] Received from sensor_temp: temperature=32.88celsius +>> [01262] Received from sensor_pressure: pressure=1044.4hPa +>> [01263] Received from sensor_humidity: humidity=55.25percent +>> [01264] Received from sensor_temp: temperature=28.77celsius +>> [01265] Received from sensor_temp: temperature=26.23celsius +>> [01266] Received from sensor_humidity: humidity=79.84percent +>> [01267] Received from sensor_pressure: pressure=1042.99hPa +>> [01268] Received from sensor_temp: temperature=16.32celsius +>> [01269] Received from sensor_humidity: humidity=64.03percent +>> [01270] Received from sensor_temp: temperature=23.61celsius +>> [01271] Received from sensor_pressure: pressure=1042.29hPa +>> [01272] Received from sensor_temp: temperature=28.48celsius +>> [01273] Received from sensor_humidity: humidity=87.54percent +>> [01274] Received from sensor_temp: temperature=31.63celsius +>> [01275] Received from sensor_humidity: humidity=87.44percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1275 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 87.44 percent | Count: 393 +🟢 ACTIVE | sensor_pressure | pressure | 1042.29 hPa | Count: 294 +🟢 ACTIVE | sensor_temp | temperature | 31.63 celsius | Count: 588 +====================================================================== + +>> [01276] Received from sensor_pressure: pressure=980.41hPa +>> [01277] Received from sensor_temp: temperature=27.05celsius +>> [01278] Received from sensor_temp: temperature=19.56celsius +>> [01279] Received from sensor_humidity: humidity=45.89percent +>> [01280] Received from sensor_temp: temperature=16.66celsius +>> [01281] Received from sensor_pressure: pressure=1023.01hPa +>> [01282] Received from sensor_humidity: humidity=49.58percent +>> [01283] Received from sensor_temp: temperature=28.69celsius +>> [01284] Received from sensor_pressure: pressure=1000.33hPa +>> [01285] Received from sensor_temp: temperature=32.45celsius +>> [01286] Received from sensor_humidity: humidity=86.84percent +>> [01287] Received from sensor_temp: temperature=15.03celsius +>> [01288] Received from sensor_pressure: pressure=1006.38hPa +>> [01289] Received from sensor_humidity: humidity=33.05percent +>> [01290] Received from sensor_temp: temperature=17.04celsius +>> [01291] Received from sensor_temp: temperature=34.85celsius +>> [01292] Received from sensor_humidity: humidity=77.61percent +>> [01293] Received from sensor_pressure: pressure=1001.9hPa +>> [01294] Received from sensor_temp: temperature=29.26celsius +>> [01295] Received from sensor_temp: temperature=30.02celsius +>> [01296] Received from sensor_humidity: humidity=67.47percent +>> [01297] Received from sensor_pressure: pressure=994.66hPa +>> [01298] Received from sensor_temp: temperature=34.55celsius +>> [01299] Received from sensor_humidity: humidity=78.68percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1299 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.68 percent | Count: 400 +🟢 ACTIVE | sensor_pressure | pressure | 994.66 hPa | Count: 300 +🟢 ACTIVE | sensor_temp | temperature | 34.55 celsius | Count: 599 +====================================================================== + +>> [01300] Received from sensor_temp: temperature=22.25celsius +>> [01301] Received from sensor_pressure: pressure=1009.24hPa +>> [01302] Received from sensor_humidity: humidity=35.49percent +>> [01303] Received from sensor_temp: temperature=28.41celsius +>> [01304] Received from sensor_temp: temperature=23.17celsius +>> [01305] Received from sensor_humidity: humidity=47.72percent +>> [01306] Received from sensor_pressure: pressure=1042.67hPa +>> [01307] Received from sensor_temp: temperature=22.7celsius +>> [01308] Received from sensor_humidity: humidity=48.62percent +>> [01309] Received from sensor_temp: temperature=16.63celsius +>> [01310] Received from sensor_temp: temperature=28.18celsius +>> [01311] Received from sensor_pressure: pressure=994.46hPa +>> [01312] Received from sensor_humidity: humidity=79.22percent +>> [01313] Received from sensor_temp: temperature=19.85celsius +>> [01314] Received from sensor_temp: temperature=25.62celsius +>> [01315] Received from sensor_pressure: pressure=1036.04hPa +>> [01316] Received from sensor_humidity: humidity=79.26percent +>> [01317] Received from sensor_temp: temperature=16.59celsius +>> [01318] Received from sensor_humidity: humidity=31.9percent +>> [01319] Received from sensor_temp: temperature=16.76celsius +>> [01320] Received from sensor_pressure: pressure=1039.59hPa +>> [01321] Received from sensor_humidity: humidity=78.86percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1321 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.86 percent | Count: 407 +🟢 ACTIVE | sensor_pressure | pressure | 1039.59 hPa | Count: 305 +🟢 ACTIVE | sensor_temp | temperature | 16.76 celsius | Count: 609 +====================================================================== + +>> [01322] Received from sensor_temp: temperature=20.22celsius +>> [01323] Received from sensor_pressure: pressure=995.36hPa +>> [01324] Received from sensor_temp: temperature=32.34celsius +>> [01325] Received from sensor_humidity: humidity=45.08percent +>> [01326] Received from sensor_temp: temperature=31.02celsius +>> [01327] Received from sensor_humidity: humidity=72.22percent +>> [01328] Received from sensor_pressure: pressure=1012.43hPa +>> [01329] Received from sensor_temp: temperature=29.98celsius +>> [01330] Received from sensor_temp: temperature=32.49celsius +>> [01331] Received from sensor_humidity: humidity=44.67percent +>> [01332] Received from sensor_temp: temperature=31.77celsius +>> [01333] Received from sensor_pressure: pressure=994.17hPa +>> [01334] Received from sensor_temp: temperature=28.48celsius +>> [01335] Received from sensor_humidity: humidity=78.82percent +>> [01336] Received from sensor_temp: temperature=17.61celsius +>> [01337] Received from sensor_pressure: pressure=993.19hPa +>> [01338] Received from sensor_humidity: humidity=42.33percent +>> [01339] Received from sensor_temp: temperature=28.99celsius +>> [01340] Received from sensor_pressure: pressure=986.29hPa +>> [01341] Received from sensor_humidity: humidity=68.42percent +>> [01342] Received from sensor_temp: temperature=17.81celsius +>> [01343] Received from sensor_temp: temperature=33.78celsius +>> [01344] Received from sensor_humidity: humidity=85.95percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1344 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.95 percent | Count: 414 +🟢 ACTIVE | sensor_pressure | pressure | 986.29 hPa | Count: 310 +🟢 ACTIVE | sensor_temp | temperature | 33.78 celsius | Count: 620 +====================================================================== + +>> [01345] Received from sensor_pressure: pressure=987.47hPa +>> [01346] Received from sensor_temp: temperature=16.71celsius +>> [01347] Received from sensor_humidity: humidity=37.4percent +>> [01348] Received from sensor_temp: temperature=22.31celsius +>> [01349] Received from sensor_pressure: pressure=993.12hPa +>> [01350] Received from sensor_temp: temperature=21.04celsius +>> [01351] Received from sensor_humidity: humidity=49.16percent +>> [01352] Received from sensor_temp: temperature=21.29celsius +>> [01353] Received from sensor_humidity: humidity=78.01percent +>> [01354] Received from sensor_pressure: pressure=1040.98hPa +>> [01355] Received from sensor_temp: temperature=18.09celsius +>> [01356] Received from sensor_temp: temperature=20.2celsius +>> [01357] Received from sensor_humidity: humidity=32.01percent +>> [01358] Received from sensor_pressure: pressure=989.18hPa +>> [01359] Received from sensor_temp: temperature=26.85celsius +>> [01360] Received from sensor_humidity: humidity=63.8percent +>> [01361] Received from sensor_temp: temperature=23.41celsius +>> [01362] Received from sensor_pressure: pressure=992.86hPa +>> [01363] Received from sensor_temp: temperature=25.81celsius +>> [01364] Received from sensor_humidity: humidity=89.52percent +>> [01365] Received from sensor_temp: temperature=33.29celsius +>> [01366] Received from sensor_pressure: pressure=1041.26hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1366 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 89.52 percent | Count: 420 +🟢 ACTIVE | sensor_pressure | pressure | 1041.26 hPa | Count: 316 +🟢 ACTIVE | sensor_temp | temperature | 33.29 celsius | Count: 630 +====================================================================== + +>> [01367] Received from sensor_humidity: humidity=39.41percent +>> [01368] Received from sensor_temp: temperature=16.66celsius +>> [01369] Received from sensor_temp: temperature=25.77celsius +>> [01370] Received from sensor_humidity: humidity=36.69percent +>> [01371] Received from sensor_pressure: pressure=987.13hPa +>> [01372] Received from sensor_temp: temperature=15.17celsius +>> [01373] Received from sensor_humidity: humidity=30.6percent +>> [01374] Received from sensor_temp: temperature=19.13celsius +>> [01375] Received from sensor_temp: temperature=33.29celsius +>> [01376] Received from sensor_pressure: pressure=1002.17hPa +>> [01377] Received from sensor_humidity: humidity=49.34percent +>> [01378] Received from sensor_temp: temperature=23.75celsius +>> [01379] Received from sensor_humidity: humidity=57.33percent +>> [01380] Received from sensor_pressure: pressure=1033.44hPa +>> [01381] Received from sensor_temp: temperature=19.01celsius +>> [01382] Received from sensor_temp: temperature=29.95celsius +>> [01383] Received from sensor_humidity: humidity=85.49percent +>> [01384] Received from sensor_pressure: pressure=999.99hPa +>> [01385] Received from sensor_temp: temperature=24.44celsius +>> [01386] Received from sensor_humidity: humidity=64.39percent +>> [01387] Received from sensor_temp: temperature=33.76celsius +>> [01388] Received from sensor_pressure: pressure=1002.21hPa +>> [01389] Received from sensor_temp: temperature=28.75celsius +>> [01390] Received from sensor_humidity: humidity=65.49percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1390 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 65.49 percent | Count: 428 +🟢 ACTIVE | sensor_pressure | pressure | 1002.21 hPa | Count: 321 +🟢 ACTIVE | sensor_temp | temperature | 28.75 celsius | Count: 641 +====================================================================== + +>> [01391] Received from sensor_temp: temperature=25.46celsius +>> [01392] Received from sensor_pressure: pressure=1000.26hPa +>> [01393] Received from sensor_humidity: humidity=34.08percent +>> [01394] Received from sensor_temp: temperature=17.71celsius +>> [01395] Received from sensor_temp: temperature=32.92celsius +>> [01396] Received from sensor_humidity: humidity=67.24percent +>> [01397] Received from sensor_pressure: pressure=1017.07hPa +>> [01398] Received from sensor_temp: temperature=17.07celsius +>> [01399] Received from sensor_humidity: humidity=88.57percent +>> [01400] Received from sensor_temp: temperature=33.16celsius +>> [01401] Received from sensor_temp: temperature=23.19celsius +>> [01402] Received from sensor_pressure: pressure=1005.87hPa +>> [01403] Received from sensor_humidity: humidity=47.37percent +>> [01404] Received from sensor_temp: temperature=16.62celsius +>> [01405] Received from sensor_pressure: pressure=1047.88hPa +>> [01406] Received from sensor_humidity: humidity=61.97percent +>> [01407] Received from sensor_temp: temperature=29.1celsius +>> [01408] Received from sensor_temp: temperature=22.73celsius +>> [01409] Received from sensor_humidity: humidity=37.65percent +>> [01410] Received from sensor_temp: temperature=18.96celsius +>> [01411] Received from sensor_pressure: pressure=993.78hPa +>> [01412] Received from sensor_humidity: humidity=73.23percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1412 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 73.23 percent | Count: 435 +🟢 ACTIVE | sensor_pressure | pressure | 993.78 hPa | Count: 326 +🟢 ACTIVE | sensor_temp | temperature | 18.96 celsius | Count: 651 +====================================================================== + +>> [01413] Received from sensor_temp: temperature=34.14celsius +>> [01414] Received from sensor_pressure: pressure=1022.65hPa +>> [01415] Received from sensor_temp: temperature=18.6celsius +>> [01416] Received from sensor_humidity: humidity=87.95percent +>> [01417] Received from sensor_temp: temperature=29.07celsius +>> [01418] Received from sensor_pressure: pressure=1044.56hPa +>> [01419] Received from sensor_humidity: humidity=41.03percent +>> [01420] Received from sensor_temp: temperature=26.73celsius +>> [01421] Received from sensor_temp: temperature=16.83celsius +>> [01422] Received from sensor_humidity: humidity=65.15percent +>> [01423] Received from sensor_pressure: pressure=1028.78hPa +>> [01424] Received from sensor_temp: temperature=26.57celsius +>> [01425] Received from sensor_humidity: humidity=50.53percent +>> [01426] Received from sensor_temp: temperature=30.54celsius +>> [01427] Received from sensor_pressure: pressure=1030.26hPa +>> [01428] Received from sensor_temp: temperature=23.89celsius +>> [01429] Received from sensor_humidity: humidity=71.25percent +>> [01430] Received from sensor_temp: temperature=32.22celsius +>> [01431] Received from sensor_humidity: humidity=40.47percent +>> [01432] Received from sensor_pressure: pressure=1013.03hPa +>> [01433] Received from sensor_temp: temperature=23.92celsius +>> [01434] Received from sensor_temp: temperature=15.02celsius +>> [01435] Received from sensor_humidity: humidity=49.31percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1435 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 49.31 percent | Count: 442 +🟢 ACTIVE | sensor_pressure | pressure | 1013.03 hPa | Count: 331 +🟢 ACTIVE | sensor_temp | temperature | 15.02 celsius | Count: 662 +====================================================================== + +>> [01436] Received from sensor_pressure: pressure=982.21hPa +>> [01437] Received from sensor_temp: temperature=28.36celsius +>> [01438] Received from sensor_humidity: humidity=62.19percent +>> [01439] Received from sensor_temp: temperature=23.67celsius +>> [01440] Received from sensor_pressure: pressure=1013.11hPa +>> [01441] Received from sensor_temp: temperature=19.23celsius +>> [01442] Received from sensor_humidity: humidity=50.64percent +>> [01443] Received from sensor_temp: temperature=23.16celsius +>> [01444] Received from sensor_humidity: humidity=76.78percent +>> [01445] Received from sensor_pressure: pressure=1049.68hPa +>> [01446] Received from sensor_temp: temperature=31.96celsius +>> [01447] Received from sensor_temp: temperature=25.99celsius +>> [01448] Received from sensor_humidity: humidity=61.31percent +>> [01449] Received from sensor_pressure: pressure=994.57hPa +>> [01450] Received from sensor_temp: temperature=22.16celsius +>> [01451] Received from sensor_humidity: humidity=82.73percent +>> [01452] Received from sensor_temp: temperature=19.99celsius +>> [01453] Received from sensor_temp: temperature=21.03celsius +>> [01454] Received from sensor_pressure: pressure=1029.13hPa +>> [01455] Received from sensor_humidity: humidity=55.58percent +>> [01456] Received from sensor_temp: temperature=24.71celsius +>> [01457] Received from sensor_pressure: pressure=1026.64hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1457 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 55.58 percent | Count: 448 +🟢 ACTIVE | sensor_pressure | pressure | 1026.64 hPa | Count: 337 +🟢 ACTIVE | sensor_temp | temperature | 24.71 celsius | Count: 672 +====================================================================== + +>> [01458] Received from sensor_humidity: humidity=71.61percent +>> [01459] Received from sensor_temp: temperature=15.98celsius +>> [01460] Received from sensor_temp: temperature=22.92celsius +>> [01461] Received from sensor_humidity: humidity=48.53percent +>> [01462] Received from sensor_pressure: pressure=990.64hPa +>> [01463] Received from sensor_temp: temperature=34.21celsius +>> [01464] Received from sensor_humidity: humidity=70.92percent +>> [01465] Received from sensor_temp: temperature=31.74celsius +>> [01466] Received from sensor_pressure: pressure=1038.78hPa +>> [01467] Received from sensor_temp: temperature=17.6celsius +>> [01468] Received from sensor_humidity: humidity=30.83percent +>> [01469] Received from sensor_temp: temperature=30.01celsius +>> [01470] Received from sensor_pressure: pressure=1022.86hPa +>> [01471] Received from sensor_humidity: humidity=62.78percent +>> [01472] Received from sensor_temp: temperature=30.35celsius +>> [01473] Received from sensor_temp: temperature=27.72celsius +>> [01474] Received from sensor_humidity: humidity=86.43percent +>> [01475] Received from sensor_pressure: pressure=1025.86hPa +>> [01476] Received from sensor_temp: temperature=28.71celsius +>> [01477] Received from sensor_humidity: humidity=52.89percent +>> [01478] Received from sensor_temp: temperature=28.19celsius +>> [01479] Received from sensor_pressure: pressure=1015.1hPa +>> [01480] Received from sensor_temp: temperature=26.75celsius +>> [01481] Received from sensor_humidity: humidity=38.51percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1481 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 38.51 percent | Count: 456 +🟢 ACTIVE | sensor_pressure | pressure | 1015.10 hPa | Count: 342 +🟢 ACTIVE | sensor_temp | temperature | 26.75 celsius | Count: 683 +====================================================================== + +>> [01482] Received from sensor_temp: temperature=24.73celsius +>> [01483] Received from sensor_humidity: humidity=38.95percent +>> [01484] Received from sensor_pressure: pressure=980.82hPa +>> [01485] Received from sensor_temp: temperature=22.71celsius +>> [01486] Received from sensor_temp: temperature=29.73celsius +>> [01487] Received from sensor_humidity: humidity=30.94percent +>> [01488] Received from sensor_pressure: pressure=980.99hPa +>> [01489] Received from sensor_temp: temperature=28.14celsius +>> [01490] Received from sensor_humidity: humidity=61.21percent +>> [01491] Received from sensor_temp: temperature=28.84celsius +>> [01492] Received from sensor_temp: temperature=34.77celsius +>> [01493] Received from sensor_pressure: pressure=1006.27hPa +>> [01494] Received from sensor_humidity: humidity=77.03percent +>> [01495] Received from sensor_temp: temperature=32.54celsius +>> [01496] Received from sensor_humidity: humidity=31.24percent +>> [01497] Received from sensor_pressure: pressure=1000.91hPa +>> [01498] Received from sensor_temp: temperature=15.12celsius +>> [01499] Received from sensor_temp: temperature=20.17celsius +>> [01500] Received from sensor_humidity: humidity=61.91percent +>> [01501] Received from sensor_pressure: pressure=999.73hPa +>> [01502] Received from sensor_temp: temperature=17.91celsius +>> [01503] Received from sensor_temp: temperature=25.52celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1503 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 61.91 percent | Count: 462 +🟢 ACTIVE | sensor_pressure | pressure | 999.73 hPa | Count: 347 +🟢 ACTIVE | sensor_temp | temperature | 25.52 celsius | Count: 694 +====================================================================== + +>> [01504] Received from sensor_humidity: humidity=30.28percent +>> [01505] Received from sensor_pressure: pressure=980.63hPa +>> [01506] Received from sensor_temp: temperature=18.75celsius +>> [01507] Received from sensor_humidity: humidity=49.28percent +>> [01508] Received from sensor_temp: temperature=20.29celsius +>> [01509] Received from sensor_pressure: pressure=1048.63hPa +>> [01510] Received from sensor_humidity: humidity=34.2percent +>> [01511] Received from sensor_temp: temperature=19.65celsius +>> [01512] Received from sensor_temp: temperature=27.14celsius +>> [01513] Received from sensor_humidity: humidity=53.93percent +>> [01514] Received from sensor_pressure: pressure=1006.95hPa +>> [01515] Received from sensor_temp: temperature=33.21celsius +>> [01516] Received from sensor_humidity: humidity=60.73percent +>> [01517] Received from sensor_temp: temperature=15.33celsius +>> [01518] Received from sensor_pressure: pressure=1030.9hPa +>> [01519] Received from sensor_temp: temperature=30.79celsius +>> [01520] Received from sensor_humidity: humidity=69.89percent +>> [01521] Received from sensor_temp: temperature=26.54celsius +>> [01522] Received from sensor_pressure: pressure=1018.4hPa +>> [01523] Received from sensor_humidity: humidity=73.48percent +>> [01524] Received from sensor_temp: temperature=28.22celsius +>> [01525] Received from sensor_temp: temperature=18.28celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1525 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 73.48 percent | Count: 469 +🟢 ACTIVE | sensor_pressure | pressure | 1018.40 hPa | Count: 352 +🟢 ACTIVE | sensor_temp | temperature | 18.28 celsius | Count: 704 +====================================================================== + +>> [01526] Received from sensor_humidity: humidity=67.22percent +>> [01527] Received from sensor_pressure: pressure=981.18hPa +>> [01528] Received from sensor_temp: temperature=25.8celsius +>> [01529] Received from sensor_humidity: humidity=76.1percent +>> [01530] Received from sensor_temp: temperature=29.78celsius +>> [01531] Received from sensor_pressure: pressure=982.67hPa +>> [01532] Received from sensor_temp: temperature=25.3celsius +>> [01533] Received from sensor_humidity: humidity=30.97percent +>> [01534] Received from sensor_temp: temperature=27.96celsius +>> [01535] Received from sensor_pressure: pressure=1002.16hPa +>> [01536] Received from sensor_humidity: humidity=52.18percent +>> [01537] Received from sensor_temp: temperature=25.79celsius +>> [01538] Received from sensor_temp: temperature=34.1celsius +>> [01539] Received from sensor_humidity: humidity=62.23percent +>> [01540] Received from sensor_temp: temperature=18.11celsius +>> [01541] Received from sensor_pressure: pressure=986.0hPa +>> [01542] Received from sensor_humidity: humidity=79.4percent +>> [01543] Received from sensor_temp: temperature=32.75celsius +>> [01544] Received from sensor_pressure: pressure=1037.77hPa +>> [01545] Received from sensor_temp: temperature=30.1celsius +>> [01546] Received from sensor_humidity: humidity=63.46percent +>> [01547] Received from sensor_temp: temperature=23.98celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1547 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 63.46 percent | Count: 476 +🟢 ACTIVE | sensor_pressure | pressure | 1037.77 hPa | Count: 357 +🟢 ACTIVE | sensor_temp | temperature | 23.98 celsius | Count: 714 +====================================================================== + +>> [01548] Received from sensor_pressure: pressure=1025.05hPa +>> [01549] Received from sensor_humidity: humidity=55.01percent +>> [01550] Received from sensor_temp: temperature=29.11celsius +>> [01551] Received from sensor_temp: temperature=29.97celsius +>> [01552] Received from sensor_humidity: humidity=68.02percent +>> [01553] Received from sensor_pressure: pressure=1012.01hPa +>> [01554] Received from sensor_temp: temperature=22.97celsius +>> [01555] Received from sensor_humidity: humidity=84.22percent +>> [01556] Received from sensor_temp: temperature=24.56celsius +>> [01557] Received from sensor_temp: temperature=24.8celsius +>> [01558] Received from sensor_pressure: pressure=1031.81hPa +>> [01559] Received from sensor_humidity: humidity=88.0percent +>> [01560] Received from sensor_temp: temperature=19.69celsius +>> [01561] Received from sensor_pressure: pressure=987.61hPa +>> [01562] Received from sensor_humidity: humidity=63.0percent +>> [01563] Received from sensor_temp: temperature=28.28celsius +>> [01564] Received from sensor_temp: temperature=23.16celsius +>> [01565] Received from sensor_humidity: humidity=40.63percent +>> [01566] Received from sensor_pressure: pressure=990.6hPa +>> [01567] Received from sensor_temp: temperature=27.03celsius +>> [01568] Received from sensor_humidity: humidity=60.02percent +>> [01569] Received from sensor_temp: temperature=25.57celsius +>> [01570] Received from sensor_temp: temperature=29.32celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1570 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 60.02 percent | Count: 483 +🟢 ACTIVE | sensor_pressure | pressure | 990.60 hPa | Count: 362 +🟢 ACTIVE | sensor_temp | temperature | 29.32 celsius | Count: 725 +====================================================================== + +>> [01571] Received from sensor_pressure: pressure=983.54hPa +>> [01572] Received from sensor_humidity: humidity=77.77percent +>> [01573] Received from sensor_temp: temperature=20.32celsius +>> [01574] Received from sensor_pressure: pressure=1014.4hPa +>> [01575] Received from sensor_humidity: humidity=39.64percent +>> [01576] Received from sensor_temp: temperature=28.12celsius +>> [01577] Received from sensor_temp: temperature=21.41celsius +>> [01578] Received from sensor_humidity: humidity=36.35percent +>> [01579] Received from sensor_pressure: pressure=992.29hPa +>> [01580] Received from sensor_temp: temperature=23.79celsius +>> [01581] Received from sensor_humidity: humidity=47.84percent +>> [01582] Received from sensor_temp: temperature=24.93celsius +>> [01583] Received from sensor_pressure: pressure=1022.88hPa +>> [01584] Received from sensor_temp: temperature=27.37celsius +>> [01585] Received from sensor_humidity: humidity=35.52percent +>> [01586] Received from sensor_temp: temperature=20.18celsius +>> [01587] Received from sensor_pressure: pressure=1045.25hPa +>> [01588] Received from sensor_humidity: humidity=46.98percent +>> [01589] Received from sensor_temp: temperature=16.95celsius +>> [01590] Received from sensor_temp: temperature=15.37celsius +>> [01591] Received from sensor_humidity: humidity=62.88percent +>> [01592] Received from sensor_pressure: pressure=988.82hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1592 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 62.88 percent | Count: 490 +🟢 ACTIVE | sensor_pressure | pressure | 988.82 hPa | Count: 368 +🟢 ACTIVE | sensor_temp | temperature | 15.37 celsius | Count: 734 +====================================================================== + +>> [01593] Received from sensor_temp: temperature=23.23celsius +>> [01594] Received from sensor_humidity: humidity=34.22percent +>> [01595] Received from sensor_temp: temperature=33.93celsius +>> [01596] Received from sensor_pressure: pressure=983.5hPa +>> [01597] Received from sensor_temp: temperature=24.37celsius +>> [01598] Received from sensor_humidity: humidity=32.25percent +>> [01599] Received from sensor_temp: temperature=27.55celsius +>> [01600] Received from sensor_pressure: pressure=1034.82hPa +>> [01601] Received from sensor_humidity: humidity=54.62percent +>> [01602] Received from sensor_temp: temperature=30.32celsius +>> [01603] Received from sensor_temp: temperature=33.0celsius +>> [01604] Received from sensor_humidity: humidity=55.12percent +>> [01605] Received from sensor_pressure: pressure=1018.95hPa +>> [01606] Received from sensor_temp: temperature=33.04celsius +>> [01607] Received from sensor_humidity: humidity=71.67percent +>> [01608] Received from sensor_temp: temperature=19.56celsius +>> [01609] Received from sensor_pressure: pressure=1015.32hPa +>> [01610] Received from sensor_temp: temperature=26.46celsius +>> [01611] Received from sensor_humidity: humidity=40.4percent +>> [01612] Received from sensor_temp: temperature=24.6celsius +>> [01613] Received from sensor_pressure: pressure=1030.12hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1613 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 40.40 percent | Count: 496 +🟢 ACTIVE | sensor_pressure | pressure | 1030.12 hPa | Count: 373 +🟢 ACTIVE | sensor_temp | temperature | 24.60 celsius | Count: 744 +====================================================================== + +>> [01614] Received from sensor_humidity: humidity=80.65percent +>> [01615] Received from sensor_temp: temperature=28.83celsius +>> [01616] Received from sensor_temp: temperature=30.82celsius +>> [01617] Received from sensor_humidity: humidity=51.07percent +>> [01618] Received from sensor_pressure: pressure=1018.18hPa +>> [01619] Received from sensor_temp: temperature=24.6celsius +>> [01620] Received from sensor_humidity: humidity=37.06percent +>> [01621] Received from sensor_temp: temperature=24.34celsius +>> [01622] Received from sensor_temp: temperature=22.48celsius +>> [01623] Received from sensor_pressure: pressure=983.49hPa +>> [01624] Received from sensor_humidity: humidity=60.39percent +>> [01625] Received from sensor_temp: temperature=31.06celsius +>> [01626] Received from sensor_pressure: pressure=1045.42hPa +>> [01627] Received from sensor_humidity: humidity=85.16percent +>> [01628] Received from sensor_temp: temperature=24.38celsius +>> [01629] Received from sensor_temp: temperature=30.74celsius +>> [01630] Received from sensor_humidity: humidity=69.5percent +>> [01631] Received from sensor_temp: temperature=30.39celsius +>> [01632] Received from sensor_pressure: pressure=986.32hPa +>> [01633] Received from sensor_humidity: humidity=46.52percent +>> [01634] Received from sensor_temp: temperature=25.38celsius +>> [01635] Received from sensor_pressure: pressure=1030.43hPa +>> [01636] Received from sensor_temp: temperature=32.47celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1636 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 46.52 percent | Count: 503 +🟢 ACTIVE | sensor_pressure | pressure | 1030.43 hPa | Count: 378 +🟢 ACTIVE | sensor_temp | temperature | 32.47 celsius | Count: 755 +====================================================================== + +>> [01637] Received from sensor_humidity: humidity=59.09percent +>> [01638] Received from sensor_temp: temperature=23.24celsius +>> [01639] Received from sensor_pressure: pressure=1026.58hPa +>> [01640] Received from sensor_humidity: humidity=55.59percent +>> [01641] Received from sensor_temp: temperature=23.5celsius +>> [01642] Received from sensor_temp: temperature=31.04celsius +>> [01643] Received from sensor_humidity: humidity=52.95percent +>> [01644] Received from sensor_pressure: pressure=993.2hPa +>> [01645] Received from sensor_temp: temperature=21.07celsius +>> [01646] Received from sensor_humidity: humidity=35.53percent +>> [01647] Received from sensor_temp: temperature=16.11celsius +>> [01648] Received from sensor_pressure: pressure=1021.91hPa +>> [01649] Received from sensor_temp: temperature=24.09celsius +>> [01650] Received from sensor_humidity: humidity=82.99percent +>> [01651] Received from sensor_temp: temperature=33.31celsius +>> [01652] Received from sensor_pressure: pressure=981.98hPa +>> [01653] Received from sensor_humidity: humidity=39.18percent +>> [01654] Received from sensor_temp: temperature=31.8celsius +>> [01655] Received from sensor_temp: temperature=34.38celsius +>> [01656] Received from sensor_humidity: humidity=78.04percent +>> [01657] Received from sensor_pressure: pressure=1015.96hPa +>> [01658] Received from sensor_temp: temperature=21.09celsius +>> [01659] Received from sensor_temp: temperature=33.9celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1659 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.04 percent | Count: 510 +🟢 ACTIVE | sensor_pressure | pressure | 1015.96 hPa | Count: 383 +🟢 ACTIVE | sensor_temp | temperature | 33.90 celsius | Count: 766 +====================================================================== + +>> [01660] Received from sensor_humidity: humidity=80.83percent +>> [01661] Received from sensor_temp: temperature=15.3celsius +>> [01662] Received from sensor_pressure: pressure=1014.36hPa +>> [01663] Received from sensor_humidity: humidity=83.18percent +>> [01664] Received from sensor_temp: temperature=29.0celsius +>> [01665] Received from sensor_pressure: pressure=1013.64hPa +>> [01666] Received from sensor_humidity: humidity=39.05percent +>> [01667] Received from sensor_temp: temperature=31.02celsius +>> [01668] Received from sensor_temp: temperature=30.82celsius +>> [01669] Received from sensor_humidity: humidity=54.72percent +>> [01670] Received from sensor_pressure: pressure=1027.83hPa +>> [01671] Received from sensor_temp: temperature=30.73celsius +>> [01672] Received from sensor_humidity: humidity=74.18percent +>> [01673] Received from sensor_temp: temperature=34.98celsius +>> [01674] Received from sensor_pressure: pressure=983.59hPa +>> [01675] Received from sensor_temp: temperature=31.86celsius +>> [01676] Received from sensor_humidity: humidity=34.29percent +>> [01677] Received from sensor_temp: temperature=20.38celsius +>> [01678] Received from sensor_pressure: pressure=998.18hPa +>> [01679] Received from sensor_humidity: humidity=65.46percent +>> [01680] Received from sensor_temp: temperature=17.15celsius +>> [01681] Received from sensor_temp: temperature=26.26celsius +>> [01682] Received from sensor_humidity: humidity=43.05percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1682 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 43.05 percent | Count: 518 +🟢 ACTIVE | sensor_pressure | pressure | 998.18 hPa | Count: 388 +🟢 ACTIVE | sensor_temp | temperature | 26.26 celsius | Count: 776 +====================================================================== + +>> [01683] Received from sensor_pressure: pressure=985.48hPa +>> [01684] Received from sensor_temp: temperature=33.11celsius +>> [01685] Received from sensor_humidity: humidity=30.76percent +>> [01686] Received from sensor_temp: temperature=18.82celsius +>> [01687] Received from sensor_pressure: pressure=1009.55hPa +>> [01688] Received from sensor_temp: temperature=17.59celsius +>> [01689] Received from sensor_humidity: humidity=51.05percent +>> [01690] Received from sensor_temp: temperature=22.86celsius +>> [01691] Received from sensor_humidity: humidity=71.98percent +>> [01692] Received from sensor_pressure: pressure=1016.1hPa +>> [01693] Received from sensor_temp: temperature=29.17celsius +>> [01694] Received from sensor_temp: temperature=22.97celsius +>> [01695] Received from sensor_humidity: humidity=45.17percent +>> [01696] Received from sensor_temp: temperature=26.17celsius +>> [01697] Received from sensor_pressure: pressure=1017.49hPa +>> [01698] Received from sensor_humidity: humidity=32.96percent +>> [01699] Received from sensor_temp: temperature=19.83celsius +>> [01700] Received from sensor_temp: temperature=22.06celsius +>> [01701] Received from sensor_pressure: pressure=1034.74hPa +>> [01702] Received from sensor_humidity: humidity=63.84percent +>> [01703] Received from sensor_temp: temperature=27.52celsius +>> [01704] Received from sensor_humidity: humidity=69.64percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1704 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 69.64 percent | Count: 525 +🟢 ACTIVE | sensor_pressure | pressure | 1034.74 hPa | Count: 393 +🟢 ACTIVE | sensor_temp | temperature | 27.52 celsius | Count: 786 +====================================================================== + +>> [01705] Received from sensor_pressure: pressure=1046.78hPa +>> [01706] Received from sensor_temp: temperature=25.51celsius +>> [01707] Received from sensor_temp: temperature=30.64celsius +>> [01708] Received from sensor_humidity: humidity=63.32percent +>> [01709] Received from sensor_temp: temperature=18.28celsius +>> [01710] Received from sensor_pressure: pressure=1017.68hPa +>> [01711] Received from sensor_humidity: humidity=73.44percent +>> [01712] Received from sensor_temp: temperature=17.72celsius +>> [01713] Received from sensor_temp: temperature=22.45celsius +>> [01714] Received from sensor_pressure: pressure=1025.55hPa +>> [01715] Received from sensor_humidity: humidity=89.5percent +>> [01716] Received from sensor_temp: temperature=30.58celsius +>> [01717] Received from sensor_pressure: pressure=1002.04hPa +>> [01718] Received from sensor_humidity: humidity=79.46percent +>> [01719] Received from sensor_temp: temperature=27.47celsius +>> [01720] Received from sensor_temp: temperature=28.3celsius +>> [01721] Received from sensor_humidity: humidity=56.42percent +>> [01722] Received from sensor_pressure: pressure=1006.08hPa +>> [01723] Received from sensor_temp: temperature=32.37celsius +>> [01724] Received from sensor_humidity: humidity=45.52percent +>> [01725] Received from sensor_temp: temperature=25.57celsius +>> [01726] Received from sensor_pressure: pressure=1042.95hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1726 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 45.52 percent | Count: 531 +🟢 ACTIVE | sensor_pressure | pressure | 1042.95 hPa | Count: 399 +🟢 ACTIVE | sensor_temp | temperature | 25.57 celsius | Count: 796 +====================================================================== + +>> [01727] Received from sensor_temp: temperature=34.81celsius +>> [01728] Received from sensor_humidity: humidity=38.3percent +>> [01729] Received from sensor_temp: temperature=28.3celsius +>> [01730] Received from sensor_pressure: pressure=1043.34hPa +>> [01731] Received from sensor_humidity: humidity=88.55percent +>> [01732] Received from sensor_temp: temperature=26.3celsius +>> [01733] Received from sensor_temp: temperature=32.32celsius +>> [01734] Received from sensor_humidity: humidity=87.29percent +>> [01735] Received from sensor_pressure: pressure=1048.72hPa +>> [01736] Received from sensor_temp: temperature=15.18celsius +>> [01737] Received from sensor_humidity: humidity=36.63percent +>> [01738] Received from sensor_temp: temperature=27.2celsius +>> [01739] Received from sensor_pressure: pressure=1046.48hPa +>> [01740] Received from sensor_temp: temperature=20.59celsius +>> [01741] Received from sensor_humidity: humidity=55.09percent +>> [01742] Received from sensor_temp: temperature=27.09celsius +>> [01743] Received from sensor_humidity: humidity=49.88percent +>> [01744] Received from sensor_pressure: pressure=1032.13hPa +>> [01745] Received from sensor_temp: temperature=27.35celsius +>> [01746] Received from sensor_temp: temperature=16.18celsius +>> [01747] Received from sensor_humidity: humidity=37.62percent +>> [01748] Received from sensor_temp: temperature=27.92celsius +>> [01749] Received from sensor_pressure: pressure=993.01hPa +>> [01750] Received from sensor_humidity: humidity=77.03percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1750 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 77.03 percent | Count: 539 +🟢 ACTIVE | sensor_pressure | pressure | 993.01 hPa | Count: 404 +🟢 ACTIVE | sensor_temp | temperature | 27.92 celsius | Count: 807 +====================================================================== + +>> [01751] Received from sensor_temp: temperature=18.84celsius +>> [01752] Received from sensor_pressure: pressure=1022.33hPa +>> [01753] Received from sensor_temp: temperature=26.38celsius +>> [01754] Received from sensor_humidity: humidity=80.71percent +>> [01755] Received from sensor_temp: temperature=17.91celsius +>> [01756] Received from sensor_pressure: pressure=1035.09hPa +>> [01757] Received from sensor_humidity: humidity=62.49percent +>> [01758] Received from sensor_temp: temperature=27.12celsius +>> [01759] Received from sensor_temp: temperature=33.46celsius +>> [01760] Received from sensor_humidity: humidity=41.48percent +>> [01761] Received from sensor_temp: temperature=29.89celsius +>> [01762] Received from sensor_pressure: pressure=1047.87hPa +>> [01763] Received from sensor_humidity: humidity=65.04percent +>> [01764] Received from sensor_temp: temperature=24.56celsius +>> [01765] Received from sensor_pressure: pressure=982.52hPa +>> [01766] Received from sensor_temp: temperature=31.44celsius +>> [01767] Received from sensor_humidity: humidity=60.41percent +>> [01768] Received from sensor_temp: temperature=30.64celsius +>> [01769] Received from sensor_pressure: pressure=993.87hPa +>> [01770] Received from sensor_humidity: humidity=51.56percent +>> [01771] Received from sensor_temp: temperature=22.36celsius +>> [01772] Received from sensor_temp: temperature=23.75celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1772 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 51.56 percent | Count: 545 +🟢 ACTIVE | sensor_pressure | pressure | 993.87 hPa | Count: 409 +🟢 ACTIVE | sensor_temp | temperature | 23.75 celsius | Count: 818 +====================================================================== + +>> [01773] Received from sensor_humidity: humidity=78.61percent +>> [01774] Received from sensor_pressure: pressure=1044.9hPa +>> [01775] Received from sensor_temp: temperature=21.8celsius +>> [01776] Received from sensor_humidity: humidity=34.67percent +>> [01777] Received from sensor_temp: temperature=23.49celsius +>> [01778] Received from sensor_pressure: pressure=1009.21hPa +>> [01779] Received from sensor_temp: temperature=31.4celsius +>> [01780] Received from sensor_humidity: humidity=86.34percent +>> [01781] Received from sensor_temp: temperature=22.33celsius +>> [01782] Received from sensor_pressure: pressure=1041.64hPa +>> [01783] Received from sensor_humidity: humidity=71.71percent +>> [01784] Received from sensor_temp: temperature=33.96celsius +>> [01785] Received from sensor_temp: temperature=19.92celsius +>> [01786] Received from sensor_humidity: humidity=89.57percent +>> [01787] Received from sensor_pressure: pressure=992.65hPa +>> [01788] Received from sensor_temp: temperature=33.44celsius +>> [01789] Received from sensor_humidity: humidity=36.98percent +>> [01790] Received from sensor_temp: temperature=32.4celsius +>> [01791] Received from sensor_pressure: pressure=1043.88hPa +>> [01792] Received from sensor_temp: temperature=28.76celsius +>> [01793] Received from sensor_humidity: humidity=41.19percent +>> [01794] Received from sensor_temp: temperature=22.39celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1794 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 41.19 percent | Count: 552 +🟢 ACTIVE | sensor_pressure | pressure | 1043.88 hPa | Count: 414 +🟢 ACTIVE | sensor_temp | temperature | 22.39 celsius | Count: 828 +====================================================================== + +>> [01795] Received from sensor_pressure: pressure=1044.34hPa +>> [01796] Received from sensor_humidity: humidity=81.37percent +>> [01797] Received from sensor_temp: temperature=23.38celsius +>> [01798] Received from sensor_temp: temperature=24.97celsius +>> [01799] Received from sensor_humidity: humidity=83.91percent +>> [01800] Received from sensor_pressure: pressure=997.83hPa +>> [01801] Received from sensor_temp: temperature=16.17celsius +>> [01802] Received from sensor_humidity: humidity=63.89percent +>> [01803] Received from sensor_temp: temperature=28.63celsius +>> [01804] Received from sensor_temp: temperature=25.4celsius +>> [01805] Received from sensor_pressure: pressure=1030.71hPa +>> [01806] Received from sensor_humidity: humidity=73.46percent +>> [01807] Received from sensor_temp: temperature=18.24celsius +>> [01808] Received from sensor_pressure: pressure=989.81hPa +>> [01809] Received from sensor_humidity: humidity=84.57percent +>> [01810] Received from sensor_temp: temperature=19.11celsius +>> [01811] Received from sensor_temp: temperature=26.12celsius +>> [01812] Received from sensor_humidity: humidity=44.82percent +>> [01813] Received from sensor_pressure: pressure=1034.74hPa +>> [01814] Received from sensor_temp: temperature=25.18celsius +>> [01815] Received from sensor_temp: temperature=31.39celsius +>> [01816] Received from sensor_humidity: humidity=48.2percent +>> [01817] Received from sensor_temp: temperature=17.95celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1817 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 48.20 percent | Count: 559 +🟢 ACTIVE | sensor_pressure | pressure | 1034.74 hPa | Count: 419 +🟢 ACTIVE | sensor_temp | temperature | 17.95 celsius | Count: 839 +====================================================================== + +>> [01818] Received from sensor_pressure: pressure=1015.52hPa +>> [01819] Received from sensor_humidity: humidity=56.85percent +>> [01820] Received from sensor_temp: temperature=22.08celsius +>> [01821] Received from sensor_pressure: pressure=1039.96hPa +>> [01822] Received from sensor_humidity: humidity=40.95percent +>> [01823] Received from sensor_temp: temperature=32.64celsius +>> [01824] Received from sensor_temp: temperature=22.29celsius +>> [01825] Received from sensor_humidity: humidity=30.45percent +>> [01826] Received from sensor_pressure: pressure=981.15hPa +>> [01827] Received from sensor_temp: temperature=31.9celsius +>> [01828] Received from sensor_humidity: humidity=33.96percent +>> [01829] Received from sensor_temp: temperature=18.55celsius +>> [01830] Received from sensor_pressure: pressure=981.66hPa +>> [01831] Received from sensor_temp: temperature=27.21celsius +>> [01832] Received from sensor_humidity: humidity=47.95percent +>> [01833] Received from sensor_temp: temperature=21.65celsius +>> [01834] Received from sensor_pressure: pressure=1041.43hPa +>> [01835] Received from sensor_humidity: humidity=46.34percent +>> [01836] Received from sensor_temp: temperature=25.66celsius +>> [01837] Received from sensor_temp: temperature=16.61celsius +>> [01838] Received from sensor_humidity: humidity=41.9percent +>> [01839] Received from sensor_pressure: pressure=1040.64hPa +>> [01840] Received from sensor_temp: temperature=25.37celsius +>> [01841] Received from sensor_humidity: humidity=81.1percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1841 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 81.10 percent | Count: 567 +🟢 ACTIVE | sensor_pressure | pressure | 1040.64 hPa | Count: 425 +🟢 ACTIVE | sensor_temp | temperature | 25.37 celsius | Count: 849 +====================================================================== + +>> [01842] Received from sensor_temp: temperature=19.1celsius +>> [01843] Received from sensor_pressure: pressure=1024.39hPa +>> [01844] Received from sensor_temp: temperature=25.0celsius +>> [01845] Received from sensor_humidity: humidity=78.64percent +>> [01846] Received from sensor_temp: temperature=20.21celsius +>> [01847] Received from sensor_pressure: pressure=996.43hPa +>> [01848] Received from sensor_humidity: humidity=34.46percent +>> [01849] Received from sensor_temp: temperature=20.91celsius +>> [01850] Received from sensor_temp: temperature=20.01celsius +>> [01851] Received from sensor_humidity: humidity=59.24percent +>> [01852] Received from sensor_temp: temperature=17.6celsius +>> [01853] Received from sensor_pressure: pressure=1035.61hPa +>> [01854] Received from sensor_humidity: humidity=38.18percent +>> [01855] Received from sensor_temp: temperature=18.85celsius +>> [01856] Received from sensor_pressure: pressure=988.6hPa +>> [01857] Received from sensor_temp: temperature=25.08celsius +>> [01858] Received from sensor_humidity: humidity=82.4percent +>> [01859] Received from sensor_temp: temperature=18.04celsius +>> [01860] Received from sensor_humidity: humidity=77.96percent +>> [01861] Received from sensor_pressure: pressure=1039.96hPa +>> [01862] Received from sensor_temp: temperature=23.19celsius +>> [01863] Received from sensor_temp: temperature=32.87celsius +>> [01864] Received from sensor_humidity: humidity=70.86percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1864 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 70.86 percent | Count: 574 +🟢 ACTIVE | sensor_pressure | pressure | 1039.96 hPa | Count: 430 +🟢 ACTIVE | sensor_temp | temperature | 32.87 celsius | Count: 860 +====================================================================== + +>> [01865] Received from sensor_temp: temperature=26.97celsius +>> [01866] Received from sensor_pressure: pressure=1044.07hPa +>> [01867] Received from sensor_humidity: humidity=46.99percent +>> [01868] Received from sensor_temp: temperature=29.93celsius +>> [01869] Received from sensor_temp: temperature=25.06celsius +>> [01870] Received from sensor_pressure: pressure=1020.57hPa +>> [01871] Received from sensor_humidity: humidity=77.79percent +>> [01872] Received from sensor_temp: temperature=23.75celsius +>> [01873] Received from sensor_pressure: pressure=1035.76hPa +>> [01874] Received from sensor_humidity: humidity=36.79percent +>> [01875] Received from sensor_temp: temperature=33.08celsius +>> [01876] Received from sensor_temp: temperature=27.3celsius +>> [01877] Received from sensor_humidity: humidity=71.35percent +>> [01878] Received from sensor_pressure: pressure=1024.35hPa +>> [01879] Received from sensor_temp: temperature=21.17celsius +>> [01880] Received from sensor_humidity: humidity=76.15percent +>> [01881] Received from sensor_temp: temperature=20.44celsius +>> [01882] Received from sensor_temp: temperature=32.3celsius +>> [01883] Received from sensor_pressure: pressure=1025.98hPa +>> [01884] Received from sensor_humidity: humidity=42.98percent +>> [01885] Received from sensor_temp: temperature=16.96celsius +>> [01886] Received from sensor_humidity: humidity=48.67percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1886 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 48.67 percent | Count: 581 +🟢 ACTIVE | sensor_pressure | pressure | 1025.98 hPa | Count: 435 +🟢 ACTIVE | sensor_temp | temperature | 16.96 celsius | Count: 870 +====================================================================== + +>> [01887] Received from sensor_pressure: pressure=1026.92hPa +>> [01888] Received from sensor_temp: temperature=29.61celsius +>> [01889] Received from sensor_temp: temperature=24.25celsius +>> [01890] Received from sensor_humidity: humidity=61.32percent +>> [01891] Received from sensor_pressure: pressure=981.1hPa +>> [01892] Received from sensor_temp: temperature=18.3celsius +>> [01893] Received from sensor_humidity: humidity=64.78percent +>> [01894] Received from sensor_temp: temperature=17.15celsius +>> [01895] Received from sensor_pressure: pressure=983.61hPa +>> [01896] Received from sensor_temp: temperature=25.5celsius +>> [01897] Received from sensor_humidity: humidity=59.25percent +>> [01898] Received from sensor_temp: temperature=18.46celsius +>> [01899] Received from sensor_pressure: pressure=1046.68hPa +>> [01900] Received from sensor_humidity: humidity=73.2percent +>> [01901] Received from sensor_temp: temperature=15.87celsius +>> [01902] Received from sensor_temp: temperature=23.6celsius +>> [01903] Received from sensor_humidity: humidity=50.39percent +>> [01904] Received from sensor_pressure: pressure=993.59hPa +>> [01905] Received from sensor_temp: temperature=20.93celsius +>> [01906] Received from sensor_humidity: humidity=73.13percent +>> [01907] Received from sensor_temp: temperature=28.76celsius +>> [01908] Received from sensor_pressure: pressure=1009.77hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1908 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 73.13 percent | Count: 587 +🟢 ACTIVE | sensor_pressure | pressure | 1009.77 hPa | Count: 441 +🟢 ACTIVE | sensor_temp | temperature | 28.76 celsius | Count: 880 +====================================================================== + +>> [01909] Received from sensor_temp: temperature=29.41celsius +>> [01910] Received from sensor_humidity: humidity=51.86percent +>> [01911] Received from sensor_temp: temperature=21.06celsius +>> [01912] Received from sensor_humidity: humidity=72.0percent +>> [01913] Received from sensor_pressure: pressure=1014.88hPa +>> [01914] Received from sensor_temp: temperature=22.85celsius +>> [01915] Received from sensor_temp: temperature=28.39celsius +>> [01916] Received from sensor_humidity: humidity=84.85percent +>> [01917] Received from sensor_pressure: pressure=1042.92hPa +>> [01918] Received from sensor_temp: temperature=21.68celsius +>> [01919] Received from sensor_humidity: humidity=54.1percent +>> [01920] Received from sensor_temp: temperature=19.74celsius +>> [01921] Received from sensor_temp: temperature=21.6celsius +>> [01922] Received from sensor_pressure: pressure=990.3hPa +>> [01923] Received from sensor_humidity: humidity=82.35percent +>> [01924] Received from sensor_temp: temperature=15.23celsius +>> [01925] Received from sensor_pressure: pressure=1009.75hPa +>> [01926] Received from sensor_humidity: humidity=60.85percent +>> [01927] Received from sensor_temp: temperature=21.56celsius +>> [01928] Received from sensor_temp: temperature=20.25celsius +>> [01929] Received from sensor_humidity: humidity=52.12percent +>> [01930] Received from sensor_pressure: pressure=1006.37hPa +>> [01931] Received from sensor_temp: temperature=29.44celsius +>> [01932] Received from sensor_humidity: humidity=84.84percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1932 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 84.84 percent | Count: 595 +🟢 ACTIVE | sensor_pressure | pressure | 1006.37 hPa | Count: 446 +🟢 ACTIVE | sensor_temp | temperature | 29.44 celsius | Count: 891 +====================================================================== + +>> [01933] Received from sensor_temp: temperature=32.57celsius +>> [01934] Received from sensor_pressure: pressure=1026.75hPa +>> [01935] Received from sensor_temp: temperature=23.4celsius +>> [01936] Received from sensor_humidity: humidity=86.44percent +>> [01937] Received from sensor_temp: temperature=17.5celsius +>> [01938] Received from sensor_pressure: pressure=1042.96hPa +>> [01939] Received from sensor_humidity: humidity=75.78percent +>> [01940] Received from sensor_temp: temperature=16.94celsius +>> [01941] Received from sensor_temp: temperature=16.31celsius +>> [01942] Received from sensor_humidity: humidity=77.55percent +>> [01943] Received from sensor_pressure: pressure=1032.32hPa +>> [01944] Received from sensor_temp: temperature=18.56celsius +>> [01945] Received from sensor_humidity: humidity=70.25percent +>> [01946] Received from sensor_temp: temperature=19.98celsius +>> [01947] Received from sensor_pressure: pressure=1005.55hPa +>> [01948] Received from sensor_temp: temperature=22.2celsius +>> [01949] Received from sensor_humidity: humidity=72.08percent +>> [01950] Received from sensor_temp: temperature=25.74celsius +>> [01951] Received from sensor_pressure: pressure=1019.46hPa +>> [01952] Received from sensor_humidity: humidity=30.16percent +>> [01953] Received from sensor_temp: temperature=18.31celsius +>> [01954] Received from sensor_temp: temperature=26.38celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1954 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 30.16 percent | Count: 601 +🟢 ACTIVE | sensor_pressure | pressure | 1019.46 hPa | Count: 451 +🟢 ACTIVE | sensor_temp | temperature | 26.38 celsius | Count: 902 +====================================================================== + +>> [01955] Received from sensor_humidity: humidity=89.94percent +>> [01956] Received from sensor_pressure: pressure=1002.31hPa +>> [01957] Received from sensor_temp: temperature=17.25celsius +>> [01958] Received from sensor_humidity: humidity=63.13percent +>> [01959] Received from sensor_temp: temperature=26.44celsius +>> [01960] Received from sensor_temp: temperature=34.98celsius +>> [01961] Received from sensor_pressure: pressure=1006.22hPa +>> [01962] Received from sensor_humidity: humidity=38.06percent +>> [01963] Received from sensor_temp: temperature=34.48celsius +>> [01964] Received from sensor_temp: temperature=30.82celsius +>> [01965] Received from sensor_pressure: pressure=980.58hPa +>> [01966] Received from sensor_humidity: humidity=64.36percent +>> [01967] Received from sensor_temp: temperature=22.82celsius +>> [01968] Received from sensor_humidity: humidity=86.78percent +>> [01969] Received from sensor_pressure: pressure=1039.0hPa +>> [01970] Received from sensor_temp: temperature=20.48celsius +>> [01971] Received from sensor_temp: temperature=21.22celsius +>> [01972] Received from sensor_humidity: humidity=88.7percent +>> [01973] Received from sensor_pressure: pressure=983.6hPa +>> [01974] Received from sensor_temp: temperature=17.53celsius +>> [01975] Received from sensor_humidity: humidity=85.96percent +>> [01976] Received from sensor_temp: temperature=19.85celsius +>> [01977] Received from sensor_pressure: pressure=983.31hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 1977 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.96 percent | Count: 608 +🟢 ACTIVE | sensor_pressure | pressure | 983.31 hPa | Count: 457 +🟢 ACTIVE | sensor_temp | temperature | 19.85 celsius | Count: 912 +====================================================================== + +>> [01978] Received from sensor_humidity: humidity=65.72percent +>> [01979] Received from sensor_temp: temperature=25.78celsius +>> [01980] Received from sensor_temp: temperature=20.75celsius +>> [01981] Received from sensor_humidity: humidity=72.19percent +>> [01982] Received from sensor_pressure: pressure=1000.49hPa +>> [01983] Received from sensor_temp: temperature=18.95celsius +>> [01984] Received from sensor_humidity: humidity=39.57percent +>> [01985] Received from sensor_temp: temperature=23.33celsius +>> [01986] Received from sensor_temp: temperature=29.16celsius +>> [01987] Received from sensor_pressure: pressure=1033.33hPa +>> [01988] Received from sensor_humidity: humidity=80.89percent +>> [01989] Received from sensor_temp: temperature=26.58celsius +>> [01990] Received from sensor_pressure: pressure=1033.89hPa +>> [01991] Received from sensor_humidity: humidity=69.52percent +>> [01992] Received from sensor_temp: temperature=29.13celsius +>> [01993] Received from sensor_temp: temperature=33.67celsius +>> [01994] Received from sensor_humidity: humidity=35.62percent +>> [01995] Received from sensor_pressure: pressure=1048.47hPa +>> [01996] Received from sensor_temp: temperature=22.02celsius +>> [01997] Received from sensor_temp: temperature=17.65celsius +>> [01998] Received from sensor_humidity: humidity=47.96percent +>> [01999] Received from sensor_pressure: pressure=982.61hPa +>> [02000] Received from sensor_temp: temperature=26.16celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2000 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 47.96 percent | Count: 615 +🟢 ACTIVE | sensor_pressure | pressure | 982.61 hPa | Count: 462 +🟢 ACTIVE | sensor_temp | temperature | 26.16 celsius | Count: 923 +====================================================================== + +>> [02001] Received from sensor_humidity: humidity=30.61percent +>> [02002] Received from sensor_temp: temperature=29.47celsius +>> [02003] Received from sensor_humidity: humidity=88.29percent +>> [02004] Received from sensor_pressure: pressure=1036.3hPa +>> [02005] Received from sensor_temp: temperature=28.8celsius +>> [02006] Received from sensor_temp: temperature=21.89celsius +>> [02007] Received from sensor_humidity: humidity=63.08percent +>> [02008] Received from sensor_pressure: pressure=1002.86hPa +>> [02009] Received from sensor_temp: temperature=16.1celsius +>> [02010] Received from sensor_humidity: humidity=74.7percent +>> [02011] Received from sensor_temp: temperature=29.7celsius +>> [02012] Received from sensor_temp: temperature=17.02celsius +>> [02013] Received from sensor_pressure: pressure=1049.24hPa +>> [02014] Received from sensor_humidity: humidity=57.74percent +>> [02015] Received from sensor_temp: temperature=31.59celsius +>> [02016] Received from sensor_temp: temperature=33.65celsius +>> [02017] Received from sensor_pressure: pressure=987.7hPa +>> [02018] Received from sensor_humidity: humidity=60.35percent +>> [02019] Received from sensor_temp: temperature=22.59celsius +>> [02020] Received from sensor_humidity: humidity=37.72percent +>> [02021] Received from sensor_pressure: pressure=1000.94hPa +>> [02022] Received from sensor_temp: temperature=22.81celsius +>> [02023] Received from sensor_temp: temperature=25.02celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2023 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 37.72 percent | Count: 622 +🟢 ACTIVE | sensor_pressure | pressure | 1000.94 hPa | Count: 467 +🟢 ACTIVE | sensor_temp | temperature | 25.02 celsius | Count: 934 +====================================================================== + +>> [02024] Received from sensor_humidity: humidity=38.03percent +>> [02025] Received from sensor_pressure: pressure=1043.33hPa +>> [02026] Received from sensor_temp: temperature=19.92celsius +>> [02027] Received from sensor_humidity: humidity=33.19percent +>> [02028] Received from sensor_temp: temperature=25.88celsius +>> [02029] Received from sensor_humidity: humidity=47.24percent +>> [02030] Received from sensor_pressure: pressure=1012.21hPa +>> [02031] Received from sensor_temp: temperature=18.56celsius +>> [02032] Received from sensor_temp: temperature=18.31celsius +>> [02033] Received from sensor_humidity: humidity=45.15percent +>> [02034] Received from sensor_pressure: pressure=1006.77hPa +>> [02035] Received from sensor_temp: temperature=34.46celsius +>> [02036] Received from sensor_humidity: humidity=48.19percent +>> [02037] Received from sensor_temp: temperature=20.47celsius +>> [02038] Received from sensor_pressure: pressure=1001.83hPa +>> [02039] Received from sensor_temp: temperature=28.52celsius +>> [02040] Received from sensor_humidity: humidity=51.61percent +>> [02041] Received from sensor_temp: temperature=32.33celsius +>> [02042] Received from sensor_pressure: pressure=1037.03hPa +>> [02043] Received from sensor_humidity: humidity=78.02percent +>> [02044] Received from sensor_temp: temperature=34.18celsius +>> [02045] Received from sensor_temp: temperature=16.96celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2045 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.02 percent | Count: 629 +🟢 ACTIVE | sensor_pressure | pressure | 1037.03 hPa | Count: 472 +🟢 ACTIVE | sensor_temp | temperature | 16.96 celsius | Count: 944 +====================================================================== + +>> [02046] Received from sensor_humidity: humidity=30.67percent +>> [02047] Received from sensor_pressure: pressure=1030.77hPa +>> [02048] Received from sensor_temp: temperature=31.31celsius +>> [02049] Received from sensor_humidity: humidity=63.08percent +>> [02050] Received from sensor_temp: temperature=28.94celsius +>> [02051] Received from sensor_pressure: pressure=1019.53hPa +>> [02052] Received from sensor_temp: temperature=22.32celsius +>> [02053] Received from sensor_humidity: humidity=43.78percent +>> [02054] Received from sensor_temp: temperature=16.59celsius +>> [02055] Received from sensor_humidity: humidity=81.15percent +>> [02056] Received from sensor_pressure: pressure=981.25hPa +>> [02057] Received from sensor_temp: temperature=25.33celsius +>> [02058] Received from sensor_temp: temperature=20.43celsius +>> [02059] Received from sensor_humidity: humidity=55.02percent +>> [02060] Received from sensor_temp: temperature=18.39celsius +>> [02061] Received from sensor_pressure: pressure=1006.85hPa +>> [02062] Received from sensor_humidity: humidity=62.12percent +>> [02063] Received from sensor_temp: temperature=32.02celsius +>> [02064] Received from sensor_pressure: pressure=1020.74hPa +>> [02065] Received from sensor_temp: temperature=29.2celsius +>> [02066] Received from sensor_humidity: humidity=76.38percent +>> [02067] Received from sensor_temp: temperature=34.66celsius +>> [02068] Received from sensor_humidity: humidity=84.31percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2068 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 84.31 percent | Count: 637 +🟢 ACTIVE | sensor_pressure | pressure | 1020.74 hPa | Count: 477 +🟢 ACTIVE | sensor_temp | temperature | 34.66 celsius | Count: 954 +====================================================================== + +>> [02069] Received from sensor_pressure: pressure=980.33hPa +>> [02070] Received from sensor_temp: temperature=16.75celsius +>> [02071] Received from sensor_temp: temperature=24.62celsius +>> [02072] Received from sensor_humidity: humidity=43.25percent +>> [02073] Received from sensor_temp: temperature=34.36celsius +>> [02074] Received from sensor_pressure: pressure=999.51hPa +>> [02075] Received from sensor_temp: temperature=30.16celsius +>> [02076] Received from sensor_humidity: humidity=71.87percent +>> [02077] Received from sensor_pressure: pressure=986.17hPa +>> [02078] Received from sensor_temp: temperature=29.59celsius +>> [02079] Received from sensor_humidity: humidity=44.41percent +>> [02080] Received from sensor_temp: temperature=30.39celsius +>> [02081] Received from sensor_pressure: pressure=1044.16hPa +>> [02082] Received from sensor_humidity: humidity=62.9percent +>> [02083] Received from sensor_temp: temperature=29.04celsius +>> [02084] Received from sensor_temp: temperature=24.68celsius +>> [02085] Received from sensor_humidity: humidity=83.42percent +>> [02086] Received from sensor_pressure: pressure=1041.92hPa +>> [02087] Received from sensor_temp: temperature=20.06celsius +>> [02088] Received from sensor_humidity: humidity=76.15percent +>> [02089] Received from sensor_temp: temperature=26.5celsius +>> [02090] Received from sensor_pressure: pressure=991.38hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2090 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 76.15 percent | Count: 643 +🟢 ACTIVE | sensor_pressure | pressure | 991.38 hPa | Count: 483 +🟢 ACTIVE | sensor_temp | temperature | 26.50 celsius | Count: 964 +====================================================================== + +>> [02091] Received from sensor_temp: temperature=22.25celsius +>> [02092] Received from sensor_humidity: humidity=41.82percent +>> [02093] Received from sensor_temp: temperature=21.39celsius +>> [02094] Received from sensor_humidity: humidity=32.77percent +>> [02095] Received from sensor_pressure: pressure=1042.27hPa +>> [02096] Received from sensor_temp: temperature=22.75celsius +>> [02097] Received from sensor_temp: temperature=25.16celsius +>> [02098] Received from sensor_humidity: humidity=59.0percent +>> [02099] Received from sensor_pressure: pressure=1000.59hPa +>> [02100] Received from sensor_temp: temperature=26.48celsius +>> [02101] Received from sensor_humidity: humidity=71.4percent +>> [02102] Received from sensor_temp: temperature=17.37celsius +>> [02103] Received from sensor_pressure: pressure=1023.15hPa +>> [02104] Received from sensor_temp: temperature=25.65celsius +>> [02105] Received from sensor_humidity: humidity=58.18percent +>> [02106] Received from sensor_temp: temperature=29.99celsius +>> [02107] Received from sensor_humidity: humidity=40.14percent +>> [02108] Received from sensor_temp: temperature=24.54celsius +>> [02109] Received from sensor_pressure: pressure=1049.65hPa +>> [02110] Received from sensor_temp: temperature=23.32celsius +>> [02111] Received from sensor_humidity: humidity=64.56percent +>> [02112] Received from sensor_pressure: pressure=1044.94hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2112 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.56 percent | Count: 650 +🟢 ACTIVE | sensor_pressure | pressure | 1044.94 hPa | Count: 488 +🟢 ACTIVE | sensor_temp | temperature | 23.32 celsius | Count: 974 +====================================================================== + +>> [02113] Received from sensor_temp: temperature=31.43celsius +>> [02114] Received from sensor_humidity: humidity=71.03percent +>> [02115] Received from sensor_temp: temperature=21.61celsius +>> [02116] Received from sensor_temp: temperature=27.65celsius +>> [02117] Received from sensor_pressure: pressure=994.56hPa +>> [02118] Received from sensor_humidity: humidity=73.65percent +>> [02119] Received from sensor_temp: temperature=28.8celsius +>> [02120] Received from sensor_humidity: humidity=63.16percent +>> [02121] Received from sensor_pressure: pressure=1005.83hPa +>> [02122] Received from sensor_temp: temperature=28.98celsius +>> [02123] Received from sensor_temp: temperature=19.99celsius +>> [02124] Received from sensor_humidity: humidity=40.16percent +>> [02125] Received from sensor_pressure: pressure=1023.76hPa +>> [02126] Received from sensor_temp: temperature=29.72celsius +>> [02127] Received from sensor_humidity: humidity=63.23percent +>> [02128] Received from sensor_temp: temperature=28.73celsius +>> [02129] Received from sensor_temp: temperature=22.97celsius +>> [02130] Received from sensor_pressure: pressure=1018.08hPa +>> [02131] Received from sensor_humidity: humidity=60.8percent +>> [02132] Received from sensor_temp: temperature=19.97celsius +>> [02133] Received from sensor_humidity: humidity=88.19percent +>> [02134] Received from sensor_pressure: pressure=1032.03hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2134 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 88.19 percent | Count: 657 +🟢 ACTIVE | sensor_pressure | pressure | 1032.03 hPa | Count: 493 +🟢 ACTIVE | sensor_temp | temperature | 19.97 celsius | Count: 984 +====================================================================== + +>> [02135] Received from sensor_temp: temperature=20.66celsius +>> [02136] Received from sensor_temp: temperature=25.27celsius +>> [02137] Received from sensor_humidity: humidity=71.17percent +>> [02138] Received from sensor_pressure: pressure=1023.34hPa +>> [02139] Received from sensor_temp: temperature=26.66celsius +>> [02140] Received from sensor_humidity: humidity=78.87percent +>> [02141] Received from sensor_temp: temperature=23.62celsius +>> [02142] Received from sensor_pressure: pressure=1039.63hPa +>> [02143] Received from sensor_temp: temperature=30.2celsius +>> [02144] Received from sensor_humidity: humidity=64.8percent +>> [02145] Received from sensor_temp: temperature=20.03celsius +>> [02146] Received from sensor_pressure: pressure=1029.13hPa +>> [02147] Received from sensor_humidity: humidity=69.61percent +>> [02148] Received from sensor_temp: temperature=32.64celsius +>> [02149] Received from sensor_temp: temperature=34.18celsius +>> [02150] Received from sensor_humidity: humidity=54.76percent +>> [02151] Received from sensor_pressure: pressure=1038.6hPa +>> [02152] Received from sensor_temp: temperature=32.01celsius +>> [02153] Received from sensor_humidity: humidity=69.61percent +>> [02154] Received from sensor_temp: temperature=28.86celsius +>> [02155] Received from sensor_pressure: pressure=982.15hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2155 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 69.61 percent | Count: 663 +🟢 ACTIVE | sensor_pressure | pressure | 982.15 hPa | Count: 498 +🟢 ACTIVE | sensor_temp | temperature | 28.86 celsius | Count: 994 +====================================================================== + +>> [02156] Received from sensor_temp: temperature=29.77celsius +>> [02157] Received from sensor_humidity: humidity=36.81percent +>> [02158] Received from sensor_temp: temperature=32.21celsius +>> [02159] Received from sensor_pressure: pressure=1005.44hPa +>> [02160] Received from sensor_humidity: humidity=82.72percent +>> [02161] Received from sensor_temp: temperature=28.59celsius +>> [02162] Received from sensor_temp: temperature=26.79celsius +>> [02163] Received from sensor_humidity: humidity=70.3percent +>> [02164] Received from sensor_pressure: pressure=996.87hPa +>> [02165] Received from sensor_temp: temperature=24.62celsius +>> [02166] Received from sensor_humidity: humidity=88.92percent +>> [02167] Received from sensor_temp: temperature=34.86celsius +>> [02168] Received from sensor_pressure: pressure=1014.43hPa +>> [02169] Received from sensor_temp: temperature=31.98celsius +>> [02170] Received from sensor_humidity: humidity=83.79percent +>> [02171] Received from sensor_temp: temperature=31.17celsius +>> [02172] Received from sensor_pressure: pressure=1023.88hPa +>> [02173] Received from sensor_humidity: humidity=46.69percent +>> [02174] Received from sensor_temp: temperature=32.45celsius +>> [02175] Received from sensor_temp: temperature=24.64celsius +>> [02176] Received from sensor_humidity: humidity=32.32percent +>> [02177] Received from sensor_pressure: pressure=1002.23hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2177 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 32.32 percent | Count: 670 +🟢 ACTIVE | sensor_pressure | pressure | 1002.23 hPa | Count: 503 +🟢 ACTIVE | sensor_temp | temperature | 24.64 celsius | Count: 1004 +====================================================================== + +>> [02178] Received from sensor_temp: temperature=23.02celsius +>> [02179] Received from sensor_humidity: humidity=85.88percent +>> [02180] Received from sensor_temp: temperature=30.62celsius +>> [02181] Received from sensor_pressure: pressure=1018.67hPa +>> [02182] Received from sensor_temp: temperature=26.48celsius +>> [02183] Received from sensor_humidity: humidity=33.91percent +>> [02184] Received from sensor_temp: temperature=33.88celsius +>> [02185] Received from sensor_pressure: pressure=1034.6hPa +>> [02186] Received from sensor_humidity: humidity=83.42percent +>> [02187] Received from sensor_temp: temperature=22.85celsius +>> [02188] Received from sensor_temp: temperature=22.4celsius +>> [02189] Received from sensor_humidity: humidity=33.79percent +>> [02190] Received from sensor_pressure: pressure=1027.67hPa +>> [02191] Received from sensor_temp: temperature=21.01celsius +>> [02192] Received from sensor_humidity: humidity=31.48percent +>> [02193] Received from sensor_temp: temperature=15.72celsius +>> [02194] Received from sensor_pressure: pressure=1015.58hPa +>> [02195] Received from sensor_temp: temperature=30.64celsius +>> [02196] Received from sensor_humidity: humidity=78.48percent +>> [02197] Received from sensor_temp: temperature=21.23celsius +>> [02198] Received from sensor_pressure: pressure=984.13hPa +>> [02199] Received from sensor_humidity: humidity=85.34percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2199 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.34 percent | Count: 677 +🟢 ACTIVE | sensor_pressure | pressure | 984.13 hPa | Count: 508 +🟢 ACTIVE | sensor_temp | temperature | 21.23 celsius | Count: 1014 +====================================================================== + +>> [02200] Received from sensor_temp: temperature=28.72celsius +>> [02201] Received from sensor_temp: temperature=28.57celsius +>> [02202] Received from sensor_humidity: humidity=53.62percent +>> [02203] Received from sensor_temp: temperature=21.13celsius +>> [02204] Received from sensor_pressure: pressure=999.42hPa +>> [02205] Received from sensor_humidity: humidity=36.7percent +>> [02206] Received from sensor_temp: temperature=20.89celsius +>> [02207] Received from sensor_temp: temperature=20.12celsius +>> [02208] Received from sensor_pressure: pressure=1009.04hPa +>> [02209] Received from sensor_humidity: humidity=63.41percent +>> [02210] Received from sensor_temp: temperature=22.63celsius +>> [02211] Received from sensor_humidity: humidity=69.78percent +>> [02212] Received from sensor_pressure: pressure=1014.25hPa +>> [02213] Received from sensor_temp: temperature=22.62celsius +>> [02214] Received from sensor_temp: temperature=15.91celsius +>> [02215] Received from sensor_humidity: humidity=49.04percent +>> [02216] Received from sensor_temp: temperature=15.25celsius +>> [02217] Received from sensor_pressure: pressure=1003.76hPa +>> [02218] Received from sensor_humidity: humidity=32.53percent +>> [02219] Received from sensor_temp: temperature=30.53celsius +>> [02220] Received from sensor_pressure: pressure=995.08hPa +>> [02221] Received from sensor_temp: temperature=16.65celsius +>> [02222] Received from sensor_humidity: humidity=72.87percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2222 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 72.87 percent | Count: 684 +🟢 ACTIVE | sensor_pressure | pressure | 995.08 hPa | Count: 513 +🟢 ACTIVE | sensor_temp | temperature | 16.65 celsius | Count: 1025 +====================================================================== + +>> [02223] Received from sensor_temp: temperature=22.48celsius +>> [02224] Received from sensor_humidity: humidity=77.45percent +>> [02225] Received from sensor_pressure: pressure=1023.45hPa +>> [02226] Received from sensor_temp: temperature=27.75celsius +>> [02227] Received from sensor_temp: temperature=22.35celsius +>> [02228] Received from sensor_humidity: humidity=73.3percent +>> [02229] Received from sensor_pressure: pressure=1046.61hPa +>> [02230] Received from sensor_temp: temperature=32.1celsius +>> [02231] Received from sensor_humidity: humidity=33.88percent +>> [02232] Received from sensor_temp: temperature=24.6celsius +>> [02233] Received from sensor_temp: temperature=31.97celsius +>> [02234] Received from sensor_pressure: pressure=1028.98hPa +>> [02235] Received from sensor_humidity: humidity=78.69percent +>> [02236] Received from sensor_temp: temperature=33.45celsius +>> [02237] Received from sensor_pressure: pressure=994.68hPa +>> [02238] Received from sensor_humidity: humidity=70.65percent +>> [02239] Received from sensor_temp: temperature=23.1celsius +>> [02240] Received from sensor_temp: temperature=29.51celsius +>> [02241] Received from sensor_humidity: humidity=63.68percent +>> [02242] Received from sensor_pressure: pressure=1008.93hPa +>> [02243] Received from sensor_temp: temperature=18.04celsius +>> [02244] Received from sensor_humidity: humidity=51.07percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2244 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 51.07 percent | Count: 691 +🟢 ACTIVE | sensor_pressure | pressure | 1008.93 hPa | Count: 518 +🟢 ACTIVE | sensor_temp | temperature | 18.04 celsius | Count: 1035 +====================================================================== + +>> [02245] Received from sensor_temp: temperature=16.39celsius +>> [02246] Received from sensor_pressure: pressure=1022.65hPa +>> [02247] Received from sensor_temp: temperature=18.1celsius +>> [02248] Received from sensor_humidity: humidity=62.71percent +>> [02249] Received from sensor_temp: temperature=26.36celsius +>> [02250] Received from sensor_pressure: pressure=996.77hPa +>> [02251] Received from sensor_humidity: humidity=31.7percent +>> [02252] Received from sensor_temp: temperature=16.73celsius +>> [02253] Received from sensor_temp: temperature=33.32celsius +>> [02254] Received from sensor_humidity: humidity=46.19percent +>> [02255] Received from sensor_temp: temperature=18.45celsius +>> [02256] Received from sensor_pressure: pressure=1034.06hPa +>> [02257] Received from sensor_temp: temperature=29.51celsius +>> [02258] Received from sensor_humidity: humidity=83.55percent +>> [02259] Received from sensor_pressure: pressure=994.21hPa +>> [02260] Received from sensor_temp: temperature=25.69celsius +>> [02261] Received from sensor_humidity: humidity=36.13percent +>> [02262] Received from sensor_temp: temperature=22.16celsius +>> [02263] Received from sensor_humidity: humidity=80.45percent +>> [02264] Received from sensor_pressure: pressure=1028.07hPa +>> [02265] Received from sensor_temp: temperature=21.15celsius +>> [02266] Received from sensor_temp: temperature=19.19celsius +>> [02267] Received from sensor_humidity: humidity=62.51percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2267 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 62.51 percent | Count: 698 +🟢 ACTIVE | sensor_pressure | pressure | 1028.07 hPa | Count: 523 +🟢 ACTIVE | sensor_temp | temperature | 19.19 celsius | Count: 1046 +====================================================================== + +>> [02268] Received from sensor_pressure: pressure=1012.99hPa +>> [02269] Received from sensor_temp: temperature=23.37celsius +>> [02270] Received from sensor_humidity: humidity=71.2percent +>> [02271] Received from sensor_temp: temperature=17.82celsius +>> [02272] Received from sensor_temp: temperature=27.92celsius +>> [02273] Received from sensor_pressure: pressure=987.84hPa +>> [02274] Received from sensor_humidity: humidity=42.21percent +>> [02275] Received from sensor_temp: temperature=20.33celsius +>> [02276] Received from sensor_pressure: pressure=1026.82hPa +>> [02277] Received from sensor_humidity: humidity=30.7percent +>> [02278] Received from sensor_temp: temperature=18.38celsius +>> [02279] Received from sensor_temp: temperature=25.07celsius +>> [02280] Received from sensor_humidity: humidity=47.94percent +>> [02281] Received from sensor_pressure: pressure=1037.51hPa +>> [02282] Received from sensor_temp: temperature=24.08celsius +>> [02283] Received from sensor_humidity: humidity=65.04percent +>> [02284] Received from sensor_temp: temperature=25.24celsius +>> [02285] Received from sensor_temp: temperature=16.05celsius +>> [02286] Received from sensor_pressure: pressure=1000.46hPa +>> [02287] Received from sensor_humidity: humidity=60.66percent +>> [02288] Received from sensor_temp: temperature=29.77celsius +>> [02289] Received from sensor_humidity: humidity=79.85percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2289 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 79.85 percent | Count: 705 +🟢 ACTIVE | sensor_pressure | pressure | 1000.46 hPa | Count: 528 +🟢 ACTIVE | sensor_temp | temperature | 29.77 celsius | Count: 1056 +====================================================================== + +>> [02290] Received from sensor_pressure: pressure=1047.08hPa +>> [02291] Received from sensor_temp: temperature=16.05celsius +>> [02292] Received from sensor_temp: temperature=19.76celsius +>> [02293] Received from sensor_humidity: humidity=49.97percent +>> [02294] Received from sensor_pressure: pressure=1027.0hPa +>> [02295] Received from sensor_temp: temperature=24.09celsius +>> [02296] Received from sensor_humidity: humidity=40.77percent +>> [02297] Received from sensor_temp: temperature=16.47celsius +>> [02298] Received from sensor_pressure: pressure=1038.34hPa +>> [02299] Received from sensor_temp: temperature=20.03celsius +>> [02300] Received from sensor_humidity: humidity=80.07percent +>> [02301] Received from sensor_temp: temperature=23.24celsius +>> [02302] Received from sensor_humidity: humidity=41.96percent +>> [02303] Received from sensor_pressure: pressure=1042.22hPa +>> [02304] Received from sensor_temp: temperature=24.48celsius +>> [02305] Received from sensor_temp: temperature=22.65celsius +>> [02306] Received from sensor_humidity: humidity=47.05percent +>> [02307] Received from sensor_pressure: pressure=1013.37hPa +>> [02308] Received from sensor_temp: temperature=31.09celsius +>> [02309] Received from sensor_humidity: humidity=78.34percent +>> [02310] Received from sensor_temp: temperature=28.36celsius +>> [02311] Received from sensor_pressure: pressure=1038.62hPa +>> [02312] Received from sensor_temp: temperature=33.17celsius +>> [02313] Received from sensor_humidity: humidity=39.52percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2313 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 39.52 percent | Count: 712 +🟢 ACTIVE | sensor_pressure | pressure | 1038.62 hPa | Count: 534 +🟢 ACTIVE | sensor_temp | temperature | 33.17 celsius | Count: 1067 +====================================================================== + +>> [02314] Received from sensor_temp: temperature=23.21celsius +>> [02315] Received from sensor_pressure: pressure=1027.18hPa +>> [02316] Received from sensor_humidity: humidity=55.2percent +>> [02317] Received from sensor_temp: temperature=19.42celsius +>> [02318] Received from sensor_temp: temperature=18.43celsius +>> [02319] Received from sensor_humidity: humidity=64.18percent +>> [02320] Received from sensor_pressure: pressure=1037.93hPa +>> [02321] Received from sensor_temp: temperature=18.13celsius +>> [02322] Received from sensor_humidity: humidity=67.21percent +>> [02323] Received from sensor_temp: temperature=34.13celsius +>> [02324] Received from sensor_temp: temperature=16.43celsius +>> [02325] Received from sensor_pressure: pressure=1041.72hPa +>> [02326] Received from sensor_humidity: humidity=31.43percent +>> [02327] Received from sensor_temp: temperature=17.14celsius +>> [02328] Received from sensor_pressure: pressure=998.02hPa +>> [02329] Received from sensor_humidity: humidity=44.82percent +>> [02330] Received from sensor_temp: temperature=31.7celsius +>> [02331] Received from sensor_temp: temperature=33.68celsius +>> [02332] Received from sensor_humidity: humidity=84.45percent +>> [02333] Received from sensor_pressure: pressure=997.37hPa +>> [02334] Received from sensor_temp: temperature=27.29celsius +>> [02335] Received from sensor_humidity: humidity=53.39percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2335 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 53.39 percent | Count: 719 +🟢 ACTIVE | sensor_pressure | pressure | 997.37 hPa | Count: 539 +🟢 ACTIVE | sensor_temp | temperature | 27.29 celsius | Count: 1077 +====================================================================== + +>> [02336] Received from sensor_temp: temperature=30.21celsius +>> [02337] Received from sensor_temp: temperature=32.8celsius +>> [02338] Received from sensor_pressure: pressure=1016.35hPa +>> [02339] Received from sensor_humidity: humidity=41.23percent +>> [02340] Received from sensor_temp: temperature=22.06celsius +>> [02341] Received from sensor_pressure: pressure=1034.52hPa +>> [02342] Received from sensor_humidity: humidity=66.64percent +>> [02343] Received from sensor_temp: temperature=25.29celsius +>> [02344] Received from sensor_temp: temperature=34.87celsius +>> [02345] Received from sensor_humidity: humidity=30.29percent +>> [02346] Received from sensor_pressure: pressure=1017.53hPa +>> [02347] Received from sensor_temp: temperature=23.98celsius +>> [02348] Received from sensor_humidity: humidity=53.27percent +>> [02349] Received from sensor_temp: temperature=16.99celsius +>> [02350] Received from sensor_pressure: pressure=1027.0hPa +>> [02351] Received from sensor_temp: temperature=31.91celsius +>> [02352] Received from sensor_humidity: humidity=31.66percent +>> [02353] Received from sensor_temp: temperature=32.16celsius +>> [02354] Received from sensor_temp: temperature=30.14celsius +>> [02355] Received from sensor_pressure: pressure=1040.14hPa +>> [02356] Received from sensor_humidity: humidity=50.79percent +>> [02357] Received from sensor_temp: temperature=32.9celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2357 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 50.79 percent | Count: 725 +🟢 ACTIVE | sensor_pressure | pressure | 1040.14 hPa | Count: 544 +🟢 ACTIVE | sensor_temp | temperature | 32.90 celsius | Count: 1088 +====================================================================== + +>> [02358] Received from sensor_humidity: humidity=49.66percent +>> [02359] Received from sensor_pressure: pressure=989.59hPa +>> [02360] Received from sensor_temp: temperature=22.07celsius +>> [02361] Received from sensor_humidity: humidity=80.57percent +>> [02362] Received from sensor_temp: temperature=25.96celsius +>> [02363] Received from sensor_pressure: pressure=1045.23hPa +>> [02364] Received from sensor_temp: temperature=27.13celsius +>> [02365] Received from sensor_humidity: humidity=68.11percent +>> [02366] Received from sensor_temp: temperature=19.45celsius +>> [02367] Received from sensor_humidity: humidity=82.13percent +>> [02368] Received from sensor_pressure: pressure=1016.8hPa +>> [02369] Received from sensor_temp: temperature=33.81celsius +>> [02370] Received from sensor_temp: temperature=15.01celsius +>> [02371] Received from sensor_humidity: humidity=78.25percent +>> [02372] Received from sensor_temp: temperature=33.64celsius +>> [02373] Received from sensor_pressure: pressure=1048.2hPa +>> [02374] Received from sensor_humidity: humidity=61.31percent +>> [02375] Received from sensor_temp: temperature=18.92celsius +>> [02376] Received from sensor_pressure: pressure=1011.31hPa +>> [02377] Received from sensor_temp: temperature=25.51celsius +>> [02378] Received from sensor_humidity: humidity=38.77percent +>> [02379] Received from sensor_temp: temperature=29.27celsius +>> [02380] Received from sensor_pressure: pressure=1010.99hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2380 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 38.77 percent | Count: 732 +🟢 ACTIVE | sensor_pressure | pressure | 1010.99 hPa | Count: 550 +🟢 ACTIVE | sensor_temp | temperature | 29.27 celsius | Count: 1098 +====================================================================== + +>> [02381] Received from sensor_humidity: humidity=63.23percent +>> [02382] Received from sensor_temp: temperature=30.96celsius +>> [02383] Received from sensor_temp: temperature=31.25celsius +>> [02384] Received from sensor_humidity: humidity=62.15percent +>> [02385] Received from sensor_pressure: pressure=987.61hPa +>> [02386] Received from sensor_temp: temperature=23.03celsius +>> [02387] Received from sensor_humidity: humidity=58.96percent +>> [02388] Received from sensor_temp: temperature=22.82celsius +>> [02389] Received from sensor_pressure: pressure=993.95hPa +>> [02390] Received from sensor_temp: temperature=29.75celsius +>> [02391] Received from sensor_humidity: humidity=76.25percent +>> [02392] Received from sensor_temp: temperature=33.37celsius +>> [02393] Received from sensor_humidity: humidity=45.86percent +>> [02394] Received from sensor_pressure: pressure=1018.92hPa +>> [02395] Received from sensor_temp: temperature=30.16celsius +>> [02396] Received from sensor_temp: temperature=22.54celsius +>> [02397] Received from sensor_humidity: humidity=74.47percent +>> [02398] Received from sensor_pressure: pressure=1020.32hPa +>> [02399] Received from sensor_temp: temperature=32.34celsius +>> [02400] Received from sensor_humidity: humidity=53.84percent +>> [02401] Received from sensor_temp: temperature=28.48celsius +>> [02402] Received from sensor_pressure: pressure=987.41hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2402 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 53.84 percent | Count: 739 +🟢 ACTIVE | sensor_pressure | pressure | 987.41 hPa | Count: 555 +🟢 ACTIVE | sensor_temp | temperature | 28.48 celsius | Count: 1108 +====================================================================== + +>> [02403] Received from sensor_temp: temperature=15.08celsius +>> [02404] Received from sensor_humidity: humidity=50.5percent +>> [02405] Received from sensor_temp: temperature=17.58celsius +>> [02406] Received from sensor_pressure: pressure=1049.37hPa +>> [02407] Received from sensor_humidity: humidity=71.1percent +>> [02408] Received from sensor_temp: temperature=18.21celsius +>> [02409] Received from sensor_temp: temperature=23.17celsius +>> [02410] Received from sensor_humidity: humidity=54.17percent +>> [02411] Received from sensor_temp: temperature=19.47celsius +>> [02412] Received from sensor_pressure: pressure=1048.94hPa +>> [02413] Received from sensor_humidity: humidity=60.3percent +>> [02414] Received from sensor_temp: temperature=20.0celsius +>> [02415] Received from sensor_pressure: pressure=1018.01hPa +>> [02416] Received from sensor_temp: temperature=25.3celsius +>> [02417] Received from sensor_humidity: humidity=71.7percent +>> [02418] Received from sensor_temp: temperature=15.66celsius +>> [02419] Received from sensor_humidity: humidity=55.32percent +>> [02420] Received from sensor_pressure: pressure=1015.95hPa +>> [02421] Received from sensor_temp: temperature=31.55celsius +>> [02422] Received from sensor_temp: temperature=20.38celsius +>> [02423] Received from sensor_humidity: humidity=75.16percent +>> [02424] Received from sensor_pressure: pressure=1040.83hPa +>> [02425] Received from sensor_temp: temperature=16.11celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2425 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 75.16 percent | Count: 746 +🟢 ACTIVE | sensor_pressure | pressure | 1040.83 hPa | Count: 560 +🟢 ACTIVE | sensor_temp | temperature | 16.11 celsius | Count: 1119 +====================================================================== + +>> [02426] Received from sensor_humidity: humidity=88.82percent +>> [02427] Received from sensor_temp: temperature=20.6celsius +>> [02428] Received from sensor_pressure: pressure=1004.64hPa +>> [02429] Received from sensor_temp: temperature=29.86celsius +>> [02430] Received from sensor_humidity: humidity=54.9percent +>> [02431] Received from sensor_temp: temperature=30.05celsius +>> [02432] Received from sensor_humidity: humidity=55.57percent +>> [02433] Received from sensor_pressure: pressure=988.62hPa +>> [02434] Received from sensor_temp: temperature=19.4celsius +>> [02435] Received from sensor_temp: temperature=17.44celsius +>> [02436] Received from sensor_humidity: humidity=38.04percent +>> [02437] Received from sensor_pressure: pressure=1023.01hPa +>> [02438] Received from sensor_temp: temperature=18.65celsius +>> [02439] Received from sensor_humidity: humidity=83.76percent +>> [02440] Received from sensor_temp: temperature=28.44celsius +>> [02441] Received from sensor_pressure: pressure=994.43hPa +>> [02442] Received from sensor_temp: temperature=17.09celsius +>> [02443] Received from sensor_humidity: humidity=87.6percent +>> [02444] Received from sensor_temp: temperature=33.61celsius +>> [02445] Received from sensor_humidity: humidity=77.12percent +>> [02446] Received from sensor_pressure: pressure=1042.46hPa +>> [02447] Received from sensor_temp: temperature=22.01celsius +>> [02448] Received from sensor_temp: temperature=34.77celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2448 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 77.12 percent | Count: 753 +🟢 ACTIVE | sensor_pressure | pressure | 1042.46 hPa | Count: 565 +🟢 ACTIVE | sensor_temp | temperature | 34.77 celsius | Count: 1130 +====================================================================== + +>> [02449] Received from sensor_humidity: humidity=68.92percent +>> [02450] Received from sensor_pressure: pressure=1009.71hPa +>> [02451] Received from sensor_temp: temperature=17.07celsius +>> [02452] Received from sensor_temp: temperature=20.57celsius +>> [02453] Received from sensor_humidity: humidity=67.74percent +>> [02454] Received from sensor_pressure: pressure=1032.55hPa +>> [02455] Received from sensor_temp: temperature=15.45celsius +>> [02456] Received from sensor_humidity: humidity=42.08percent +>> [02457] Received from sensor_temp: temperature=19.55celsius +>> [02458] Received from sensor_pressure: pressure=1017.15hPa +>> [02459] Received from sensor_humidity: humidity=84.46percent +>> [02460] Received from sensor_temp: temperature=15.17celsius +>> [02461] Received from sensor_temp: temperature=28.49celsius +>> [02462] Received from sensor_humidity: humidity=65.16percent +>> [02463] Received from sensor_pressure: pressure=993.16hPa +>> [02464] Received from sensor_temp: temperature=16.81celsius +>> [02465] Received from sensor_humidity: humidity=42.17percent +>> [02466] Received from sensor_temp: temperature=27.95celsius +>> [02467] Received from sensor_pressure: pressure=1039.21hPa +>> [02468] Received from sensor_temp: temperature=21.75celsius +>> [02469] Received from sensor_humidity: humidity=86.93percent +>> [02470] Received from sensor_temp: temperature=24.15celsius +>> [02471] Received from sensor_humidity: humidity=44.32percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2471 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 44.32 percent | Count: 761 +🟢 ACTIVE | sensor_pressure | pressure | 1039.21 hPa | Count: 570 +🟢 ACTIVE | sensor_temp | temperature | 24.15 celsius | Count: 1140 +====================================================================== + +>> [02472] Received from sensor_temp: temperature=15.31celsius +>> [02473] Received from sensor_pressure: pressure=1027.22hPa +>> [02474] Received from sensor_temp: temperature=26.79celsius +>> [02475] Received from sensor_humidity: humidity=89.01percent +>> [02476] Received from sensor_pressure: pressure=1026.25hPa +>> [02477] Received from sensor_temp: temperature=32.4celsius +>> [02478] Received from sensor_humidity: humidity=55.92percent +>> [02479] Received from sensor_temp: temperature=33.32celsius +>> [02480] Received from sensor_temp: temperature=19.24celsius +>> [02481] Received from sensor_pressure: pressure=1009.95hPa +>> [02482] Received from sensor_humidity: humidity=31.58percent +>> [02483] Received from sensor_temp: temperature=26.47celsius +>> [02484] Received from sensor_humidity: humidity=71.11percent +>> [02485] Received from sensor_pressure: pressure=1022.95hPa +>> [02486] Received from sensor_temp: temperature=31.88celsius +>> [02487] Received from sensor_temp: temperature=28.78celsius +>> [02488] Received from sensor_humidity: humidity=43.73percent +>> [02489] Received from sensor_pressure: pressure=983.09hPa +>> [02490] Received from sensor_temp: temperature=18.13celsius +>> [02491] Received from sensor_humidity: humidity=33.92percent +>> [02492] Received from sensor_temp: temperature=24.43celsius +>> [02493] Received from sensor_temp: temperature=23.82celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2493 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 33.92 percent | Count: 767 +🟢 ACTIVE | sensor_pressure | pressure | 983.09 hPa | Count: 575 +🟢 ACTIVE | sensor_temp | temperature | 23.82 celsius | Count: 1151 +====================================================================== + +>> [02494] Received from sensor_pressure: pressure=1032.8hPa +>> [02495] Received from sensor_humidity: humidity=31.42percent +>> [02496] Received from sensor_temp: temperature=27.86celsius +>> [02497] Received from sensor_pressure: pressure=1000.46hPa +>> [02498] Received from sensor_humidity: humidity=53.28percent +>> [02499] Received from sensor_temp: temperature=18.88celsius +>> [02500] Received from sensor_temp: temperature=32.69celsius +>> [02501] Received from sensor_humidity: humidity=31.46percent +>> [02502] Received from sensor_pressure: pressure=1025.54hPa +>> [02503] Received from sensor_temp: temperature=30.98celsius +>> [02504] Received from sensor_humidity: humidity=82.2percent +>> [02505] Received from sensor_temp: temperature=33.78celsius +>> [02506] Received from sensor_pressure: pressure=1008.69hPa +>> [02507] Received from sensor_temp: temperature=23.45celsius +>> [02508] Received from sensor_humidity: humidity=69.12percent +>> [02509] Received from sensor_temp: temperature=17.25celsius +>> [02510] Received from sensor_temp: temperature=17.23celsius +>> [02511] Received from sensor_pressure: pressure=989.89hPa +>> [02512] Received from sensor_humidity: humidity=50.04percent +>> [02513] Received from sensor_temp: temperature=34.11celsius +>> [02514] Received from sensor_humidity: humidity=32.05percent +>> [02515] Received from sensor_pressure: pressure=989.0hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2515 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 32.05 percent | Count: 774 +🟢 ACTIVE | sensor_pressure | pressure | 989.00 hPa | Count: 581 +🟢 ACTIVE | sensor_temp | temperature | 34.11 celsius | Count: 1160 +====================================================================== + +>> [02516] Received from sensor_temp: temperature=24.99celsius +>> [02517] Received from sensor_humidity: humidity=89.46percent +>> [02518] Received from sensor_temp: temperature=28.05celsius +>> [02519] Received from sensor_pressure: pressure=990.94hPa +>> [02520] Received from sensor_temp: temperature=31.88celsius +>> [02521] Received from sensor_humidity: humidity=44.45percent +>> [02522] Received from sensor_temp: temperature=17.89celsius +>> [02523] Received from sensor_humidity: humidity=32.18percent +>> [02524] Received from sensor_temp: temperature=32.47celsius +>> [02525] Received from sensor_pressure: pressure=987.78hPa +>> [02526] Received from sensor_temp: temperature=20.93celsius +>> [02527] Received from sensor_humidity: humidity=86.03percent +>> [02528] Received from sensor_pressure: pressure=1006.97hPa +>> [02529] Received from sensor_temp: temperature=16.42celsius +>> [02530] Received from sensor_humidity: humidity=57.18percent +>> [02531] Received from sensor_temp: temperature=31.83celsius +>> [02532] Received from sensor_pressure: pressure=985.53hPa +>> [02533] Received from sensor_temp: temperature=23.39celsius +>> [02534] Received from sensor_humidity: humidity=46.96percent +>> [02535] Received from sensor_temp: temperature=25.57celsius +>> [02536] Received from sensor_humidity: humidity=79.91percent +>> [02537] Received from sensor_pressure: pressure=986.69hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2537 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 79.91 percent | Count: 781 +🟢 ACTIVE | sensor_pressure | pressure | 986.69 hPa | Count: 586 +🟢 ACTIVE | sensor_temp | temperature | 25.57 celsius | Count: 1170 +====================================================================== + +>> [02538] Received from sensor_temp: temperature=30.06celsius +>> [02539] Received from sensor_temp: temperature=15.62celsius +>> [02540] Received from sensor_humidity: humidity=43.89percent +>> [02541] Received from sensor_pressure: pressure=1005.46hPa +>> [02542] Received from sensor_temp: temperature=32.89celsius +>> [02543] Received from sensor_humidity: humidity=59.46percent +>> [02544] Received from sensor_temp: temperature=28.15celsius +>> [02545] Received from sensor_temp: temperature=24.96celsius +>> [02546] Received from sensor_pressure: pressure=1007.97hPa +>> [02547] Received from sensor_humidity: humidity=89.84percent +>> [02548] Received from sensor_temp: temperature=34.78celsius +>> [02549] Received from sensor_temp: temperature=28.37celsius +>> [02550] Received from sensor_pressure: pressure=997.45hPa +>> [02551] Received from sensor_humidity: humidity=64.52percent +>> [02552] Received from sensor_temp: temperature=29.1celsius +>> [02553] Received from sensor_humidity: humidity=38.23percent +>> [02554] Received from sensor_pressure: pressure=1002.38hPa +>> [02555] Received from sensor_temp: temperature=28.35celsius +>> [02556] Received from sensor_humidity: humidity=75.97percent +>> [02557] Received from sensor_temp: temperature=26.24celsius +>> [02558] Received from sensor_pressure: pressure=983.94hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2558 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 75.97 percent | Count: 787 +🟢 ACTIVE | sensor_pressure | pressure | 983.94 hPa | Count: 591 +🟢 ACTIVE | sensor_temp | temperature | 26.24 celsius | Count: 1180 +====================================================================== + +>> [02559] Received from sensor_temp: temperature=16.59celsius +>> [02560] Received from sensor_humidity: humidity=71.34percent +>> [02561] Received from sensor_temp: temperature=25.02celsius +>> [02562] Received from sensor_pressure: pressure=990.75hPa +>> [02563] Received from sensor_humidity: humidity=79.47percent +>> [02564] Received from sensor_temp: temperature=28.96celsius +>> [02565] Received from sensor_temp: temperature=32.79celsius +>> [02566] Received from sensor_humidity: humidity=55.67percent +>> [02567] Received from sensor_pressure: pressure=995.89hPa +>> [02568] Received from sensor_temp: temperature=28.37celsius +>> [02569] Received from sensor_humidity: humidity=44.14percent +>> [02570] Received from sensor_temp: temperature=23.68celsius +>> [02571] Received from sensor_temp: temperature=16.91celsius +>> [02572] Received from sensor_pressure: pressure=980.41hPa +>> [02573] Received from sensor_humidity: humidity=88.09percent +>> [02574] Received from sensor_temp: temperature=26.2celsius +>> [02575] Received from sensor_humidity: humidity=72.5percent +>> [02576] Received from sensor_pressure: pressure=1006.74hPa +>> [02577] Received from sensor_temp: temperature=33.57celsius +>> [02578] Received from sensor_temp: temperature=27.86celsius +>> [02579] Received from sensor_humidity: humidity=43.23percent +>> [02580] Received from sensor_temp: temperature=23.46celsius +>> [02581] Received from sensor_pressure: pressure=983.15hPa +>> [02582] Received from sensor_humidity: humidity=59.57percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2582 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 59.57 percent | Count: 795 +🟢 ACTIVE | sensor_pressure | pressure | 983.15 hPa | Count: 596 +🟢 ACTIVE | sensor_temp | temperature | 23.46 celsius | Count: 1191 +====================================================================== + +>> [02583] Received from sensor_temp: temperature=26.29celsius +>> [02584] Received from sensor_temp: temperature=28.17celsius +>> [02585] Received from sensor_pressure: pressure=996.43hPa +>> [02586] Received from sensor_humidity: humidity=66.89percent +>> [02587] Received from sensor_temp: temperature=33.83celsius +>> [02588] Received from sensor_pressure: pressure=1024.28hPa +>> [02589] Received from sensor_humidity: humidity=47.49percent +>> [02590] Received from sensor_temp: temperature=18.06celsius +>> [02591] Received from sensor_temp: temperature=18.04celsius +>> [02592] Received from sensor_humidity: humidity=46.89percent +>> [02593] Received from sensor_pressure: pressure=1014.06hPa +>> [02594] Received from sensor_temp: temperature=21.61celsius +>> [02595] Received from sensor_humidity: humidity=49.66percent +>> [02596] Received from sensor_temp: temperature=32.43celsius +>> [02597] Received from sensor_pressure: pressure=1033.99hPa +>> [02598] Received from sensor_temp: temperature=21.51celsius +>> [02599] Received from sensor_humidity: humidity=74.4percent +>> [02600] Received from sensor_temp: temperature=24.44celsius +>> [02601] Received from sensor_pressure: pressure=998.69hPa +>> [02602] Received from sensor_humidity: humidity=46.4percent +>> [02603] Received from sensor_temp: temperature=29.57celsius +>> [02604] Received from sensor_temp: temperature=15.83celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2604 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 46.40 percent | Count: 801 +🟢 ACTIVE | sensor_pressure | pressure | 998.69 hPa | Count: 601 +🟢 ACTIVE | sensor_temp | temperature | 15.83 celsius | Count: 1202 +====================================================================== + +>> [02605] Received from sensor_humidity: humidity=41.43percent +>> [02606] Received from sensor_pressure: pressure=1031.69hPa +>> [02607] Received from sensor_temp: temperature=28.9celsius +>> [02608] Received from sensor_humidity: humidity=33.56percent +>> [02609] Received from sensor_temp: temperature=27.48celsius +>> [02610] Received from sensor_pressure: pressure=1002.93hPa +>> [02611] Received from sensor_temp: temperature=28.6celsius +>> [02612] Received from sensor_humidity: humidity=33.74percent +>> [02613] Received from sensor_temp: temperature=29.79celsius +>> [02614] Received from sensor_temp: temperature=25.81celsius +>> [02615] Received from sensor_pressure: pressure=1014.36hPa +>> [02616] Received from sensor_humidity: humidity=79.45percent +>> [02617] Received from sensor_temp: temperature=32.95celsius +>> [02618] Received from sensor_humidity: humidity=51.79percent +>> [02619] Received from sensor_pressure: pressure=1023.24hPa +>> [02620] Received from sensor_temp: temperature=24.54celsius +>> [02621] Received from sensor_humidity: humidity=41.99percent +>> [02622] Received from sensor_temp: temperature=18.37celsius +>> [02623] Received from sensor_pressure: pressure=1041.16hPa +>> [02624] Received from sensor_temp: temperature=34.49celsius +>> [02625] Received from sensor_humidity: humidity=63.5percent +>> [02626] Received from sensor_temp: temperature=20.73celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2626 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 63.50 percent | Count: 808 +🟢 ACTIVE | sensor_pressure | pressure | 1041.16 hPa | Count: 606 +🟢 ACTIVE | sensor_temp | temperature | 20.73 celsius | Count: 1212 +====================================================================== + +>> [02627] Received from sensor_humidity: humidity=53.59percent +>> [02628] Received from sensor_pressure: pressure=1049.97hPa +>> [02629] Received from sensor_temp: temperature=34.35celsius +>> [02630] Received from sensor_temp: temperature=23.59celsius +>> [02631] Received from sensor_humidity: humidity=88.14percent +>> [02632] Received from sensor_pressure: pressure=1045.52hPa +>> [02633] Received from sensor_temp: temperature=24.73celsius +>> [02634] Received from sensor_humidity: humidity=44.07percent +>> [02635] Received from sensor_temp: temperature=19.02celsius +>> [02636] Received from sensor_pressure: pressure=1001.1hPa +>> [02637] Received from sensor_temp: temperature=33.34celsius +>> [02638] Received from sensor_humidity: humidity=74.83percent +>> [02639] Received from sensor_temp: temperature=16.96celsius +>> [02640] Received from sensor_pressure: pressure=1006.21hPa +>> [02641] Received from sensor_humidity: humidity=47.03percent +>> [02642] Received from sensor_temp: temperature=22.94celsius +>> [02643] Received from sensor_temp: temperature=17.42celsius +>> [02644] Received from sensor_humidity: humidity=70.01percent +>> [02645] Received from sensor_pressure: pressure=993.94hPa +>> [02646] Received from sensor_temp: temperature=25.78celsius +>> [02647] Received from sensor_humidity: humidity=85.69percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2647 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.69 percent | Count: 815 +🟢 ACTIVE | sensor_pressure | pressure | 993.94 hPa | Count: 611 +🟢 ACTIVE | sensor_temp | temperature | 25.78 celsius | Count: 1221 +====================================================================== + +>> [02648] Received from sensor_temp: temperature=15.77celsius +>> [02649] Received from sensor_pressure: pressure=1029.92hPa +>> [02650] Received from sensor_temp: temperature=33.94celsius +>> [02651] Received from sensor_humidity: humidity=65.11percent +>> [02652] Received from sensor_temp: temperature=29.75celsius +>> [02653] Received from sensor_pressure: pressure=1016.04hPa +>> [02654] Received from sensor_humidity: humidity=69.84percent +>> [02655] Received from sensor_temp: temperature=30.19celsius +>> [02656] Received from sensor_temp: temperature=33.57celsius +>> [02657] Received from sensor_humidity: humidity=62.33percent +>> [02658] Received from sensor_pressure: pressure=1005.94hPa +>> [02659] Received from sensor_temp: temperature=21.26celsius +>> [02660] Received from sensor_humidity: humidity=38.56percent +>> [02661] Received from sensor_temp: temperature=21.97celsius +>> [02662] Received from sensor_pressure: pressure=1011.94hPa +>> [02663] Received from sensor_temp: temperature=27.73celsius +>> [02664] Received from sensor_humidity: humidity=32.82percent +>> [02665] Received from sensor_temp: temperature=30.74celsius +>> [02666] Received from sensor_pressure: pressure=1006.79hPa +>> [02667] Received from sensor_humidity: humidity=43.47percent +>> [02668] Received from sensor_temp: temperature=15.48celsius +>> [02669] Received from sensor_temp: temperature=27.12celsius +>> [02670] Received from sensor_humidity: humidity=43.75percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2670 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 43.75 percent | Count: 822 +🟢 ACTIVE | sensor_pressure | pressure | 1006.79 hPa | Count: 616 +🟢 ACTIVE | sensor_temp | temperature | 27.12 celsius | Count: 1232 +====================================================================== + +>> [02671] Received from sensor_temp: temperature=21.92celsius +>> [02672] Received from sensor_pressure: pressure=989.4hPa +>> [02673] Received from sensor_humidity: humidity=62.41percent +>> [02674] Received from sensor_temp: temperature=22.32celsius +>> [02675] Received from sensor_pressure: pressure=1020.28hPa +>> [02676] Received from sensor_temp: temperature=26.94celsius +>> [02677] Received from sensor_humidity: humidity=33.62percent +>> [02678] Received from sensor_temp: temperature=20.95celsius +>> [02679] Received from sensor_humidity: humidity=49.34percent +>> [02680] Received from sensor_pressure: pressure=1019.68hPa +>> [02681] Received from sensor_temp: temperature=28.78celsius +>> [02682] Received from sensor_temp: temperature=22.29celsius +>> [02683] Received from sensor_humidity: humidity=66.34percent +>> [02684] Received from sensor_temp: temperature=17.54celsius +>> [02685] Received from sensor_pressure: pressure=1009.99hPa +>> [02686] Received from sensor_humidity: humidity=59.35percent +>> [02687] Received from sensor_temp: temperature=32.65celsius +>> [02688] Received from sensor_pressure: pressure=1032.45hPa +>> [02689] Received from sensor_temp: temperature=24.31celsius +>> [02690] Received from sensor_humidity: humidity=48.88percent +>> [02691] Received from sensor_temp: temperature=28.52celsius +>> [02692] Received from sensor_pressure: pressure=1021.6hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2692 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 48.88 percent | Count: 828 +🟢 ACTIVE | sensor_pressure | pressure | 1021.60 hPa | Count: 622 +🟢 ACTIVE | sensor_temp | temperature | 28.52 celsius | Count: 1242 +====================================================================== + +>> [02693] Received from sensor_humidity: humidity=35.76percent +>> [02694] Received from sensor_temp: temperature=25.98celsius +>> [02695] Received from sensor_temp: temperature=34.75celsius +>> [02696] Received from sensor_humidity: humidity=31.11percent +>> [02697] Received from sensor_pressure: pressure=1033.91hPa +>> [02698] Received from sensor_temp: temperature=34.16celsius +>> [02699] Received from sensor_humidity: humidity=33.04percent +>> [02700] Received from sensor_temp: temperature=32.35celsius +>> [02701] Received from sensor_pressure: pressure=1046.15hPa +>> [02702] Received from sensor_temp: temperature=29.55celsius +>> [02703] Received from sensor_humidity: humidity=37.19percent +>> [02704] Received from sensor_temp: temperature=27.6celsius +>> [02705] Received from sensor_pressure: pressure=1009.97hPa +>> [02706] Received from sensor_humidity: humidity=54.06percent +>> [02707] Received from sensor_temp: temperature=20.52celsius +>> [02708] Received from sensor_temp: temperature=34.5celsius +>> [02709] Received from sensor_humidity: humidity=56.78percent +>> [02710] Received from sensor_temp: temperature=20.34celsius +>> [02711] Received from sensor_pressure: pressure=1000.75hPa +>> [02712] Received from sensor_humidity: humidity=84.01percent +>> [02713] Received from sensor_temp: temperature=32.4celsius +>> [02714] Received from sensor_pressure: pressure=994.55hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2714 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 84.01 percent | Count: 835 +🟢 ACTIVE | sensor_pressure | pressure | 994.55 hPa | Count: 627 +🟢 ACTIVE | sensor_temp | temperature | 32.40 celsius | Count: 1252 +====================================================================== + +>> [02715] Received from sensor_temp: temperature=18.27celsius +>> [02716] Received from sensor_humidity: humidity=43.89percent +>> [02717] Received from sensor_temp: temperature=30.76celsius +>> [02718] Received from sensor_pressure: pressure=1024.87hPa +>> [02719] Received from sensor_humidity: humidity=68.25percent +>> [02720] Received from sensor_temp: temperature=20.39celsius +>> [02721] Received from sensor_temp: temperature=16.29celsius +>> [02722] Received from sensor_humidity: humidity=33.48percent +>> [02723] Received from sensor_pressure: pressure=1027.91hPa +>> [02724] Received from sensor_temp: temperature=27.19celsius +>> [02725] Received from sensor_humidity: humidity=36.43percent +>> [02726] Received from sensor_temp: temperature=30.07celsius +>> [02727] Received from sensor_temp: temperature=31.23celsius +>> [02728] Received from sensor_pressure: pressure=986.61hPa +>> [02729] Received from sensor_humidity: humidity=60.63percent +>> [02730] Received from sensor_temp: temperature=28.6celsius +>> [02731] Received from sensor_humidity: humidity=81.07percent +>> [02732] Received from sensor_pressure: pressure=985.27hPa +>> [02733] Received from sensor_temp: temperature=26.81celsius +>> [02734] Received from sensor_temp: temperature=34.37celsius +>> [02735] Received from sensor_humidity: humidity=58.49percent +>> [02736] Received from sensor_temp: temperature=34.12celsius +>> [02737] Received from sensor_pressure: pressure=980.69hPa +>> [02738] Received from sensor_humidity: humidity=39.9percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2738 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 39.90 percent | Count: 843 +🟢 ACTIVE | sensor_pressure | pressure | 980.69 hPa | Count: 632 +🟢 ACTIVE | sensor_temp | temperature | 34.12 celsius | Count: 1263 +====================================================================== + +>> [02739] Received from sensor_temp: temperature=18.46celsius +>> [02740] Received from sensor_pressure: pressure=991.49hPa +>> [02741] Received from sensor_temp: temperature=23.36celsius +>> [02742] Received from sensor_humidity: humidity=86.29percent +>> [02743] Received from sensor_temp: temperature=20.79celsius +>> [02744] Received from sensor_humidity: humidity=59.71percent +>> [02745] Received from sensor_temp: temperature=27.68celsius +>> [02746] Received from sensor_pressure: pressure=991.55hPa +>> [02747] Received from sensor_temp: temperature=15.14celsius +>> [02748] Received from sensor_humidity: humidity=88.37percent +>> [02749] Received from sensor_pressure: pressure=1032.85hPa +>> [02750] Received from sensor_temp: temperature=28.69celsius +>> [02751] Received from sensor_humidity: humidity=69.85percent +>> [02752] Received from sensor_temp: temperature=27.98celsius +>> [02753] Received from sensor_pressure: pressure=988.16hPa +>> [02754] Received from sensor_temp: temperature=22.0celsius +>> [02755] Received from sensor_humidity: humidity=85.97percent +>> [02756] Received from sensor_temp: temperature=27.99celsius +>> [02757] Received from sensor_pressure: pressure=998.15hPa +>> [02758] Received from sensor_humidity: humidity=31.26percent +>> [02759] Received from sensor_temp: temperature=24.51celsius +>> [02760] Received from sensor_temp: temperature=17.84celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2760 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 31.26 percent | Count: 849 +🟢 ACTIVE | sensor_pressure | pressure | 998.15 hPa | Count: 637 +🟢 ACTIVE | sensor_temp | temperature | 17.84 celsius | Count: 1274 +====================================================================== + +>> [02761] Received from sensor_humidity: humidity=88.95percent +>> [02762] Received from sensor_pressure: pressure=1016.87hPa +>> [02763] Received from sensor_temp: temperature=27.51celsius +>> [02764] Received from sensor_temp: temperature=33.57celsius +>> [02765] Received from sensor_humidity: humidity=45.21percent +>> [02766] Received from sensor_pressure: pressure=1020.25hPa +>> [02767] Received from sensor_temp: temperature=26.54celsius +>> [02768] Received from sensor_humidity: humidity=30.73percent +>> [02769] Received from sensor_temp: temperature=33.66celsius +>> [02770] Received from sensor_pressure: pressure=1036.08hPa +>> [02771] Received from sensor_humidity: humidity=46.25percent +>> [02772] Received from sensor_temp: temperature=31.33celsius +>> [02773] Received from sensor_temp: temperature=28.49celsius +>> [02774] Received from sensor_humidity: humidity=30.83percent +>> [02775] Received from sensor_pressure: pressure=1048.49hPa +>> [02776] Received from sensor_temp: temperature=34.14celsius +>> [02777] Received from sensor_humidity: humidity=32.44percent +>> [02778] Received from sensor_temp: temperature=27.12celsius +>> [02779] Received from sensor_pressure: pressure=1036.09hPa +>> [02780] Received from sensor_temp: temperature=30.1celsius +>> [02781] Received from sensor_humidity: humidity=31.59percent +>> [02782] Received from sensor_temp: temperature=17.67celsius +>> [02783] Received from sensor_humidity: humidity=78.02percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2783 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 78.02 percent | Count: 857 +🟢 ACTIVE | sensor_pressure | pressure | 1036.09 hPa | Count: 642 +🟢 ACTIVE | sensor_temp | temperature | 17.67 celsius | Count: 1284 +====================================================================== + +>> [02784] Received from sensor_temp: temperature=20.33celsius +>> [02785] Received from sensor_pressure: pressure=1030.85hPa +>> [02786] Received from sensor_temp: temperature=34.58celsius +>> [02787] Received from sensor_humidity: humidity=55.04percent +>> [02788] Received from sensor_pressure: pressure=1020.36hPa +>> [02789] Received from sensor_temp: temperature=19.42celsius +>> [02790] Received from sensor_humidity: humidity=67.27percent +>> [02791] Received from sensor_temp: temperature=18.68celsius +>> [02792] Received from sensor_pressure: pressure=985.02hPa +>> [02793] Received from sensor_temp: temperature=26.25celsius +>> [02794] Received from sensor_humidity: humidity=67.19percent +>> [02795] Received from sensor_temp: temperature=16.41celsius +>> [02796] Received from sensor_humidity: humidity=32.61percent +>> [02797] Received from sensor_pressure: pressure=1010.82hPa +>> [02798] Received from sensor_temp: temperature=26.68celsius +>> [02799] Received from sensor_temp: temperature=27.46celsius +>> [02800] Received from sensor_humidity: humidity=81.67percent +>> [02801] Received from sensor_pressure: pressure=1003.26hPa +>> [02802] Received from sensor_temp: temperature=18.39celsius +>> [02803] Received from sensor_temp: temperature=17.81celsius +>> [02804] Received from sensor_humidity: humidity=65.45percent +>> [02805] Received from sensor_pressure: pressure=1026.95hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2805 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 65.45 percent | Count: 863 +🟢 ACTIVE | sensor_pressure | pressure | 1026.95 hPa | Count: 648 +🟢 ACTIVE | sensor_temp | temperature | 17.81 celsius | Count: 1294 +====================================================================== + +>> [02806] Received from sensor_temp: temperature=23.48celsius +>> [02807] Received from sensor_humidity: humidity=63.19percent +>> [02808] Received from sensor_temp: temperature=29.69celsius +>> [02809] Received from sensor_humidity: humidity=40.1percent +>> [02810] Received from sensor_temp: temperature=25.21celsius +>> [02811] Received from sensor_pressure: pressure=1011.8hPa +>> [02812] Received from sensor_temp: temperature=19.02celsius +>> [02813] Received from sensor_humidity: humidity=67.37percent +>> [02814] Received from sensor_pressure: pressure=1014.03hPa +>> [02815] Received from sensor_temp: temperature=19.96celsius +>> [02816] Received from sensor_humidity: humidity=68.53percent +>> [02817] Received from sensor_temp: temperature=34.51celsius +>> [02818] Received from sensor_temp: temperature=26.43celsius +>> [02819] Received from sensor_pressure: pressure=1046.99hPa +>> [02820] Received from sensor_humidity: humidity=34.31percent +>> [02821] Received from sensor_temp: temperature=34.87celsius +>> [02822] Received from sensor_pressure: pressure=984.28hPa +>> [02823] Received from sensor_humidity: humidity=45.04percent +>> [02824] Received from sensor_temp: temperature=17.95celsius +>> [02825] Received from sensor_temp: temperature=18.03celsius +>> [02826] Received from sensor_humidity: humidity=85.54percent +>> [02827] Received from sensor_pressure: pressure=998.08hPa +>> [02828] Received from sensor_temp: temperature=25.17celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2828 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 85.54 percent | Count: 870 +🟢 ACTIVE | sensor_pressure | pressure | 998.08 hPa | Count: 653 +🟢 ACTIVE | sensor_temp | temperature | 25.17 celsius | Count: 1305 +====================================================================== + +>> [02829] Received from sensor_humidity: humidity=89.9percent +>> [02830] Received from sensor_temp: temperature=29.8celsius +>> [02831] Received from sensor_temp: temperature=22.6celsius +>> [02832] Received from sensor_pressure: pressure=1013.78hPa +>> [02833] Received from sensor_humidity: humidity=40.12percent +>> [02834] Received from sensor_temp: temperature=24.45celsius +>> [02835] Received from sensor_humidity: humidity=50.89percent +>> [02836] Received from sensor_pressure: pressure=999.27hPa +>> [02837] Received from sensor_temp: temperature=23.21celsius +>> [02838] Received from sensor_temp: temperature=27.88celsius +>> [02839] Received from sensor_humidity: humidity=41.78percent +>> [02840] Received from sensor_pressure: pressure=988.65hPa +>> [02841] Received from sensor_temp: temperature=20.93celsius +>> [02842] Received from sensor_humidity: humidity=40.06percent +>> [02843] Received from sensor_temp: temperature=25.96celsius +>> [02844] Received from sensor_pressure: pressure=1048.34hPa +>> [02845] Received from sensor_temp: temperature=26.9celsius +>> [02846] Received from sensor_humidity: humidity=42.78percent +>> [02847] Received from sensor_temp: temperature=15.15celsius +>> [02848] Received from sensor_pressure: pressure=1009.88hPa +>> [02849] Received from sensor_humidity: humidity=59.14percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2849 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 59.14 percent | Count: 877 +🟢 ACTIVE | sensor_pressure | pressure | 1009.88 hPa | Count: 658 +🟢 ACTIVE | sensor_temp | temperature | 15.15 celsius | Count: 1314 +====================================================================== + +>> [02850] Received from sensor_temp: temperature=27.28celsius +>> [02851] Received from sensor_temp: temperature=30.28celsius +>> [02852] Received from sensor_humidity: humidity=53.31percent +>> [02853] Received from sensor_temp: temperature=34.87celsius +>> [02854] Received from sensor_pressure: pressure=1048.01hPa +>> [02855] Received from sensor_humidity: humidity=88.91percent +>> [02856] Received from sensor_temp: temperature=30.74celsius +>> [02857] Received from sensor_temp: temperature=25.09celsius +>> [02858] Received from sensor_pressure: pressure=1006.75hPa +>> [02859] Received from sensor_humidity: humidity=46.85percent +>> [02860] Received from sensor_temp: temperature=30.5celsius +>> [02861] Received from sensor_pressure: pressure=1019.54hPa +>> [02862] Received from sensor_humidity: humidity=59.53percent +>> [02863] Received from sensor_temp: temperature=24.28celsius +>> [02864] Received from sensor_temp: temperature=21.39celsius +>> [02865] Received from sensor_humidity: humidity=89.6percent +>> [02866] Received from sensor_temp: temperature=26.83celsius +>> [02867] Received from sensor_pressure: pressure=990.12hPa +>> [02868] Received from sensor_humidity: humidity=64.65percent +>> [02869] Received from sensor_temp: temperature=25.95celsius +>> [02870] Received from sensor_pressure: pressure=1002.6hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2870 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 64.65 percent | Count: 883 +🟢 ACTIVE | sensor_pressure | pressure | 1002.60 hPa | Count: 663 +🟢 ACTIVE | sensor_temp | temperature | 25.95 celsius | Count: 1324 +====================================================================== + +>> [02871] Received from sensor_temp: temperature=15.27celsius +>> [02872] Received from sensor_humidity: humidity=82.58percent +>> [02873] Received from sensor_temp: temperature=18.04celsius +>> [02874] Received from sensor_pressure: pressure=988.23hPa +>> [02875] Received from sensor_humidity: humidity=73.1percent +>> [02876] Received from sensor_temp: temperature=29.87celsius +>> [02877] Received from sensor_temp: temperature=34.32celsius +>> [02878] Received from sensor_humidity: humidity=87.68percent +>> [02879] Received from sensor_pressure: pressure=1034.26hPa +>> [02880] Received from sensor_temp: temperature=26.58celsius +>> [02881] Received from sensor_humidity: humidity=87.25percent +>> [02882] Received from sensor_temp: temperature=27.54celsius +>> [02883] Received from sensor_pressure: pressure=1035.42hPa +>> [02884] Received from sensor_temp: temperature=21.73celsius +>> [02885] Received from sensor_humidity: humidity=84.73percent +>> [02886] Received from sensor_temp: temperature=15.54celsius +>> [02887] Received from sensor_pressure: pressure=1016.99hPa +>> [02888] Received from sensor_humidity: humidity=43.15percent +>> [02889] Received from sensor_temp: temperature=22.92celsius +>> [02890] Received from sensor_temp: temperature=20.99celsius +>> [02891] Received from sensor_humidity: humidity=83.82percent +>> [02892] Received from sensor_pressure: pressure=1021.97hPa +>> [02893] Received from sensor_temp: temperature=28.89celsius + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2893 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 83.82 percent | Count: 890 +🟢 ACTIVE | sensor_pressure | pressure | 1021.97 hPa | Count: 668 +🟢 ACTIVE | sensor_temp | temperature | 28.89 celsius | Count: 1335 +====================================================================== + +>> [02894] Received from sensor_humidity: humidity=75.84percent +>> [02895] Received from sensor_temp: temperature=32.93celsius +>> [02896] Received from sensor_temp: temperature=33.79celsius +>> [02897] Received from sensor_pressure: pressure=1036.0hPa +>> [02898] Received from sensor_humidity: humidity=54.12percent +>> [02899] Received from sensor_temp: temperature=29.33celsius +>> [02900] Received from sensor_pressure: pressure=1010.26hPa +>> [02901] Received from sensor_humidity: humidity=77.85percent +>> [02902] Received from sensor_temp: temperature=18.95celsius +>> [02903] Received from sensor_temp: temperature=24.42celsius +>> [02904] Received from sensor_humidity: humidity=68.39percent +>> [02905] Received from sensor_pressure: pressure=1026.66hPa +>> [02906] Received from sensor_temp: temperature=28.59celsius +>> [02907] Received from sensor_humidity: humidity=79.66percent +>> [02908] Received from sensor_temp: temperature=21.64celsius +>> [02909] Received from sensor_pressure: pressure=1024.67hPa +>> [02910] Received from sensor_temp: temperature=22.12celsius +>> [02911] Received from sensor_humidity: humidity=52.73percent +>> [02912] Received from sensor_temp: temperature=24.75celsius +>> [02913] Received from sensor_pressure: pressure=1041.6hPa + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2913 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 52.73 percent | Count: 896 +🟢 ACTIVE | sensor_pressure | pressure | 1041.60 hPa | Count: 673 +🟢 ACTIVE | sensor_temp | temperature | 24.75 celsius | Count: 1344 +====================================================================== + +>> [02914] Received from sensor_humidity: humidity=36.22percent +>> [02915] Received from sensor_temp: temperature=18.81celsius +>> [02916] Received from sensor_temp: temperature=15.57celsius +>> [02917] Received from sensor_humidity: humidity=72.53percent +>> [02918] Received from sensor_pressure: pressure=1003.52hPa +>> [02919] Received from sensor_temp: temperature=20.97celsius +>> [02920] Received from sensor_temp: temperature=16.43celsius +>> [02921] Received from sensor_humidity: humidity=49.0percent +>> [02922] Received from sensor_pressure: pressure=983.38hPa +>> [02923] Received from sensor_temp: temperature=33.73celsius +>> [02924] Received from sensor_humidity: humidity=78.46percent +>> [02925] Received from sensor_temp: temperature=25.46celsius +>> [02926] Received from sensor_pressure: pressure=1047.99hPa +>> [02927] Received from sensor_humidity: humidity=75.01percent +>> [02928] Received from sensor_temp: temperature=27.36celsius +>> [02929] Received from sensor_temp: temperature=22.94celsius +>> [02930] Received from sensor_humidity: humidity=65.55percent +>> [02931] Received from sensor_pressure: pressure=1014.25hPa +>> [02932] Received from sensor_temp: temperature=31.02celsius +>> [02933] Received from sensor_humidity: humidity=65.89percent +>> [02934] Received from sensor_temp: temperature=20.83celsius +>> [02935] Received from sensor_pressure: pressure=1007.93hPa +>> [02936] Received from sensor_temp: temperature=32.31celsius +>> [02937] Received from sensor_humidity: humidity=70.46percent + +====================================================================== +Cloud Aggregator Summary - Total Messages: 2937 +Active Sensors: 3 +====================================================================== +🟢 ACTIVE | sensor_humidity | humidity | 70.46 percent | Count: 904 +🟢 ACTIVE | sensor_pressure | pressure | 1007.93 hPa | Count: 678 +🟢 ACTIVE | sensor_temp | temperature | 32.31 celsius | Count: 1355 +====================================================================== + +>> [02938] Received from sensor_temp: temperature=15.31celsius +Received stop signal + diff --git a/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-humidity.txt b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-humidity.txt new file mode 100644 index 0000000..5c12438 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-humidity.txt @@ -0,0 +1,912 @@ +=== Sensor Node: sensor_humidity === +Type: humidity +Sensor node sensor_humidity started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: humidity=69.97percent +[0002] Sent: humidity=30.85percent +[0003] Sent: humidity=41.04percent +[0004] Sent: humidity=48.75percent +[0005] Sent: humidity=34.87percent +[0006] Sent: humidity=36.02percent +[0007] Sent: humidity=89.5percent +[0008] Sent: humidity=30.08percent +[0009] Sent: humidity=32.04percent +[0010] Sent: humidity=47.09percent +[0011] Sent: humidity=57.18percent +[0012] Sent: humidity=81.11percent +[0013] Sent: humidity=68.57percent +[0014] Sent: humidity=38.74percent +[0015] Sent: humidity=85.31percent +[0016] Sent: humidity=46.62percent +[0017] Sent: humidity=39.25percent +[0018] Sent: humidity=88.16percent +[0019] Sent: humidity=84.18percent +[0020] Sent: humidity=89.48percent +[0021] Sent: humidity=37.67percent +[0022] Sent: humidity=32.28percent +[0023] Sent: humidity=55.98percent +[0024] Sent: humidity=48.43percent +[0025] Sent: humidity=54.19percent +[0026] Sent: humidity=86.15percent +[0027] Sent: humidity=54.14percent +[0028] Sent: humidity=52.51percent +[0029] Sent: humidity=31.06percent +[0030] Sent: humidity=32.43percent +[0031] Sent: humidity=42.32percent +[0032] Sent: humidity=43.34percent +[0033] Sent: humidity=31.51percent +[0034] Sent: humidity=65.04percent +[0035] Sent: humidity=64.84percent +[0036] Sent: humidity=41.69percent +[0037] Sent: humidity=80.89percent +[0038] Sent: humidity=62.37percent +[0039] Sent: humidity=39.4percent +[0040] Sent: humidity=75.08percent +[0041] Sent: humidity=63.0percent +[0042] Sent: humidity=52.71percent +[0043] Sent: humidity=45.03percent +[0044] Sent: humidity=55.19percent +[0045] Sent: humidity=61.45percent +[0046] Sent: humidity=52.97percent +[0047] Sent: humidity=74.1percent +[0048] Sent: humidity=38.01percent +[0049] Sent: humidity=79.0percent +[0050] Sent: humidity=77.87percent +[0051] Sent: humidity=72.97percent +[0052] Sent: humidity=68.7percent +[0053] Sent: humidity=81.82percent +[0054] Sent: humidity=46.46percent +[0055] Sent: humidity=50.79percent +[0056] Sent: humidity=33.67percent +[0057] Sent: humidity=77.86percent +[0058] Sent: humidity=75.21percent +[0059] Sent: humidity=57.31percent +[0060] Sent: humidity=65.46percent +[0061] Sent: humidity=85.77percent +[0062] Sent: humidity=57.31percent +[0063] Sent: humidity=36.43percent +[0064] Sent: humidity=59.0percent +[0065] Sent: humidity=66.75percent +[0066] Sent: humidity=45.49percent +[0067] Sent: humidity=67.72percent +[0068] Sent: humidity=45.97percent +[0069] Sent: humidity=36.89percent +[0070] Sent: humidity=31.76percent +[0071] Sent: humidity=43.05percent +[0072] Sent: humidity=87.51percent +[0073] Sent: humidity=50.0percent +[0074] Sent: humidity=50.71percent +[0075] Sent: humidity=42.62percent +[0076] Sent: humidity=71.68percent +[0077] Sent: humidity=49.77percent +[0078] Sent: humidity=46.83percent +[0079] Sent: humidity=39.44percent +[0080] Sent: humidity=89.47percent +[0081] Sent: humidity=73.48percent +[0082] Sent: humidity=88.15percent +[0083] Sent: humidity=76.73percent +[0084] Sent: humidity=74.48percent +[0085] Sent: humidity=85.96percent +[0086] Sent: humidity=35.47percent +[0087] Sent: humidity=52.68percent +[0088] Sent: humidity=82.44percent +[0089] Sent: humidity=59.78percent +[0090] Sent: humidity=72.01percent +[0091] Sent: humidity=88.64percent +[0092] Sent: humidity=31.51percent +[0093] Sent: humidity=88.43percent +[0094] Sent: humidity=39.52percent +[0095] Sent: humidity=35.04percent +[0096] Sent: humidity=31.98percent +[0097] Sent: humidity=66.9percent +[0098] Sent: humidity=59.06percent +[0099] Sent: humidity=78.54percent +[0100] Sent: humidity=41.44percent +[0101] Sent: humidity=85.24percent +[0102] Sent: humidity=72.21percent +[0103] Sent: humidity=66.4percent +[0104] Sent: humidity=47.36percent +[0105] Sent: humidity=71.59percent +[0106] Sent: humidity=65.87percent +[0107] Sent: humidity=40.07percent +[0108] Sent: humidity=68.98percent +[0109] Sent: humidity=44.84percent +[0110] Sent: humidity=85.25percent +[0111] Sent: humidity=79.98percent +[0112] Sent: humidity=41.51percent +[0113] Sent: humidity=56.63percent +[0114] Sent: humidity=63.4percent +[0115] Sent: humidity=39.37percent +[0116] Sent: humidity=68.85percent +[0117] Sent: humidity=62.69percent +[0118] Sent: humidity=77.19percent +[0119] Sent: humidity=64.3percent +[0120] Sent: humidity=61.9percent +[0121] Sent: humidity=45.39percent +[0122] Sent: humidity=88.72percent +[0123] Sent: humidity=70.92percent +[0124] Sent: humidity=60.2percent +[0125] Sent: humidity=57.75percent +[0126] Sent: humidity=39.86percent +[0127] Sent: humidity=75.99percent +[0128] Sent: humidity=40.26percent +[0129] Sent: humidity=32.34percent +[0130] Sent: humidity=81.57percent +[0131] Sent: humidity=64.94percent +[0132] Sent: humidity=51.26percent +[0133] Sent: humidity=48.85percent +[0134] Sent: humidity=59.45percent +[0135] Sent: humidity=38.21percent +[0136] Sent: humidity=34.59percent +[0137] Sent: humidity=52.03percent +[0138] Sent: humidity=41.37percent +[0139] Sent: humidity=50.18percent +[0140] Sent: humidity=40.29percent +[0141] Sent: humidity=32.12percent +[0142] Sent: humidity=73.11percent +[0143] Sent: humidity=52.64percent +[0144] Sent: humidity=85.55percent +[0145] Sent: humidity=51.25percent +[0146] Sent: humidity=49.66percent +[0147] Sent: humidity=83.13percent +[0148] Sent: humidity=45.22percent +[0149] Sent: humidity=46.28percent +[0150] Sent: humidity=40.3percent +[0151] Sent: humidity=88.15percent +[0152] Sent: humidity=37.83percent +[0153] Sent: humidity=51.14percent +[0154] Sent: humidity=52.48percent +[0155] Sent: humidity=81.85percent +[0156] Sent: humidity=85.48percent +[0157] Sent: humidity=34.25percent +[0158] Sent: humidity=42.58percent +[0159] Sent: humidity=64.89percent +[0160] Sent: humidity=54.15percent +[0161] Sent: humidity=63.17percent +[0162] Sent: humidity=80.66percent +[0163] Sent: humidity=36.54percent +[0164] Sent: humidity=40.27percent +[0165] Sent: humidity=45.23percent +[0166] Sent: humidity=72.56percent +[0167] Sent: humidity=38.36percent +[0168] Sent: humidity=36.65percent +[0169] Sent: humidity=81.19percent +[0170] Sent: humidity=59.74percent +[0171] Sent: humidity=73.43percent +[0172] Sent: humidity=46.55percent +[0173] Sent: humidity=42.5percent +[0174] Sent: humidity=31.86percent +[0175] Sent: humidity=46.25percent +[0176] Sent: humidity=47.41percent +[0177] Sent: humidity=45.16percent +[0178] Sent: humidity=54.41percent +[0179] Sent: humidity=30.7percent +[0180] Sent: humidity=66.09percent +[0181] Sent: humidity=63.57percent +[0182] Sent: humidity=60.52percent +[0183] Sent: humidity=36.35percent +[0184] Sent: humidity=41.44percent +[0185] Sent: humidity=43.41percent +[0186] Sent: humidity=31.17percent +[0187] Sent: humidity=65.38percent +[0188] Sent: humidity=36.23percent +[0189] Sent: humidity=89.24percent +[0190] Sent: humidity=64.24percent +[0191] Sent: humidity=72.57percent +[0192] Sent: humidity=58.05percent +[0193] Sent: humidity=50.7percent +[0194] Sent: humidity=55.01percent +[0195] Sent: humidity=73.03percent +[0196] Sent: humidity=78.24percent +[0197] Sent: humidity=32.77percent +[0198] Sent: humidity=33.03percent +[0199] Sent: humidity=69.61percent +[0200] Sent: humidity=73.14percent +[0201] Sent: humidity=87.26percent +[0202] Sent: humidity=89.3percent +[0203] Sent: humidity=65.73percent +[0204] Sent: humidity=80.78percent +[0205] Sent: humidity=49.64percent +[0206] Sent: humidity=87.8percent +[0207] Sent: humidity=61.32percent +[0208] Sent: humidity=53.85percent +[0209] Sent: humidity=78.92percent +[0210] Sent: humidity=82.11percent +[0211] Sent: humidity=70.07percent +[0212] Sent: humidity=75.65percent +[0213] Sent: humidity=79.3percent +[0214] Sent: humidity=54.62percent +[0215] Sent: humidity=30.09percent +[0216] Sent: humidity=47.39percent +[0217] Sent: humidity=49.26percent +[0218] Sent: humidity=30.38percent +[0219] Sent: humidity=53.62percent +[0220] Sent: humidity=72.24percent +[0221] Sent: humidity=37.07percent +[0222] Sent: humidity=63.35percent +[0223] Sent: humidity=54.73percent +[0224] Sent: humidity=50.59percent +[0225] Sent: humidity=66.03percent +[0226] Sent: humidity=38.71percent +[0227] Sent: humidity=37.96percent +[0228] Sent: humidity=65.98percent +[0229] Sent: humidity=71.96percent +[0230] Sent: humidity=87.16percent +[0231] Sent: humidity=48.05percent +[0232] Sent: humidity=89.1percent +[0233] Sent: humidity=77.66percent +[0234] Sent: humidity=61.58percent +[0235] Sent: humidity=45.0percent +[0236] Sent: humidity=73.9percent +[0237] Sent: humidity=68.78percent +[0238] Sent: humidity=66.99percent +[0239] Sent: humidity=73.45percent +[0240] Sent: humidity=84.38percent +[0241] Sent: humidity=83.83percent +[0242] Sent: humidity=88.98percent +[0243] Sent: humidity=88.46percent +[0244] Sent: humidity=87.28percent +[0245] Sent: humidity=88.92percent +[0246] Sent: humidity=76.78percent +[0247] Sent: humidity=49.47percent +[0248] Sent: humidity=81.07percent +[0249] Sent: humidity=74.05percent +[0250] Sent: humidity=55.33percent +[0251] Sent: humidity=37.11percent +[0252] Sent: humidity=88.93percent +[0253] Sent: humidity=75.23percent +[0254] Sent: humidity=69.28percent +[0255] Sent: humidity=31.4percent +[0256] Sent: humidity=54.99percent +[0257] Sent: humidity=47.56percent +[0258] Sent: humidity=33.42percent +[0259] Sent: humidity=79.59percent +[0260] Sent: humidity=38.89percent +[0261] Sent: humidity=76.73percent +[0262] Sent: humidity=85.92percent +[0263] Sent: humidity=52.5percent +[0264] Sent: humidity=58.09percent +[0265] Sent: humidity=67.66percent +[0266] Sent: humidity=74.48percent +[0267] Sent: humidity=89.44percent +[0268] Sent: humidity=45.03percent +[0269] Sent: humidity=48.71percent +[0270] Sent: humidity=31.33percent +[0271] Sent: humidity=41.19percent +[0272] Sent: humidity=31.63percent +[0273] Sent: humidity=63.13percent +[0274] Sent: humidity=62.54percent +[0275] Sent: humidity=77.23percent +[0276] Sent: humidity=49.26percent +[0277] Sent: humidity=32.18percent +[0278] Sent: humidity=65.18percent +[0279] Sent: humidity=81.89percent +[0280] Sent: humidity=84.3percent +[0281] Sent: humidity=72.16percent +[0282] Sent: humidity=47.16percent +[0283] Sent: humidity=89.33percent +[0284] Sent: humidity=88.41percent +[0285] Sent: humidity=49.93percent +[0286] Sent: humidity=37.46percent +[0287] Sent: humidity=64.81percent +[0288] Sent: humidity=34.36percent +[0289] Sent: humidity=64.13percent +[0290] Sent: humidity=74.38percent +[0291] Sent: humidity=71.92percent +[0292] Sent: humidity=86.1percent +[0293] Sent: humidity=89.79percent +[0294] Sent: humidity=72.48percent +[0295] Sent: humidity=48.14percent +[0296] Sent: humidity=41.41percent +[0297] Sent: humidity=39.63percent +[0298] Sent: humidity=51.27percent +[0299] Sent: humidity=33.38percent +[0300] Sent: humidity=39.5percent +[0301] Sent: humidity=30.63percent +[0302] Sent: humidity=76.51percent +[0303] Sent: humidity=81.56percent +[0304] Sent: humidity=88.2percent +[0305] Sent: humidity=46.09percent +[0306] Sent: humidity=76.5percent +[0307] Sent: humidity=56.09percent +[0308] Sent: humidity=69.07percent +[0309] Sent: humidity=87.84percent +[0310] Sent: humidity=63.93percent +[0311] Sent: humidity=69.95percent +[0312] Sent: humidity=51.02percent +[0313] Sent: humidity=47.95percent +[0314] Sent: humidity=41.37percent +[0315] Sent: humidity=81.22percent +[0316] Sent: humidity=74.77percent +[0317] Sent: humidity=77.89percent +[0318] Sent: humidity=79.74percent +[0319] Sent: humidity=58.34percent +[0320] Sent: humidity=62.9percent +[0321] Sent: humidity=45.73percent +[0322] Sent: humidity=41.12percent +[0323] Sent: humidity=85.97percent +[0324] Sent: humidity=87.62percent +[0325] Sent: humidity=44.91percent +[0326] Sent: humidity=58.27percent +[0327] Sent: humidity=52.02percent +[0328] Sent: humidity=74.32percent +[0329] Sent: humidity=75.44percent +[0330] Sent: humidity=46.25percent +[0331] Sent: humidity=80.82percent +[0332] Sent: humidity=88.39percent +[0333] Sent: humidity=40.48percent +[0334] Sent: humidity=48.77percent +[0335] Sent: humidity=37.04percent +[0336] Sent: humidity=35.74percent +[0337] Sent: humidity=82.69percent +[0338] Sent: humidity=81.44percent +[0339] Sent: humidity=39.16percent +[0340] Sent: humidity=70.4percent +[0341] Sent: humidity=48.88percent +[0342] Sent: humidity=83.88percent +[0343] Sent: humidity=84.06percent +[0344] Sent: humidity=33.21percent +[0345] Sent: humidity=53.86percent +[0346] Sent: humidity=33.5percent +[0347] Sent: humidity=63.11percent +[0348] Sent: humidity=56.32percent +[0349] Sent: humidity=57.66percent +[0350] Sent: humidity=73.69percent +[0351] Sent: humidity=36.74percent +[0352] Sent: humidity=86.16percent +[0353] Sent: humidity=86.91percent +[0354] Sent: humidity=62.63percent +[0355] Sent: humidity=75.93percent +[0356] Sent: humidity=71.64percent +[0357] Sent: humidity=70.28percent +[0358] Sent: humidity=78.07percent +[0359] Sent: humidity=41.93percent +[0360] Sent: humidity=67.68percent +[0361] Sent: humidity=67.66percent +[0362] Sent: humidity=72.81percent +[0363] Sent: humidity=78.36percent +[0364] Sent: humidity=78.0percent +[0365] Sent: humidity=49.48percent +[0366] Sent: humidity=51.61percent +[0367] Sent: humidity=45.33percent +[0368] Sent: humidity=52.04percent +[0369] Sent: humidity=85.09percent +[0370] Sent: humidity=44.13percent +[0371] Sent: humidity=80.71percent +[0372] Sent: humidity=61.8percent +[0373] Sent: humidity=40.76percent +[0374] Sent: humidity=57.88percent +[0375] Sent: humidity=85.36percent +[0376] Sent: humidity=45.98percent +[0377] Sent: humidity=82.68percent +[0378] Sent: humidity=80.2percent +[0379] Sent: humidity=64.48percent +[0380] Sent: humidity=31.96percent +[0381] Sent: humidity=49.03percent +[0382] Sent: humidity=87.52percent +[0383] Sent: humidity=78.79percent +[0384] Sent: humidity=89.22percent +[0385] Sent: humidity=77.18percent +[0386] Sent: humidity=72.44percent +[0387] Sent: humidity=84.05percent +[0388] Sent: humidity=36.17percent +[0389] Sent: humidity=55.25percent +[0390] Sent: humidity=79.84percent +[0391] Sent: humidity=64.03percent +[0392] Sent: humidity=87.54percent +[0393] Sent: humidity=87.44percent +[0394] Sent: humidity=45.89percent +[0395] Sent: humidity=49.58percent +[0396] Sent: humidity=86.84percent +[0397] Sent: humidity=33.05percent +[0398] Sent: humidity=77.61percent +[0399] Sent: humidity=67.47percent +[0400] Sent: humidity=78.68percent +[0401] Sent: humidity=35.49percent +[0402] Sent: humidity=47.72percent +[0403] Sent: humidity=48.62percent +[0404] Sent: humidity=79.22percent +[0405] Sent: humidity=79.26percent +[0406] Sent: humidity=31.9percent +[0407] Sent: humidity=78.86percent +[0408] Sent: humidity=45.08percent +[0409] Sent: humidity=72.22percent +[0410] Sent: humidity=44.67percent +[0411] Sent: humidity=78.82percent +[0412] Sent: humidity=42.33percent +[0413] Sent: humidity=68.42percent +[0414] Sent: humidity=85.95percent +[0415] Sent: humidity=37.4percent +[0416] Sent: humidity=49.16percent +[0417] Sent: humidity=78.01percent +[0418] Sent: humidity=32.01percent +[0419] Sent: humidity=63.8percent +[0420] Sent: humidity=89.52percent +[0421] Sent: humidity=39.41percent +[0422] Sent: humidity=36.69percent +[0423] Sent: humidity=30.6percent +[0424] Sent: humidity=49.34percent +[0425] Sent: humidity=57.33percent +[0426] Sent: humidity=85.49percent +[0427] Sent: humidity=64.39percent +[0428] Sent: humidity=65.49percent +[0429] Sent: humidity=34.08percent +[0430] Sent: humidity=67.24percent +[0431] Sent: humidity=88.57percent +[0432] Sent: humidity=47.37percent +[0433] Sent: humidity=61.97percent +[0434] Sent: humidity=37.65percent +[0435] Sent: humidity=73.23percent +[0436] Sent: humidity=87.95percent +[0437] Sent: humidity=41.03percent +[0438] Sent: humidity=65.15percent +[0439] Sent: humidity=50.53percent +[0440] Sent: humidity=71.25percent +[0441] Sent: humidity=40.47percent +[0442] Sent: humidity=49.31percent +[0443] Sent: humidity=62.19percent +[0444] Sent: humidity=50.64percent +[0445] Sent: humidity=76.78percent +[0446] Sent: humidity=61.31percent +[0447] Sent: humidity=82.73percent +[0448] Sent: humidity=55.58percent +[0449] Sent: humidity=71.61percent +[0450] Sent: humidity=48.53percent +[0451] Sent: humidity=70.92percent +[0452] Sent: humidity=30.83percent +[0453] Sent: humidity=62.78percent +[0454] Sent: humidity=86.43percent +[0455] Sent: humidity=52.89percent +[0456] Sent: humidity=38.51percent +[0457] Sent: humidity=38.95percent +[0458] Sent: humidity=30.94percent +[0459] Sent: humidity=61.21percent +[0460] Sent: humidity=77.03percent +[0461] Sent: humidity=31.24percent +[0462] Sent: humidity=61.91percent +[0463] Sent: humidity=30.28percent +[0464] Sent: humidity=49.28percent +[0465] Sent: humidity=34.2percent +[0466] Sent: humidity=53.93percent +[0467] Sent: humidity=60.73percent +[0468] Sent: humidity=69.89percent +[0469] Sent: humidity=73.48percent +[0470] Sent: humidity=67.22percent +[0471] Sent: humidity=76.1percent +[0472] Sent: humidity=30.97percent +[0473] Sent: humidity=52.18percent +[0474] Sent: humidity=62.23percent +[0475] Sent: humidity=79.4percent +[0476] Sent: humidity=63.46percent +[0477] Sent: humidity=55.01percent +[0478] Sent: humidity=68.02percent +[0479] Sent: humidity=84.22percent +[0480] Sent: humidity=88.0percent +[0481] Sent: humidity=63.0percent +[0482] Sent: humidity=40.63percent +[0483] Sent: humidity=60.02percent +[0484] Sent: humidity=77.77percent +[0485] Sent: humidity=39.64percent +[0486] Sent: humidity=36.35percent +[0487] Sent: humidity=47.84percent +[0488] Sent: humidity=35.52percent +[0489] Sent: humidity=46.98percent +[0490] Sent: humidity=62.88percent +[0491] Sent: humidity=34.22percent +[0492] Sent: humidity=32.25percent +[0493] Sent: humidity=54.62percent +[0494] Sent: humidity=55.12percent +[0495] Sent: humidity=71.67percent +[0496] Sent: humidity=40.4percent +[0497] Sent: humidity=80.65percent +[0498] Sent: humidity=51.07percent +[0499] Sent: humidity=37.06percent +[0500] Sent: humidity=60.39percent +[0501] Sent: humidity=85.16percent +[0502] Sent: humidity=69.5percent +[0503] Sent: humidity=46.52percent +[0504] Sent: humidity=59.09percent +[0505] Sent: humidity=55.59percent +[0506] Sent: humidity=52.95percent +[0507] Sent: humidity=35.53percent +[0508] Sent: humidity=82.99percent +[0509] Sent: humidity=39.18percent +[0510] Sent: humidity=78.04percent +[0511] Sent: humidity=80.83percent +[0512] Sent: humidity=83.18percent +[0513] Sent: humidity=39.05percent +[0514] Sent: humidity=54.72percent +[0515] Sent: humidity=74.18percent +[0516] Sent: humidity=34.29percent +[0517] Sent: humidity=65.46percent +[0518] Sent: humidity=43.05percent +[0519] Sent: humidity=30.76percent +[0520] Sent: humidity=51.05percent +[0521] Sent: humidity=71.98percent +[0522] Sent: humidity=45.17percent +[0523] Sent: humidity=32.96percent +[0524] Sent: humidity=63.84percent +[0525] Sent: humidity=69.64percent +[0526] Sent: humidity=63.32percent +[0527] Sent: humidity=73.44percent +[0528] Sent: humidity=89.5percent +[0529] Sent: humidity=79.46percent +[0530] Sent: humidity=56.42percent +[0531] Sent: humidity=45.52percent +[0532] Sent: humidity=38.3percent +[0533] Sent: humidity=88.55percent +[0534] Sent: humidity=87.29percent +[0535] Sent: humidity=36.63percent +[0536] Sent: humidity=55.09percent +[0537] Sent: humidity=49.88percent +[0538] Sent: humidity=37.62percent +[0539] Sent: humidity=77.03percent +[0540] Sent: humidity=80.71percent +[0541] Sent: humidity=62.49percent +[0542] Sent: humidity=41.48percent +[0543] Sent: humidity=65.04percent +[0544] Sent: humidity=60.41percent +[0545] Sent: humidity=51.56percent +[0546] Sent: humidity=78.61percent +[0547] Sent: humidity=34.67percent +[0548] Sent: humidity=86.34percent +[0549] Sent: humidity=71.71percent +[0550] Sent: humidity=89.57percent +[0551] Sent: humidity=36.98percent +[0552] Sent: humidity=41.19percent +[0553] Sent: humidity=81.37percent +[0554] Sent: humidity=83.91percent +[0555] Sent: humidity=63.89percent +[0556] Sent: humidity=73.46percent +[0557] Sent: humidity=84.57percent +[0558] Sent: humidity=44.82percent +[0559] Sent: humidity=48.2percent +[0560] Sent: humidity=56.85percent +[0561] Sent: humidity=40.95percent +[0562] Sent: humidity=30.45percent +[0563] Sent: humidity=33.96percent +[0564] Sent: humidity=47.95percent +[0565] Sent: humidity=46.34percent +[0566] Sent: humidity=41.9percent +[0567] Sent: humidity=81.1percent +[0568] Sent: humidity=78.64percent +[0569] Sent: humidity=34.46percent +[0570] Sent: humidity=59.24percent +[0571] Sent: humidity=38.18percent +[0572] Sent: humidity=82.4percent +[0573] Sent: humidity=77.96percent +[0574] Sent: humidity=70.86percent +[0575] Sent: humidity=46.99percent +[0576] Sent: humidity=77.79percent +[0577] Sent: humidity=36.79percent +[0578] Sent: humidity=71.35percent +[0579] Sent: humidity=76.15percent +[0580] Sent: humidity=42.98percent +[0581] Sent: humidity=48.67percent +[0582] Sent: humidity=61.32percent +[0583] Sent: humidity=64.78percent +[0584] Sent: humidity=59.25percent +[0585] Sent: humidity=73.2percent +[0586] Sent: humidity=50.39percent +[0587] Sent: humidity=73.13percent +[0588] Sent: humidity=51.86percent +[0589] Sent: humidity=72.0percent +[0590] Sent: humidity=84.85percent +[0591] Sent: humidity=54.1percent +[0592] Sent: humidity=82.35percent +[0593] Sent: humidity=60.85percent +[0594] Sent: humidity=52.12percent +[0595] Sent: humidity=84.84percent +[0596] Sent: humidity=86.44percent +[0597] Sent: humidity=75.78percent +[0598] Sent: humidity=77.55percent +[0599] Sent: humidity=70.25percent +[0600] Sent: humidity=72.08percent +[0601] Sent: humidity=30.16percent +[0602] Sent: humidity=89.94percent +[0603] Sent: humidity=63.13percent +[0604] Sent: humidity=38.06percent +[0605] Sent: humidity=64.36percent +[0606] Sent: humidity=86.78percent +[0607] Sent: humidity=88.7percent +[0608] Sent: humidity=85.96percent +[0609] Sent: humidity=65.72percent +[0610] Sent: humidity=72.19percent +[0611] Sent: humidity=39.57percent +[0612] Sent: humidity=80.89percent +[0613] Sent: humidity=69.52percent +[0614] Sent: humidity=35.62percent +[0615] Sent: humidity=47.96percent +[0616] Sent: humidity=30.61percent +[0617] Sent: humidity=88.29percent +[0618] Sent: humidity=63.08percent +[0619] Sent: humidity=74.7percent +[0620] Sent: humidity=57.74percent +[0621] Sent: humidity=60.35percent +[0622] Sent: humidity=37.72percent +[0623] Sent: humidity=38.03percent +[0624] Sent: humidity=33.19percent +[0625] Sent: humidity=47.24percent +[0626] Sent: humidity=45.15percent +[0627] Sent: humidity=48.19percent +[0628] Sent: humidity=51.61percent +[0629] Sent: humidity=78.02percent +[0630] Sent: humidity=30.67percent +[0631] Sent: humidity=63.08percent +[0632] Sent: humidity=43.78percent +[0633] Sent: humidity=81.15percent +[0634] Sent: humidity=55.02percent +[0635] Sent: humidity=62.12percent +[0636] Sent: humidity=76.38percent +[0637] Sent: humidity=84.31percent +[0638] Sent: humidity=43.25percent +[0639] Sent: humidity=71.87percent +[0640] Sent: humidity=44.41percent +[0641] Sent: humidity=62.9percent +[0642] Sent: humidity=83.42percent +[0643] Sent: humidity=76.15percent +[0644] Sent: humidity=41.82percent +[0645] Sent: humidity=32.77percent +[0646] Sent: humidity=59.0percent +[0647] Sent: humidity=71.4percent +[0648] Sent: humidity=58.18percent +[0649] Sent: humidity=40.14percent +[0650] Sent: humidity=64.56percent +[0651] Sent: humidity=71.03percent +[0652] Sent: humidity=73.65percent +[0653] Sent: humidity=63.16percent +[0654] Sent: humidity=40.16percent +[0655] Sent: humidity=63.23percent +[0656] Sent: humidity=60.8percent +[0657] Sent: humidity=88.19percent +[0658] Sent: humidity=71.17percent +[0659] Sent: humidity=78.87percent +[0660] Sent: humidity=64.8percent +[0661] Sent: humidity=69.61percent +[0662] Sent: humidity=54.76percent +[0663] Sent: humidity=69.61percent +[0664] Sent: humidity=36.81percent +[0665] Sent: humidity=82.72percent +[0666] Sent: humidity=70.3percent +[0667] Sent: humidity=88.92percent +[0668] Sent: humidity=83.79percent +[0669] Sent: humidity=46.69percent +[0670] Sent: humidity=32.32percent +[0671] Sent: humidity=85.88percent +[0672] Sent: humidity=33.91percent +[0673] Sent: humidity=83.42percent +[0674] Sent: humidity=33.79percent +[0675] Sent: humidity=31.48percent +[0676] Sent: humidity=78.48percent +[0677] Sent: humidity=85.34percent +[0678] Sent: humidity=53.62percent +[0679] Sent: humidity=36.7percent +[0680] Sent: humidity=63.41percent +[0681] Sent: humidity=69.78percent +[0682] Sent: humidity=49.04percent +[0683] Sent: humidity=32.53percent +[0684] Sent: humidity=72.87percent +[0685] Sent: humidity=77.45percent +[0686] Sent: humidity=73.3percent +[0687] Sent: humidity=33.88percent +[0688] Sent: humidity=78.69percent +[0689] Sent: humidity=70.65percent +[0690] Sent: humidity=63.68percent +[0691] Sent: humidity=51.07percent +[0692] Sent: humidity=62.71percent +[0693] Sent: humidity=31.7percent +[0694] Sent: humidity=46.19percent +[0695] Sent: humidity=83.55percent +[0696] Sent: humidity=36.13percent +[0697] Sent: humidity=80.45percent +[0698] Sent: humidity=62.51percent +[0699] Sent: humidity=71.2percent +[0700] Sent: humidity=42.21percent +[0701] Sent: humidity=30.7percent +[0702] Sent: humidity=47.94percent +[0703] Sent: humidity=65.04percent +[0704] Sent: humidity=60.66percent +[0705] Sent: humidity=79.85percent +[0706] Sent: humidity=49.97percent +[0707] Sent: humidity=40.77percent +[0708] Sent: humidity=80.07percent +[0709] Sent: humidity=41.96percent +[0710] Sent: humidity=47.05percent +[0711] Sent: humidity=78.34percent +[0712] Sent: humidity=39.52percent +[0713] Sent: humidity=55.2percent +[0714] Sent: humidity=64.18percent +[0715] Sent: humidity=67.21percent +[0716] Sent: humidity=31.43percent +[0717] Sent: humidity=44.82percent +[0718] Sent: humidity=84.45percent +[0719] Sent: humidity=53.39percent +[0720] Sent: humidity=41.23percent +[0721] Sent: humidity=66.64percent +[0722] Sent: humidity=30.29percent +[0723] Sent: humidity=53.27percent +[0724] Sent: humidity=31.66percent +[0725] Sent: humidity=50.79percent +[0726] Sent: humidity=49.66percent +[0727] Sent: humidity=80.57percent +[0728] Sent: humidity=68.11percent +[0729] Sent: humidity=82.13percent +[0730] Sent: humidity=78.25percent +[0731] Sent: humidity=61.31percent +[0732] Sent: humidity=38.77percent +[0733] Sent: humidity=63.23percent +[0734] Sent: humidity=62.15percent +[0735] Sent: humidity=58.96percent +[0736] Sent: humidity=76.25percent +[0737] Sent: humidity=45.86percent +[0738] Sent: humidity=74.47percent +[0739] Sent: humidity=53.84percent +[0740] Sent: humidity=50.5percent +[0741] Sent: humidity=71.1percent +[0742] Sent: humidity=54.17percent +[0743] Sent: humidity=60.3percent +[0744] Sent: humidity=71.7percent +[0745] Sent: humidity=55.32percent +[0746] Sent: humidity=75.16percent +[0747] Sent: humidity=88.82percent +[0748] Sent: humidity=54.9percent +[0749] Sent: humidity=55.57percent +[0750] Sent: humidity=38.04percent +[0751] Sent: humidity=83.76percent +[0752] Sent: humidity=87.6percent +[0753] Sent: humidity=77.12percent +[0754] Sent: humidity=68.92percent +[0755] Sent: humidity=67.74percent +[0756] Sent: humidity=42.08percent +[0757] Sent: humidity=84.46percent +[0758] Sent: humidity=65.16percent +[0759] Sent: humidity=42.17percent +[0760] Sent: humidity=86.93percent +[0761] Sent: humidity=44.32percent +[0762] Sent: humidity=89.01percent +[0763] Sent: humidity=55.92percent +[0764] Sent: humidity=31.58percent +[0765] Sent: humidity=71.11percent +[0766] Sent: humidity=43.73percent +[0767] Sent: humidity=33.92percent +[0768] Sent: humidity=31.42percent +[0769] Sent: humidity=53.28percent +[0770] Sent: humidity=31.46percent +[0771] Sent: humidity=82.2percent +[0772] Sent: humidity=69.12percent +[0773] Sent: humidity=50.04percent +[0774] Sent: humidity=32.05percent +[0775] Sent: humidity=89.46percent +[0776] Sent: humidity=44.45percent +[0777] Sent: humidity=32.18percent +[0778] Sent: humidity=86.03percent +[0779] Sent: humidity=57.18percent +[0780] Sent: humidity=46.96percent +[0781] Sent: humidity=79.91percent +[0782] Sent: humidity=43.89percent +[0783] Sent: humidity=59.46percent +[0784] Sent: humidity=89.84percent +[0785] Sent: humidity=64.52percent +[0786] Sent: humidity=38.23percent +[0787] Sent: humidity=75.97percent +[0788] Sent: humidity=71.34percent +[0789] Sent: humidity=79.47percent +[0790] Sent: humidity=55.67percent +[0791] Sent: humidity=44.14percent +[0792] Sent: humidity=88.09percent +[0793] Sent: humidity=72.5percent +[0794] Sent: humidity=43.23percent +[0795] Sent: humidity=59.57percent +[0796] Sent: humidity=66.89percent +[0797] Sent: humidity=47.49percent +[0798] Sent: humidity=46.89percent +[0799] Sent: humidity=49.66percent +[0800] Sent: humidity=74.4percent +[0801] Sent: humidity=46.4percent +[0802] Sent: humidity=41.43percent +[0803] Sent: humidity=33.56percent +[0804] Sent: humidity=33.74percent +[0805] Sent: humidity=79.45percent +[0806] Sent: humidity=51.79percent +[0807] Sent: humidity=41.99percent +[0808] Sent: humidity=63.5percent +[0809] Sent: humidity=53.59percent +[0810] Sent: humidity=88.14percent +[0811] Sent: humidity=44.07percent +[0812] Sent: humidity=74.83percent +[0813] Sent: humidity=47.03percent +[0814] Sent: humidity=70.01percent +[0815] Sent: humidity=85.69percent +[0816] Sent: humidity=65.11percent +[0817] Sent: humidity=69.84percent +[0818] Sent: humidity=62.33percent +[0819] Sent: humidity=38.56percent +[0820] Sent: humidity=32.82percent +[0821] Sent: humidity=43.47percent +[0822] Sent: humidity=43.75percent +[0823] Sent: humidity=62.41percent +[0824] Sent: humidity=33.62percent +[0825] Sent: humidity=49.34percent +[0826] Sent: humidity=66.34percent +[0827] Sent: humidity=59.35percent +[0828] Sent: humidity=48.88percent +[0829] Sent: humidity=35.76percent +[0830] Sent: humidity=31.11percent +[0831] Sent: humidity=33.04percent +[0832] Sent: humidity=37.19percent +[0833] Sent: humidity=54.06percent +[0834] Sent: humidity=56.78percent +[0835] Sent: humidity=84.01percent +[0836] Sent: humidity=43.89percent +[0837] Sent: humidity=68.25percent +[0838] Sent: humidity=33.48percent +[0839] Sent: humidity=36.43percent +[0840] Sent: humidity=60.63percent +[0841] Sent: humidity=81.07percent +[0842] Sent: humidity=58.49percent +[0843] Sent: humidity=39.9percent +[0844] Sent: humidity=86.29percent +[0845] Sent: humidity=59.71percent +[0846] Sent: humidity=88.37percent +[0847] Sent: humidity=69.85percent +[0848] Sent: humidity=85.97percent +[0849] Sent: humidity=31.26percent +[0850] Sent: humidity=88.95percent +[0851] Sent: humidity=45.21percent +[0852] Sent: humidity=30.73percent +[0853] Sent: humidity=46.25percent +[0854] Sent: humidity=30.83percent +[0855] Sent: humidity=32.44percent +[0856] Sent: humidity=31.59percent +[0857] Sent: humidity=78.02percent +[0858] Sent: humidity=55.04percent +[0859] Sent: humidity=67.27percent +[0860] Sent: humidity=67.19percent +[0861] Sent: humidity=32.61percent +[0862] Sent: humidity=81.67percent +[0863] Sent: humidity=65.45percent +[0864] Sent: humidity=63.19percent +[0865] Sent: humidity=40.1percent +[0866] Sent: humidity=67.37percent +[0867] Sent: humidity=68.53percent +[0868] Sent: humidity=34.31percent +[0869] Sent: humidity=45.04percent +[0870] Sent: humidity=85.54percent +[0871] Sent: humidity=89.9percent +[0872] Sent: humidity=40.12percent +[0873] Sent: humidity=50.89percent +[0874] Sent: humidity=41.78percent +[0875] Sent: humidity=40.06percent +[0876] Sent: humidity=42.78percent +[0877] Sent: humidity=59.14percent +[0878] Sent: humidity=53.31percent +[0879] Sent: humidity=88.91percent +[0880] Sent: humidity=46.85percent +[0881] Sent: humidity=59.53percent +[0882] Sent: humidity=89.6percent +[0883] Sent: humidity=64.65percent +[0884] Sent: humidity=82.58percent +[0885] Sent: humidity=73.1percent +[0886] Sent: humidity=87.68percent +[0887] Sent: humidity=87.25percent +[0888] Sent: humidity=84.73percent +[0889] Sent: humidity=43.15percent +[0890] Sent: humidity=83.82percent +[0891] Sent: humidity=75.84percent +[0892] Sent: humidity=54.12percent +[0893] Sent: humidity=77.85percent +[0894] Sent: humidity=68.39percent +[0895] Sent: humidity=79.66percent +[0896] Sent: humidity=52.73percent +[0897] Sent: humidity=36.22percent +[0898] Sent: humidity=72.53percent +[0899] Sent: humidity=49.0percent +[0900] Sent: humidity=78.46percent +[0901] Sent: humidity=75.01percent +[0902] Sent: humidity=65.55percent +[0903] Sent: humidity=65.89percent +[0904] Sent: humidity=70.46percent +Received stop signal +Sensor node sensor_humidity exited successfully diff --git a/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-pressure.txt b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-pressure.txt new file mode 100644 index 0000000..c9d68d8 --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-pressure.txt @@ -0,0 +1,686 @@ +=== Sensor Node: sensor_pressure === +Type: pressure +Sensor node sensor_pressure started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: pressure=1007.0hPa +[0002] Sent: pressure=1000.25hPa +[0003] Sent: pressure=1005.78hPa +[0004] Sent: pressure=1029.81hPa +[0005] Sent: pressure=1017.97hPa +[0006] Sent: pressure=1014.72hPa +[0007] Sent: pressure=999.87hPa +[0008] Sent: pressure=1020.21hPa +[0009] Sent: pressure=1031.8hPa +[0010] Sent: pressure=996.84hPa +[0011] Sent: pressure=1005.06hPa +[0012] Sent: pressure=1039.23hPa +[0013] Sent: pressure=1046.51hPa +[0014] Sent: pressure=993.91hPa +[0015] Sent: pressure=1030.4hPa +[0016] Sent: pressure=1011.72hPa +[0017] Sent: pressure=1032.08hPa +[0018] Sent: pressure=1037.6hPa +[0019] Sent: pressure=1013.82hPa +[0020] Sent: pressure=989.38hPa +[0021] Sent: pressure=1026.45hPa +[0022] Sent: pressure=1047.74hPa +[0023] Sent: pressure=1048.36hPa +[0024] Sent: pressure=1020.65hPa +[0025] Sent: pressure=990.03hPa +[0026] Sent: pressure=1025.61hPa +[0027] Sent: pressure=989.93hPa +[0028] Sent: pressure=991.72hPa +[0029] Sent: pressure=1018.01hPa +[0030] Sent: pressure=1033.82hPa +[0031] Sent: pressure=991.62hPa +[0032] Sent: pressure=992.29hPa +[0033] Sent: pressure=1030.93hPa +[0034] Sent: pressure=987.65hPa +[0035] Sent: pressure=980.13hPa +[0036] Sent: pressure=995.69hPa +[0037] Sent: pressure=999.28hPa +[0038] Sent: pressure=1002.37hPa +[0039] Sent: pressure=1027.44hPa +[0040] Sent: pressure=1033.76hPa +[0041] Sent: pressure=981.22hPa +[0042] Sent: pressure=1033.34hPa +[0043] Sent: pressure=1044.0hPa +[0044] Sent: pressure=991.36hPa +[0045] Sent: pressure=1048.06hPa +[0046] Sent: pressure=1021.16hPa +[0047] Sent: pressure=1020.12hPa +[0048] Sent: pressure=1032.49hPa +[0049] Sent: pressure=1032.69hPa +[0050] Sent: pressure=987.57hPa +[0051] Sent: pressure=1039.22hPa +[0052] Sent: pressure=993.9hPa +[0053] Sent: pressure=996.56hPa +[0054] Sent: pressure=982.24hPa +[0055] Sent: pressure=981.47hPa +[0056] Sent: pressure=1020.44hPa +[0057] Sent: pressure=985.54hPa +[0058] Sent: pressure=985.45hPa +[0059] Sent: pressure=981.68hPa +[0060] Sent: pressure=982.48hPa +[0061] Sent: pressure=980.89hPa +[0062] Sent: pressure=1005.5hPa +[0063] Sent: pressure=1030.26hPa +[0064] Sent: pressure=1025.52hPa +[0065] Sent: pressure=999.58hPa +[0066] Sent: pressure=1046.09hPa +[0067] Sent: pressure=999.52hPa +[0068] Sent: pressure=1018.82hPa +[0069] Sent: pressure=992.53hPa +[0070] Sent: pressure=1002.36hPa +[0071] Sent: pressure=1037.4hPa +[0072] Sent: pressure=990.19hPa +[0073] Sent: pressure=1002.23hPa +[0074] Sent: pressure=1042.12hPa +[0075] Sent: pressure=1006.5hPa +[0076] Sent: pressure=1043.61hPa +[0077] Sent: pressure=1045.29hPa +[0078] Sent: pressure=1034.11hPa +[0079] Sent: pressure=1006.81hPa +[0080] Sent: pressure=1048.1hPa +[0081] Sent: pressure=1020.56hPa +[0082] Sent: pressure=994.2hPa +[0083] Sent: pressure=1035.04hPa +[0084] Sent: pressure=1039.11hPa +[0085] Sent: pressure=985.35hPa +[0086] Sent: pressure=1049.77hPa +[0087] Sent: pressure=1002.85hPa +[0088] Sent: pressure=1004.7hPa +[0089] Sent: pressure=1014.31hPa +[0090] Sent: pressure=1032.33hPa +[0091] Sent: pressure=1015.32hPa +[0092] Sent: pressure=993.04hPa +[0093] Sent: pressure=1003.39hPa +[0094] Sent: pressure=1041.75hPa +[0095] Sent: pressure=1023.02hPa +[0096] Sent: pressure=1041.92hPa +[0097] Sent: pressure=1015.01hPa +[0098] Sent: pressure=1010.33hPa +[0099] Sent: pressure=1023.6hPa +[0100] Sent: pressure=1049.55hPa +[0101] Sent: pressure=1044.54hPa +[0102] Sent: pressure=1042.05hPa +[0103] Sent: pressure=1037.14hPa +[0104] Sent: pressure=983.07hPa +[0105] Sent: pressure=986.61hPa +[0106] Sent: pressure=1004.36hPa +[0107] Sent: pressure=989.06hPa +[0108] Sent: pressure=1041.39hPa +[0109] Sent: pressure=1038.28hPa +[0110] Sent: pressure=1034.16hPa +[0111] Sent: pressure=1005.91hPa +[0112] Sent: pressure=1015.49hPa +[0113] Sent: pressure=1006.39hPa +[0114] Sent: pressure=1037.53hPa +[0115] Sent: pressure=1040.3hPa +[0116] Sent: pressure=1013.26hPa +[0117] Sent: pressure=991.68hPa +[0118] Sent: pressure=1044.61hPa +[0119] Sent: pressure=1013.8hPa +[0120] Sent: pressure=980.82hPa +[0121] Sent: pressure=1043.23hPa +[0122] Sent: pressure=997.53hPa +[0123] Sent: pressure=1024.37hPa +[0124] Sent: pressure=998.87hPa +[0125] Sent: pressure=990.23hPa +[0126] Sent: pressure=992.89hPa +[0127] Sent: pressure=993.92hPa +[0128] Sent: pressure=1000.5hPa +[0129] Sent: pressure=1018.2hPa +[0130] Sent: pressure=1044.8hPa +[0131] Sent: pressure=1013.67hPa +[0132] Sent: pressure=1011.58hPa +[0133] Sent: pressure=1035.88hPa +[0134] Sent: pressure=1003.16hPa +[0135] Sent: pressure=1021.14hPa +[0136] Sent: pressure=1013.76hPa +[0137] Sent: pressure=1032.52hPa +[0138] Sent: pressure=992.83hPa +[0139] Sent: pressure=986.11hPa +[0140] Sent: pressure=1011.08hPa +[0141] Sent: pressure=1022.43hPa +[0142] Sent: pressure=1027.73hPa +[0143] Sent: pressure=1011.28hPa +[0144] Sent: pressure=980.72hPa +[0145] Sent: pressure=1040.0hPa +[0146] Sent: pressure=1024.46hPa +[0147] Sent: pressure=1034.57hPa +[0148] Sent: pressure=1014.86hPa +[0149] Sent: pressure=1033.59hPa +[0150] Sent: pressure=983.53hPa +[0151] Sent: pressure=1012.26hPa +[0152] Sent: pressure=1025.54hPa +[0153] Sent: pressure=1038.99hPa +[0154] Sent: pressure=1037.09hPa +[0155] Sent: pressure=1021.38hPa +[0156] Sent: pressure=1028.21hPa +[0157] Sent: pressure=1003.0hPa +[0158] Sent: pressure=1040.62hPa +[0159] Sent: pressure=1037.16hPa +[0160] Sent: pressure=985.86hPa +[0161] Sent: pressure=1049.83hPa +[0162] Sent: pressure=1038.77hPa +[0163] Sent: pressure=1027.12hPa +[0164] Sent: pressure=981.98hPa +[0165] Sent: pressure=1014.82hPa +[0166] Sent: pressure=996.88hPa +[0167] Sent: pressure=1046.86hPa +[0168] Sent: pressure=1044.0hPa +[0169] Sent: pressure=990.6hPa +[0170] Sent: pressure=1006.37hPa +[0171] Sent: pressure=1032.88hPa +[0172] Sent: pressure=1005.76hPa +[0173] Sent: pressure=1046.53hPa +[0174] Sent: pressure=1000.93hPa +[0175] Sent: pressure=1024.06hPa +[0176] Sent: pressure=1036.81hPa +[0177] Sent: pressure=1037.97hPa +[0178] Sent: pressure=1036.81hPa +[0179] Sent: pressure=1026.24hPa +[0180] Sent: pressure=1034.32hPa +[0181] Sent: pressure=1002.35hPa +[0182] Sent: pressure=992.12hPa +[0183] Sent: pressure=1034.3hPa +[0184] Sent: pressure=984.2hPa +[0185] Sent: pressure=1001.14hPa +[0186] Sent: pressure=983.48hPa +[0187] Sent: pressure=1012.1hPa +[0188] Sent: pressure=1003.8hPa +[0189] Sent: pressure=1015.97hPa +[0190] Sent: pressure=1000.94hPa +[0191] Sent: pressure=1027.54hPa +[0192] Sent: pressure=1017.63hPa +[0193] Sent: pressure=1032.02hPa +[0194] Sent: pressure=1033.77hPa +[0195] Sent: pressure=1038.73hPa +[0196] Sent: pressure=1045.48hPa +[0197] Sent: pressure=985.95hPa +[0198] Sent: pressure=988.06hPa +[0199] Sent: pressure=1025.2hPa +[0200] Sent: pressure=1019.14hPa +[0201] Sent: pressure=1002.01hPa +[0202] Sent: pressure=1002.69hPa +[0203] Sent: pressure=1040.94hPa +[0204] Sent: pressure=980.17hPa +[0205] Sent: pressure=990.51hPa +[0206] Sent: pressure=995.58hPa +[0207] Sent: pressure=1002.62hPa +[0208] Sent: pressure=1033.84hPa +[0209] Sent: pressure=1033.06hPa +[0210] Sent: pressure=982.55hPa +[0211] Sent: pressure=1039.94hPa +[0212] Sent: pressure=1040.13hPa +[0213] Sent: pressure=983.73hPa +[0214] Sent: pressure=982.18hPa +[0215] Sent: pressure=1027.07hPa +[0216] Sent: pressure=1048.84hPa +[0217] Sent: pressure=1030.84hPa +[0218] Sent: pressure=989.3hPa +[0219] Sent: pressure=1044.0hPa +[0220] Sent: pressure=1027.98hPa +[0221] Sent: pressure=1010.4hPa +[0222] Sent: pressure=1025.32hPa +[0223] Sent: pressure=1032.43hPa +[0224] Sent: pressure=1005.43hPa +[0225] Sent: pressure=1002.02hPa +[0226] Sent: pressure=1014.47hPa +[0227] Sent: pressure=1047.4hPa +[0228] Sent: pressure=993.91hPa +[0229] Sent: pressure=1046.36hPa +[0230] Sent: pressure=1008.1hPa +[0231] Sent: pressure=1036.55hPa +[0232] Sent: pressure=991.13hPa +[0233] Sent: pressure=983.39hPa +[0234] Sent: pressure=995.77hPa +[0235] Sent: pressure=1032.21hPa +[0236] Sent: pressure=1001.33hPa +[0237] Sent: pressure=985.18hPa +[0238] Sent: pressure=1016.93hPa +[0239] Sent: pressure=1001.46hPa +[0240] Sent: pressure=1000.63hPa +[0241] Sent: pressure=1035.28hPa +[0242] Sent: pressure=982.57hPa +[0243] Sent: pressure=982.94hPa +[0244] Sent: pressure=980.44hPa +[0245] Sent: pressure=994.43hPa +[0246] Sent: pressure=1019.11hPa +[0247] Sent: pressure=997.71hPa +[0248] Sent: pressure=1047.99hPa +[0249] Sent: pressure=1049.24hPa +[0250] Sent: pressure=1015.21hPa +[0251] Sent: pressure=1033.13hPa +[0252] Sent: pressure=1021.96hPa +[0253] Sent: pressure=1011.99hPa +[0254] Sent: pressure=1020.46hPa +[0255] Sent: pressure=1028.56hPa +[0256] Sent: pressure=1014.04hPa +[0257] Sent: pressure=995.18hPa +[0258] Sent: pressure=996.22hPa +[0259] Sent: pressure=1030.17hPa +[0260] Sent: pressure=1043.66hPa +[0261] Sent: pressure=1023.32hPa +[0262] Sent: pressure=1022.68hPa +[0263] Sent: pressure=1003.34hPa +[0264] Sent: pressure=997.93hPa +[0265] Sent: pressure=1031.73hPa +[0266] Sent: pressure=1008.91hPa +[0267] Sent: pressure=997.91hPa +[0268] Sent: pressure=984.69hPa +[0269] Sent: pressure=1044.94hPa +[0270] Sent: pressure=1030.64hPa +[0271] Sent: pressure=1024.96hPa +[0272] Sent: pressure=991.94hPa +[0273] Sent: pressure=1015.43hPa +[0274] Sent: pressure=1004.48hPa +[0275] Sent: pressure=1023.43hPa +[0276] Sent: pressure=982.0hPa +[0277] Sent: pressure=1001.38hPa +[0278] Sent: pressure=1049.8hPa +[0279] Sent: pressure=980.27hPa +[0280] Sent: pressure=1023.95hPa +[0281] Sent: pressure=1033.77hPa +[0282] Sent: pressure=1047.28hPa +[0283] Sent: pressure=1040.31hPa +[0284] Sent: pressure=997.55hPa +[0285] Sent: pressure=1023.43hPa +[0286] Sent: pressure=1024.25hPa +[0287] Sent: pressure=1007.35hPa +[0288] Sent: pressure=1032.16hPa +[0289] Sent: pressure=981.02hPa +[0290] Sent: pressure=1019.25hPa +[0291] Sent: pressure=1048.21hPa +[0292] Sent: pressure=1044.4hPa +[0293] Sent: pressure=1042.99hPa +[0294] Sent: pressure=1042.29hPa +[0295] Sent: pressure=980.41hPa +[0296] Sent: pressure=1023.01hPa +[0297] Sent: pressure=1000.33hPa +[0298] Sent: pressure=1006.38hPa +[0299] Sent: pressure=1001.9hPa +[0300] Sent: pressure=994.66hPa +[0301] Sent: pressure=1009.24hPa +[0302] Sent: pressure=1042.67hPa +[0303] Sent: pressure=994.46hPa +[0304] Sent: pressure=1036.04hPa +[0305] Sent: pressure=1039.59hPa +[0306] Sent: pressure=995.36hPa +[0307] Sent: pressure=1012.43hPa +[0308] Sent: pressure=994.17hPa +[0309] Sent: pressure=993.19hPa +[0310] Sent: pressure=986.29hPa +[0311] Sent: pressure=987.47hPa +[0312] Sent: pressure=993.12hPa +[0313] Sent: pressure=1040.98hPa +[0314] Sent: pressure=989.18hPa +[0315] Sent: pressure=992.86hPa +[0316] Sent: pressure=1041.26hPa +[0317] Sent: pressure=987.13hPa +[0318] Sent: pressure=1002.17hPa +[0319] Sent: pressure=1033.44hPa +[0320] Sent: pressure=999.99hPa +[0321] Sent: pressure=1002.21hPa +[0322] Sent: pressure=1000.26hPa +[0323] Sent: pressure=1017.07hPa +[0324] Sent: pressure=1005.87hPa +[0325] Sent: pressure=1047.88hPa +[0326] Sent: pressure=993.78hPa +[0327] Sent: pressure=1022.65hPa +[0328] Sent: pressure=1044.56hPa +[0329] Sent: pressure=1028.78hPa +[0330] Sent: pressure=1030.26hPa +[0331] Sent: pressure=1013.03hPa +[0332] Sent: pressure=982.21hPa +[0333] Sent: pressure=1013.11hPa +[0334] Sent: pressure=1049.68hPa +[0335] Sent: pressure=994.57hPa +[0336] Sent: pressure=1029.13hPa +[0337] Sent: pressure=1026.64hPa +[0338] Sent: pressure=990.64hPa +[0339] Sent: pressure=1038.78hPa +[0340] Sent: pressure=1022.86hPa +[0341] Sent: pressure=1025.86hPa +[0342] Sent: pressure=1015.1hPa +[0343] Sent: pressure=980.82hPa +[0344] Sent: pressure=980.99hPa +[0345] Sent: pressure=1006.27hPa +[0346] Sent: pressure=1000.91hPa +[0347] Sent: pressure=999.73hPa +[0348] Sent: pressure=980.63hPa +[0349] Sent: pressure=1048.63hPa +[0350] Sent: pressure=1006.95hPa +[0351] Sent: pressure=1030.9hPa +[0352] Sent: pressure=1018.4hPa +[0353] Sent: pressure=981.18hPa +[0354] Sent: pressure=982.67hPa +[0355] Sent: pressure=1002.16hPa +[0356] Sent: pressure=986.0hPa +[0357] Sent: pressure=1037.77hPa +[0358] Sent: pressure=1025.05hPa +[0359] Sent: pressure=1012.01hPa +[0360] Sent: pressure=1031.81hPa +[0361] Sent: pressure=987.61hPa +[0362] Sent: pressure=990.6hPa +[0363] Sent: pressure=983.54hPa +[0364] Sent: pressure=1014.4hPa +[0365] Sent: pressure=992.29hPa +[0366] Sent: pressure=1022.88hPa +[0367] Sent: pressure=1045.25hPa +[0368] Sent: pressure=988.82hPa +[0369] Sent: pressure=983.5hPa +[0370] Sent: pressure=1034.82hPa +[0371] Sent: pressure=1018.95hPa +[0372] Sent: pressure=1015.32hPa +[0373] Sent: pressure=1030.12hPa +[0374] Sent: pressure=1018.18hPa +[0375] Sent: pressure=983.49hPa +[0376] Sent: pressure=1045.42hPa +[0377] Sent: pressure=986.32hPa +[0378] Sent: pressure=1030.43hPa +[0379] Sent: pressure=1026.58hPa +[0380] Sent: pressure=993.2hPa +[0381] Sent: pressure=1021.91hPa +[0382] Sent: pressure=981.98hPa +[0383] Sent: pressure=1015.96hPa +[0384] Sent: pressure=1014.36hPa +[0385] Sent: pressure=1013.64hPa +[0386] Sent: pressure=1027.83hPa +[0387] Sent: pressure=983.59hPa +[0388] Sent: pressure=998.18hPa +[0389] Sent: pressure=985.48hPa +[0390] Sent: pressure=1009.55hPa +[0391] Sent: pressure=1016.1hPa +[0392] Sent: pressure=1017.49hPa +[0393] Sent: pressure=1034.74hPa +[0394] Sent: pressure=1046.78hPa +[0395] Sent: pressure=1017.68hPa +[0396] Sent: pressure=1025.55hPa +[0397] Sent: pressure=1002.04hPa +[0398] Sent: pressure=1006.08hPa +[0399] Sent: pressure=1042.95hPa +[0400] Sent: pressure=1043.34hPa +[0401] Sent: pressure=1048.72hPa +[0402] Sent: pressure=1046.48hPa +[0403] Sent: pressure=1032.13hPa +[0404] Sent: pressure=993.01hPa +[0405] Sent: pressure=1022.33hPa +[0406] Sent: pressure=1035.09hPa +[0407] Sent: pressure=1047.87hPa +[0408] Sent: pressure=982.52hPa +[0409] Sent: pressure=993.87hPa +[0410] Sent: pressure=1044.9hPa +[0411] Sent: pressure=1009.21hPa +[0412] Sent: pressure=1041.64hPa +[0413] Sent: pressure=992.65hPa +[0414] Sent: pressure=1043.88hPa +[0415] Sent: pressure=1044.34hPa +[0416] Sent: pressure=997.83hPa +[0417] Sent: pressure=1030.71hPa +[0418] Sent: pressure=989.81hPa +[0419] Sent: pressure=1034.74hPa +[0420] Sent: pressure=1015.52hPa +[0421] Sent: pressure=1039.96hPa +[0422] Sent: pressure=981.15hPa +[0423] Sent: pressure=981.66hPa +[0424] Sent: pressure=1041.43hPa +[0425] Sent: pressure=1040.64hPa +[0426] Sent: pressure=1024.39hPa +[0427] Sent: pressure=996.43hPa +[0428] Sent: pressure=1035.61hPa +[0429] Sent: pressure=988.6hPa +[0430] Sent: pressure=1039.96hPa +[0431] Sent: pressure=1044.07hPa +[0432] Sent: pressure=1020.57hPa +[0433] Sent: pressure=1035.76hPa +[0434] Sent: pressure=1024.35hPa +[0435] Sent: pressure=1025.98hPa +[0436] Sent: pressure=1026.92hPa +[0437] Sent: pressure=981.1hPa +[0438] Sent: pressure=983.61hPa +[0439] Sent: pressure=1046.68hPa +[0440] Sent: pressure=993.59hPa +[0441] Sent: pressure=1009.77hPa +[0442] Sent: pressure=1014.88hPa +[0443] Sent: pressure=1042.92hPa +[0444] Sent: pressure=990.3hPa +[0445] Sent: pressure=1009.75hPa +[0446] Sent: pressure=1006.37hPa +[0447] Sent: pressure=1026.75hPa +[0448] Sent: pressure=1042.96hPa +[0449] Sent: pressure=1032.32hPa +[0450] Sent: pressure=1005.55hPa +[0451] Sent: pressure=1019.46hPa +[0452] Sent: pressure=1002.31hPa +[0453] Sent: pressure=1006.22hPa +[0454] Sent: pressure=980.58hPa +[0455] Sent: pressure=1039.0hPa +[0456] Sent: pressure=983.6hPa +[0457] Sent: pressure=983.31hPa +[0458] Sent: pressure=1000.49hPa +[0459] Sent: pressure=1033.33hPa +[0460] Sent: pressure=1033.89hPa +[0461] Sent: pressure=1048.47hPa +[0462] Sent: pressure=982.61hPa +[0463] Sent: pressure=1036.3hPa +[0464] Sent: pressure=1002.86hPa +[0465] Sent: pressure=1049.24hPa +[0466] Sent: pressure=987.7hPa +[0467] Sent: pressure=1000.94hPa +[0468] Sent: pressure=1043.33hPa +[0469] Sent: pressure=1012.21hPa +[0470] Sent: pressure=1006.77hPa +[0471] Sent: pressure=1001.83hPa +[0472] Sent: pressure=1037.03hPa +[0473] Sent: pressure=1030.77hPa +[0474] Sent: pressure=1019.53hPa +[0475] Sent: pressure=981.25hPa +[0476] Sent: pressure=1006.85hPa +[0477] Sent: pressure=1020.74hPa +[0478] Sent: pressure=980.33hPa +[0479] Sent: pressure=999.51hPa +[0480] Sent: pressure=986.17hPa +[0481] Sent: pressure=1044.16hPa +[0482] Sent: pressure=1041.92hPa +[0483] Sent: pressure=991.38hPa +[0484] Sent: pressure=1042.27hPa +[0485] Sent: pressure=1000.59hPa +[0486] Sent: pressure=1023.15hPa +[0487] Sent: pressure=1049.65hPa +[0488] Sent: pressure=1044.94hPa +[0489] Sent: pressure=994.56hPa +[0490] Sent: pressure=1005.83hPa +[0491] Sent: pressure=1023.76hPa +[0492] Sent: pressure=1018.08hPa +[0493] Sent: pressure=1032.03hPa +[0494] Sent: pressure=1023.34hPa +[0495] Sent: pressure=1039.63hPa +[0496] Sent: pressure=1029.13hPa +[0497] Sent: pressure=1038.6hPa +[0498] Sent: pressure=982.15hPa +[0499] Sent: pressure=1005.44hPa +[0500] Sent: pressure=996.87hPa +[0501] Sent: pressure=1014.43hPa +[0502] Sent: pressure=1023.88hPa +[0503] Sent: pressure=1002.23hPa +[0504] Sent: pressure=1018.67hPa +[0505] Sent: pressure=1034.6hPa +[0506] Sent: pressure=1027.67hPa +[0507] Sent: pressure=1015.58hPa +[0508] Sent: pressure=984.13hPa +[0509] Sent: pressure=999.42hPa +[0510] Sent: pressure=1009.04hPa +[0511] Sent: pressure=1014.25hPa +[0512] Sent: pressure=1003.76hPa +[0513] Sent: pressure=995.08hPa +[0514] Sent: pressure=1023.45hPa +[0515] Sent: pressure=1046.61hPa +[0516] Sent: pressure=1028.98hPa +[0517] Sent: pressure=994.68hPa +[0518] Sent: pressure=1008.93hPa +[0519] Sent: pressure=1022.65hPa +[0520] Sent: pressure=996.77hPa +[0521] Sent: pressure=1034.06hPa +[0522] Sent: pressure=994.21hPa +[0523] Sent: pressure=1028.07hPa +[0524] Sent: pressure=1012.99hPa +[0525] Sent: pressure=987.84hPa +[0526] Sent: pressure=1026.82hPa +[0527] Sent: pressure=1037.51hPa +[0528] Sent: pressure=1000.46hPa +[0529] Sent: pressure=1047.08hPa +[0530] Sent: pressure=1027.0hPa +[0531] Sent: pressure=1038.34hPa +[0532] Sent: pressure=1042.22hPa +[0533] Sent: pressure=1013.37hPa +[0534] Sent: pressure=1038.62hPa +[0535] Sent: pressure=1027.18hPa +[0536] Sent: pressure=1037.93hPa +[0537] Sent: pressure=1041.72hPa +[0538] Sent: pressure=998.02hPa +[0539] Sent: pressure=997.37hPa +[0540] Sent: pressure=1016.35hPa +[0541] Sent: pressure=1034.52hPa +[0542] Sent: pressure=1017.53hPa +[0543] Sent: pressure=1027.0hPa +[0544] Sent: pressure=1040.14hPa +[0545] Sent: pressure=989.59hPa +[0546] Sent: pressure=1045.23hPa +[0547] Sent: pressure=1016.8hPa +[0548] Sent: pressure=1048.2hPa +[0549] Sent: pressure=1011.31hPa +[0550] Sent: pressure=1010.99hPa +[0551] Sent: pressure=987.61hPa +[0552] Sent: pressure=993.95hPa +[0553] Sent: pressure=1018.92hPa +[0554] Sent: pressure=1020.32hPa +[0555] Sent: pressure=987.41hPa +[0556] Sent: pressure=1049.37hPa +[0557] Sent: pressure=1048.94hPa +[0558] Sent: pressure=1018.01hPa +[0559] Sent: pressure=1015.95hPa +[0560] Sent: pressure=1040.83hPa +[0561] Sent: pressure=1004.64hPa +[0562] Sent: pressure=988.62hPa +[0563] Sent: pressure=1023.01hPa +[0564] Sent: pressure=994.43hPa +[0565] Sent: pressure=1042.46hPa +[0566] Sent: pressure=1009.71hPa +[0567] Sent: pressure=1032.55hPa +[0568] Sent: pressure=1017.15hPa +[0569] Sent: pressure=993.16hPa +[0570] Sent: pressure=1039.21hPa +[0571] Sent: pressure=1027.22hPa +[0572] Sent: pressure=1026.25hPa +[0573] Sent: pressure=1009.95hPa +[0574] Sent: pressure=1022.95hPa +[0575] Sent: pressure=983.09hPa +[0576] Sent: pressure=1032.8hPa +[0577] Sent: pressure=1000.46hPa +[0578] Sent: pressure=1025.54hPa +[0579] Sent: pressure=1008.69hPa +[0580] Sent: pressure=989.89hPa +[0581] Sent: pressure=989.0hPa +[0582] Sent: pressure=990.94hPa +[0583] Sent: pressure=987.78hPa +[0584] Sent: pressure=1006.97hPa +[0585] Sent: pressure=985.53hPa +[0586] Sent: pressure=986.69hPa +[0587] Sent: pressure=1005.46hPa +[0588] Sent: pressure=1007.97hPa +[0589] Sent: pressure=997.45hPa +[0590] Sent: pressure=1002.38hPa +[0591] Sent: pressure=983.94hPa +[0592] Sent: pressure=990.75hPa +[0593] Sent: pressure=995.89hPa +[0594] Sent: pressure=980.41hPa +[0595] Sent: pressure=1006.74hPa +[0596] Sent: pressure=983.15hPa +[0597] Sent: pressure=996.43hPa +[0598] Sent: pressure=1024.28hPa +[0599] Sent: pressure=1014.06hPa +[0600] Sent: pressure=1033.99hPa +[0601] Sent: pressure=998.69hPa +[0602] Sent: pressure=1031.69hPa +[0603] Sent: pressure=1002.93hPa +[0604] Sent: pressure=1014.36hPa +[0605] Sent: pressure=1023.24hPa +[0606] Sent: pressure=1041.16hPa +[0607] Sent: pressure=1049.97hPa +[0608] Sent: pressure=1045.52hPa +[0609] Sent: pressure=1001.1hPa +[0610] Sent: pressure=1006.21hPa +[0611] Sent: pressure=993.94hPa +[0612] Sent: pressure=1029.92hPa +[0613] Sent: pressure=1016.04hPa +[0614] Sent: pressure=1005.94hPa +[0615] Sent: pressure=1011.94hPa +[0616] Sent: pressure=1006.79hPa +[0617] Sent: pressure=989.4hPa +[0618] Sent: pressure=1020.28hPa +[0619] Sent: pressure=1019.68hPa +[0620] Sent: pressure=1009.99hPa +[0621] Sent: pressure=1032.45hPa +[0622] Sent: pressure=1021.6hPa +[0623] Sent: pressure=1033.91hPa +[0624] Sent: pressure=1046.15hPa +[0625] Sent: pressure=1009.97hPa +[0626] Sent: pressure=1000.75hPa +[0627] Sent: pressure=994.55hPa +[0628] Sent: pressure=1024.87hPa +[0629] Sent: pressure=1027.91hPa +[0630] Sent: pressure=986.61hPa +[0631] Sent: pressure=985.27hPa +[0632] Sent: pressure=980.69hPa +[0633] Sent: pressure=991.49hPa +[0634] Sent: pressure=991.55hPa +[0635] Sent: pressure=1032.85hPa +[0636] Sent: pressure=988.16hPa +[0637] Sent: pressure=998.15hPa +[0638] Sent: pressure=1016.87hPa +[0639] Sent: pressure=1020.25hPa +[0640] Sent: pressure=1036.08hPa +[0641] Sent: pressure=1048.49hPa +[0642] Sent: pressure=1036.09hPa +[0643] Sent: pressure=1030.85hPa +[0644] Sent: pressure=1020.36hPa +[0645] Sent: pressure=985.02hPa +[0646] Sent: pressure=1010.82hPa +[0647] Sent: pressure=1003.26hPa +[0648] Sent: pressure=1026.95hPa +[0649] Sent: pressure=1011.8hPa +[0650] Sent: pressure=1014.03hPa +[0651] Sent: pressure=1046.99hPa +[0652] Sent: pressure=984.28hPa +[0653] Sent: pressure=998.08hPa +[0654] Sent: pressure=1013.78hPa +[0655] Sent: pressure=999.27hPa +[0656] Sent: pressure=988.65hPa +[0657] Sent: pressure=1048.34hPa +[0658] Sent: pressure=1009.88hPa +[0659] Sent: pressure=1048.01hPa +[0660] Sent: pressure=1006.75hPa +[0661] Sent: pressure=1019.54hPa +[0662] Sent: pressure=990.12hPa +[0663] Sent: pressure=1002.6hPa +[0664] Sent: pressure=988.23hPa +[0665] Sent: pressure=1034.26hPa +[0666] Sent: pressure=1035.42hPa +[0667] Sent: pressure=1016.99hPa +[0668] Sent: pressure=1021.97hPa +[0669] Sent: pressure=1036.0hPa +[0670] Sent: pressure=1010.26hPa +[0671] Sent: pressure=1026.66hPa +[0672] Sent: pressure=1024.67hPa +[0673] Sent: pressure=1041.6hPa +[0674] Sent: pressure=1003.52hPa +[0675] Sent: pressure=983.38hPa +[0676] Sent: pressure=1047.99hPa +[0677] Sent: pressure=1014.25hPa +[0678] Sent: pressure=1007.93hPa +Received stop signal +Sensor node sensor_pressure exited successfully diff --git a/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-temp.txt b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-temp.txt new file mode 100644 index 0000000..5329a3f --- /dev/null +++ b/examples/python-distributed-zenoh/out/019a4674-530e-700b-9ec4-c9541373d545/log_sensor-temp.txt @@ -0,0 +1,1364 @@ +=== Sensor Node: sensor_temp === +Type: temperature +Sensor node sensor_temp started! +Data will be automatically routed via Dora's Zenoh integration +Press Ctrl+C to stop + +[0001] Sent: temperature=33.82celsius +[0002] Sent: temperature=28.38celsius +[0003] Sent: temperature=23.72celsius +[0004] Sent: temperature=24.19celsius +[0005] Sent: temperature=21.7celsius +[0006] Sent: temperature=23.69celsius +[0007] Sent: temperature=17.85celsius +[0008] Sent: temperature=34.14celsius +[0009] Sent: temperature=23.59celsius +[0010] Sent: temperature=15.45celsius +[0011] Sent: temperature=23.53celsius +[0012] Sent: temperature=23.01celsius +[0013] Sent: temperature=30.72celsius +[0014] Sent: temperature=20.35celsius +[0015] Sent: temperature=23.89celsius +[0016] Sent: temperature=27.52celsius +[0017] Sent: temperature=19.89celsius +[0018] Sent: temperature=23.32celsius +[0019] Sent: temperature=31.24celsius +[0020] Sent: temperature=18.25celsius +[0021] Sent: temperature=15.59celsius +[0022] Sent: temperature=28.19celsius +[0023] Sent: temperature=28.92celsius +[0024] Sent: temperature=21.24celsius +[0025] Sent: temperature=18.75celsius +[0026] Sent: temperature=18.26celsius +[0027] Sent: temperature=18.53celsius +[0028] Sent: temperature=17.48celsius +[0029] Sent: temperature=20.36celsius +[0030] Sent: temperature=27.77celsius +[0031] Sent: temperature=27.86celsius +[0032] Sent: temperature=25.09celsius +[0033] Sent: temperature=31.12celsius +[0034] Sent: temperature=18.33celsius +[0035] Sent: temperature=34.16celsius +[0036] Sent: temperature=30.3celsius +[0037] Sent: temperature=30.89celsius +[0038] Sent: temperature=23.69celsius +[0039] Sent: temperature=25.96celsius +[0040] Sent: temperature=16.21celsius +[0041] Sent: temperature=17.97celsius +[0042] Sent: temperature=34.13celsius +[0043] Sent: temperature=15.9celsius +[0044] Sent: temperature=28.68celsius +[0045] Sent: temperature=27.19celsius +[0046] Sent: temperature=22.93celsius +[0047] Sent: temperature=22.97celsius +[0048] Sent: temperature=22.25celsius +[0049] Sent: temperature=23.25celsius +[0050] Sent: temperature=16.31celsius +[0051] Sent: temperature=31.48celsius +[0052] Sent: temperature=15.28celsius +[0053] Sent: temperature=20.31celsius +[0054] Sent: temperature=16.27celsius +[0055] Sent: temperature=34.05celsius +[0056] Sent: temperature=31.59celsius +[0057] Sent: temperature=27.08celsius +[0058] Sent: temperature=19.98celsius +[0059] Sent: temperature=15.73celsius +[0060] Sent: temperature=20.28celsius +[0061] Sent: temperature=23.64celsius +[0062] Sent: temperature=21.11celsius +[0063] Sent: temperature=22.31celsius +[0064] Sent: temperature=18.27celsius +[0065] Sent: temperature=20.43celsius +[0066] Sent: temperature=17.43celsius +[0067] Sent: temperature=28.33celsius +[0068] Sent: temperature=26.9celsius +[0069] Sent: temperature=23.5celsius +[0070] Sent: temperature=15.66celsius +[0071] Sent: temperature=31.75celsius +[0072] Sent: temperature=32.74celsius +[0073] Sent: temperature=17.61celsius +[0074] Sent: temperature=34.53celsius +[0075] Sent: temperature=26.32celsius +[0076] Sent: temperature=18.96celsius +[0077] Sent: temperature=18.36celsius +[0078] Sent: temperature=22.42celsius +[0079] Sent: temperature=20.98celsius +[0080] Sent: temperature=15.92celsius +[0081] Sent: temperature=24.82celsius +[0082] Sent: temperature=28.33celsius +[0083] Sent: temperature=21.64celsius +[0084] Sent: temperature=33.67celsius +[0085] Sent: temperature=21.23celsius +[0086] Sent: temperature=21.86celsius +[0087] Sent: temperature=26.82celsius +[0088] Sent: temperature=20.95celsius +[0089] Sent: temperature=30.42celsius +[0090] Sent: temperature=17.19celsius +[0091] Sent: temperature=34.71celsius +[0092] Sent: temperature=17.4celsius +[0093] Sent: temperature=28.54celsius +[0094] Sent: temperature=21.83celsius +[0095] Sent: temperature=24.89celsius +[0096] Sent: temperature=19.48celsius +[0097] Sent: temperature=26.85celsius +[0098] Sent: temperature=16.61celsius +[0099] Sent: temperature=27.82celsius +[0100] Sent: temperature=20.82celsius +[0101] Sent: temperature=16.44celsius +[0102] Sent: temperature=23.24celsius +[0103] Sent: temperature=34.06celsius +[0104] Sent: temperature=23.46celsius +[0105] Sent: temperature=22.86celsius +[0106] Sent: temperature=27.55celsius +[0107] Sent: temperature=25.54celsius +[0108] Sent: temperature=33.17celsius +[0109] Sent: temperature=25.31celsius +[0110] Sent: temperature=16.16celsius +[0111] Sent: temperature=19.14celsius +[0112] Sent: temperature=27.45celsius +[0113] Sent: temperature=31.38celsius +[0114] Sent: temperature=34.61celsius +[0115] Sent: temperature=26.02celsius +[0116] Sent: temperature=20.54celsius +[0117] Sent: temperature=26.87celsius +[0118] Sent: temperature=23.02celsius +[0119] Sent: temperature=18.24celsius +[0120] Sent: temperature=21.78celsius +[0121] Sent: temperature=15.27celsius +[0122] Sent: temperature=28.98celsius +[0123] Sent: temperature=34.56celsius +[0124] Sent: temperature=25.48celsius +[0125] Sent: temperature=32.93celsius +[0126] Sent: temperature=17.08celsius +[0127] Sent: temperature=21.88celsius +[0128] Sent: temperature=29.23celsius +[0129] Sent: temperature=28.3celsius +[0130] Sent: temperature=34.38celsius +[0131] Sent: temperature=22.73celsius +[0132] Sent: temperature=22.11celsius +[0133] Sent: temperature=34.59celsius +[0134] Sent: temperature=30.06celsius +[0135] Sent: temperature=26.34celsius +[0136] Sent: temperature=28.5celsius +[0137] Sent: temperature=21.66celsius +[0138] Sent: temperature=18.47celsius +[0139] Sent: temperature=26.86celsius +[0140] Sent: temperature=32.88celsius +[0141] Sent: temperature=29.34celsius +[0142] Sent: temperature=15.3celsius +[0143] Sent: temperature=19.98celsius +[0144] Sent: temperature=30.48celsius +[0145] Sent: temperature=26.55celsius +[0146] Sent: temperature=31.23celsius +[0147] Sent: temperature=15.37celsius +[0148] Sent: temperature=27.35celsius +[0149] Sent: temperature=20.79celsius +[0150] Sent: temperature=20.07celsius +[0151] Sent: temperature=32.76celsius +[0152] Sent: temperature=20.28celsius +[0153] Sent: temperature=20.2celsius +[0154] Sent: temperature=22.77celsius +[0155] Sent: temperature=24.3celsius +[0156] Sent: temperature=30.24celsius +[0157] Sent: temperature=29.54celsius +[0158] Sent: temperature=34.59celsius +[0159] Sent: temperature=15.86celsius +[0160] Sent: temperature=25.89celsius +[0161] Sent: temperature=17.42celsius +[0162] Sent: temperature=16.13celsius +[0163] Sent: temperature=28.45celsius +[0164] Sent: temperature=32.41celsius +[0165] Sent: temperature=26.19celsius +[0166] Sent: temperature=16.66celsius +[0167] Sent: temperature=24.27celsius +[0168] Sent: temperature=29.52celsius +[0169] Sent: temperature=31.95celsius +[0170] Sent: temperature=30.48celsius +[0171] Sent: temperature=17.91celsius +[0172] Sent: temperature=19.19celsius +[0173] Sent: temperature=27.29celsius +[0174] Sent: temperature=30.65celsius +[0175] Sent: temperature=25.16celsius +[0176] Sent: temperature=15.94celsius +[0177] Sent: temperature=18.17celsius +[0178] Sent: temperature=33.78celsius +[0179] Sent: temperature=32.77celsius +[0180] Sent: temperature=34.06celsius +[0181] Sent: temperature=31.94celsius +[0182] Sent: temperature=20.52celsius +[0183] Sent: temperature=17.39celsius +[0184] Sent: temperature=25.81celsius +[0185] Sent: temperature=22.08celsius +[0186] Sent: temperature=21.55celsius +[0187] Sent: temperature=18.89celsius +[0188] Sent: temperature=25.38celsius +[0189] Sent: temperature=32.85celsius +[0190] Sent: temperature=31.23celsius +[0191] Sent: temperature=33.19celsius +[0192] Sent: temperature=29.2celsius +[0193] Sent: temperature=27.41celsius +[0194] Sent: temperature=25.2celsius +[0195] Sent: temperature=24.75celsius +[0196] Sent: temperature=28.61celsius +[0197] Sent: temperature=23.94celsius +[0198] Sent: temperature=27.32celsius +[0199] Sent: temperature=28.64celsius +[0200] Sent: temperature=28.2celsius +[0201] Sent: temperature=26.09celsius +[0202] Sent: temperature=29.67celsius +[0203] Sent: temperature=29.57celsius +[0204] Sent: temperature=29.2celsius +[0205] Sent: temperature=34.19celsius +[0206] Sent: temperature=17.1celsius +[0207] Sent: temperature=28.46celsius +[0208] Sent: temperature=18.67celsius +[0209] Sent: temperature=31.6celsius +[0210] Sent: temperature=30.02celsius +[0211] Sent: temperature=22.75celsius +[0212] Sent: temperature=33.79celsius +[0213] Sent: temperature=18.26celsius +[0214] Sent: temperature=22.35celsius +[0215] Sent: temperature=17.08celsius +[0216] Sent: temperature=28.28celsius +[0217] Sent: temperature=31.59celsius +[0218] Sent: temperature=27.44celsius +[0219] Sent: temperature=27.67celsius +[0220] Sent: temperature=33.01celsius +[0221] Sent: temperature=17.93celsius +[0222] Sent: temperature=23.57celsius +[0223] Sent: temperature=22.22celsius +[0224] Sent: temperature=22.87celsius +[0225] Sent: temperature=22.94celsius +[0226] Sent: temperature=33.2celsius +[0227] Sent: temperature=22.64celsius +[0228] Sent: temperature=22.79celsius +[0229] Sent: temperature=20.0celsius +[0230] Sent: temperature=20.72celsius +[0231] Sent: temperature=31.92celsius +[0232] Sent: temperature=29.92celsius +[0233] Sent: temperature=18.25celsius +[0234] Sent: temperature=15.56celsius +[0235] Sent: temperature=15.2celsius +[0236] Sent: temperature=26.22celsius +[0237] Sent: temperature=34.27celsius +[0238] Sent: temperature=34.92celsius +[0239] Sent: temperature=18.17celsius +[0240] Sent: temperature=18.96celsius +[0241] Sent: temperature=15.93celsius +[0242] Sent: temperature=17.21celsius +[0243] Sent: temperature=34.36celsius +[0244] Sent: temperature=32.13celsius +[0245] Sent: temperature=28.27celsius +[0246] Sent: temperature=25.51celsius +[0247] Sent: temperature=26.11celsius +[0248] Sent: temperature=23.4celsius +[0249] Sent: temperature=26.81celsius +[0250] Sent: temperature=34.41celsius +[0251] Sent: temperature=17.47celsius +[0252] Sent: temperature=34.25celsius +[0253] Sent: temperature=17.93celsius +[0254] Sent: temperature=26.51celsius +[0255] Sent: temperature=31.02celsius +[0256] Sent: temperature=29.82celsius +[0257] Sent: temperature=21.96celsius +[0258] Sent: temperature=23.23celsius +[0259] Sent: temperature=17.58celsius +[0260] Sent: temperature=20.42celsius +[0261] Sent: temperature=28.11celsius +[0262] Sent: temperature=20.7celsius +[0263] Sent: temperature=16.72celsius +[0264] Sent: temperature=16.29celsius +[0265] Sent: temperature=32.31celsius +[0266] Sent: temperature=29.59celsius +[0267] Sent: temperature=21.85celsius +[0268] Sent: temperature=22.22celsius +[0269] Sent: temperature=28.55celsius +[0270] Sent: temperature=25.1celsius +[0271] Sent: temperature=27.22celsius +[0272] Sent: temperature=32.58celsius +[0273] Sent: temperature=19.23celsius +[0274] Sent: temperature=34.85celsius +[0275] Sent: temperature=22.69celsius +[0276] Sent: temperature=27.6celsius +[0277] Sent: temperature=17.08celsius +[0278] Sent: temperature=15.13celsius +[0279] Sent: temperature=17.52celsius +[0280] Sent: temperature=28.94celsius +[0281] Sent: temperature=27.34celsius +[0282] Sent: temperature=31.82celsius +[0283] Sent: temperature=18.57celsius +[0284] Sent: temperature=31.97celsius +[0285] Sent: temperature=29.69celsius +[0286] Sent: temperature=23.53celsius +[0287] Sent: temperature=34.15celsius +[0288] Sent: temperature=21.07celsius +[0289] Sent: temperature=32.21celsius +[0290] Sent: temperature=31.38celsius +[0291] Sent: temperature=30.21celsius +[0292] Sent: temperature=30.37celsius +[0293] Sent: temperature=16.6celsius +[0294] Sent: temperature=25.5celsius +[0295] Sent: temperature=15.66celsius +[0296] Sent: temperature=32.42celsius +[0297] Sent: temperature=32.16celsius +[0298] Sent: temperature=15.59celsius +[0299] Sent: temperature=24.72celsius +[0300] Sent: temperature=22.82celsius +[0301] Sent: temperature=29.68celsius +[0302] Sent: temperature=21.06celsius +[0303] Sent: temperature=18.39celsius +[0304] Sent: temperature=30.08celsius +[0305] Sent: temperature=28.62celsius +[0306] Sent: temperature=29.52celsius +[0307] Sent: temperature=32.63celsius +[0308] Sent: temperature=25.59celsius +[0309] Sent: temperature=22.19celsius +[0310] Sent: temperature=17.74celsius +[0311] Sent: temperature=28.7celsius +[0312] Sent: temperature=18.83celsius +[0313] Sent: temperature=33.05celsius +[0314] Sent: temperature=23.07celsius +[0315] Sent: temperature=33.91celsius +[0316] Sent: temperature=29.0celsius +[0317] Sent: temperature=22.19celsius +[0318] Sent: temperature=27.06celsius +[0319] Sent: temperature=25.82celsius +[0320] Sent: temperature=27.11celsius +[0321] Sent: temperature=32.3celsius +[0322] Sent: temperature=31.79celsius +[0323] Sent: temperature=26.5celsius +[0324] Sent: temperature=33.99celsius +[0325] Sent: temperature=19.31celsius +[0326] Sent: temperature=18.06celsius +[0327] Sent: temperature=30.54celsius +[0328] Sent: temperature=16.84celsius +[0329] Sent: temperature=15.79celsius +[0330] Sent: temperature=16.52celsius +[0331] Sent: temperature=22.83celsius +[0332] Sent: temperature=15.89celsius +[0333] Sent: temperature=19.31celsius +[0334] Sent: temperature=21.11celsius +[0335] Sent: temperature=22.61celsius +[0336] Sent: temperature=18.89celsius +[0337] Sent: temperature=30.87celsius +[0338] Sent: temperature=21.18celsius +[0339] Sent: temperature=21.47celsius +[0340] Sent: temperature=31.55celsius +[0341] Sent: temperature=28.36celsius +[0342] Sent: temperature=32.72celsius +[0343] Sent: temperature=29.27celsius +[0344] Sent: temperature=17.5celsius +[0345] Sent: temperature=18.68celsius +[0346] Sent: temperature=26.19celsius +[0347] Sent: temperature=27.24celsius +[0348] Sent: temperature=32.34celsius +[0349] Sent: temperature=30.13celsius +[0350] Sent: temperature=25.54celsius +[0351] Sent: temperature=19.09celsius +[0352] Sent: temperature=24.89celsius +[0353] Sent: temperature=33.5celsius +[0354] Sent: temperature=26.61celsius +[0355] Sent: temperature=18.46celsius +[0356] Sent: temperature=28.98celsius +[0357] Sent: temperature=25.11celsius +[0358] Sent: temperature=29.19celsius +[0359] Sent: temperature=26.09celsius +[0360] Sent: temperature=25.64celsius +[0361] Sent: temperature=28.24celsius +[0362] Sent: temperature=31.55celsius +[0363] Sent: temperature=32.42celsius +[0364] Sent: temperature=30.67celsius +[0365] Sent: temperature=21.12celsius +[0366] Sent: temperature=15.86celsius +[0367] Sent: temperature=19.55celsius +[0368] Sent: temperature=34.54celsius +[0369] Sent: temperature=31.79celsius +[0370] Sent: temperature=22.59celsius +[0371] Sent: temperature=33.73celsius +[0372] Sent: temperature=19.07celsius +[0373] Sent: temperature=33.59celsius +[0374] Sent: temperature=23.26celsius +[0375] Sent: temperature=16.83celsius +[0376] Sent: temperature=22.65celsius +[0377] Sent: temperature=18.21celsius +[0378] Sent: temperature=25.98celsius +[0379] Sent: temperature=17.36celsius +[0380] Sent: temperature=28.72celsius +[0381] Sent: temperature=24.56celsius +[0382] Sent: temperature=30.51celsius +[0383] Sent: temperature=23.3celsius +[0384] Sent: temperature=15.46celsius +[0385] Sent: temperature=19.32celsius +[0386] Sent: temperature=27.08celsius +[0387] Sent: temperature=27.82celsius +[0388] Sent: temperature=21.6celsius +[0389] Sent: temperature=27.66celsius +[0390] Sent: temperature=28.39celsius +[0391] Sent: temperature=31.13celsius +[0392] Sent: temperature=32.98celsius +[0393] Sent: temperature=24.07celsius +[0394] Sent: temperature=22.43celsius +[0395] Sent: temperature=16.15celsius +[0396] Sent: temperature=17.57celsius +[0397] Sent: temperature=32.74celsius +[0398] Sent: temperature=28.49celsius +[0399] Sent: temperature=28.1celsius +[0400] Sent: temperature=16.32celsius +[0401] Sent: temperature=26.2celsius +[0402] Sent: temperature=16.0celsius +[0403] Sent: temperature=19.74celsius +[0404] Sent: temperature=23.16celsius +[0405] Sent: temperature=27.98celsius +[0406] Sent: temperature=16.09celsius +[0407] Sent: temperature=29.94celsius +[0408] Sent: temperature=28.51celsius +[0409] Sent: temperature=25.35celsius +[0410] Sent: temperature=34.39celsius +[0411] Sent: temperature=26.12celsius +[0412] Sent: temperature=34.35celsius +[0413] Sent: temperature=15.79celsius +[0414] Sent: temperature=19.1celsius +[0415] Sent: temperature=29.55celsius +[0416] Sent: temperature=19.86celsius +[0417] Sent: temperature=16.19celsius +[0418] Sent: temperature=24.14celsius +[0419] Sent: temperature=16.05celsius +[0420] Sent: temperature=16.09celsius +[0421] Sent: temperature=27.4celsius +[0422] Sent: temperature=23.4celsius +[0423] Sent: temperature=28.18celsius +[0424] Sent: temperature=20.78celsius +[0425] Sent: temperature=22.35celsius +[0426] Sent: temperature=16.97celsius +[0427] Sent: temperature=20.88celsius +[0428] Sent: temperature=19.46celsius +[0429] Sent: temperature=19.99celsius +[0430] Sent: temperature=21.95celsius +[0431] Sent: temperature=31.38celsius +[0432] Sent: temperature=27.42celsius +[0433] Sent: temperature=23.38celsius +[0434] Sent: temperature=31.9celsius +[0435] Sent: temperature=30.61celsius +[0436] Sent: temperature=26.81celsius +[0437] Sent: temperature=25.32celsius +[0438] Sent: temperature=16.11celsius +[0439] Sent: temperature=32.66celsius +[0440] Sent: temperature=25.17celsius +[0441] Sent: temperature=19.88celsius +[0442] Sent: temperature=26.35celsius +[0443] Sent: temperature=30.89celsius +[0444] Sent: temperature=33.41celsius +[0445] Sent: temperature=29.15celsius +[0446] Sent: temperature=29.02celsius +[0447] Sent: temperature=25.39celsius +[0448] Sent: temperature=21.18celsius +[0449] Sent: temperature=15.08celsius +[0450] Sent: temperature=15.3celsius +[0451] Sent: temperature=32.84celsius +[0452] Sent: temperature=30.89celsius +[0453] Sent: temperature=20.13celsius +[0454] Sent: temperature=32.64celsius +[0455] Sent: temperature=28.15celsius +[0456] Sent: temperature=27.37celsius +[0457] Sent: temperature=32.67celsius +[0458] Sent: temperature=21.39celsius +[0459] Sent: temperature=32.33celsius +[0460] Sent: temperature=26.74celsius +[0461] Sent: temperature=30.85celsius +[0462] Sent: temperature=21.16celsius +[0463] Sent: temperature=23.5celsius +[0464] Sent: temperature=26.34celsius +[0465] Sent: temperature=28.31celsius +[0466] Sent: temperature=24.72celsius +[0467] Sent: temperature=27.27celsius +[0468] Sent: temperature=27.2celsius +[0469] Sent: temperature=27.19celsius +[0470] Sent: temperature=26.45celsius +[0471] Sent: temperature=21.67celsius +[0472] Sent: temperature=31.48celsius +[0473] Sent: temperature=20.17celsius +[0474] Sent: temperature=31.94celsius +[0475] Sent: temperature=17.97celsius +[0476] Sent: temperature=31.17celsius +[0477] Sent: temperature=23.68celsius +[0478] Sent: temperature=26.93celsius +[0479] Sent: temperature=23.07celsius +[0480] Sent: temperature=22.16celsius +[0481] Sent: temperature=29.54celsius +[0482] Sent: temperature=23.1celsius +[0483] Sent: temperature=15.8celsius +[0484] Sent: temperature=25.21celsius +[0485] Sent: temperature=21.09celsius +[0486] Sent: temperature=18.87celsius +[0487] Sent: temperature=30.51celsius +[0488] Sent: temperature=29.05celsius +[0489] Sent: temperature=31.35celsius +[0490] Sent: temperature=16.62celsius +[0491] Sent: temperature=35.0celsius +[0492] Sent: temperature=22.23celsius +[0493] Sent: temperature=26.02celsius +[0494] Sent: temperature=16.83celsius +[0495] Sent: temperature=26.89celsius +[0496] Sent: temperature=28.26celsius +[0497] Sent: temperature=29.32celsius +[0498] Sent: temperature=21.59celsius +[0499] Sent: temperature=21.74celsius +[0500] Sent: temperature=31.43celsius +[0501] Sent: temperature=19.48celsius +[0502] Sent: temperature=27.79celsius +[0503] Sent: temperature=17.28celsius +[0504] Sent: temperature=23.58celsius +[0505] Sent: temperature=24.67celsius +[0506] Sent: temperature=33.26celsius +[0507] Sent: temperature=31.94celsius +[0508] Sent: temperature=23.53celsius +[0509] Sent: temperature=17.52celsius +[0510] Sent: temperature=18.06celsius +[0511] Sent: temperature=29.06celsius +[0512] Sent: temperature=18.89celsius +[0513] Sent: temperature=33.5celsius +[0514] Sent: temperature=27.1celsius +[0515] Sent: temperature=29.87celsius +[0516] Sent: temperature=18.6celsius +[0517] Sent: temperature=29.9celsius +[0518] Sent: temperature=26.67celsius +[0519] Sent: temperature=15.27celsius +[0520] Sent: temperature=30.53celsius +[0521] Sent: temperature=31.01celsius +[0522] Sent: temperature=27.81celsius +[0523] Sent: temperature=25.99celsius +[0524] Sent: temperature=22.47celsius +[0525] Sent: temperature=32.54celsius +[0526] Sent: temperature=21.77celsius +[0527] Sent: temperature=26.23celsius +[0528] Sent: temperature=21.09celsius +[0529] Sent: temperature=29.35celsius +[0530] Sent: temperature=30.64celsius +[0531] Sent: temperature=24.97celsius +[0532] Sent: temperature=15.65celsius +[0533] Sent: temperature=34.39celsius +[0534] Sent: temperature=16.49celsius +[0535] Sent: temperature=22.02celsius +[0536] Sent: temperature=32.81celsius +[0537] Sent: temperature=31.78celsius +[0538] Sent: temperature=24.98celsius +[0539] Sent: temperature=26.18celsius +[0540] Sent: temperature=26.65celsius +[0541] Sent: temperature=20.62celsius +[0542] Sent: temperature=25.05celsius +[0543] Sent: temperature=26.09celsius +[0544] Sent: temperature=23.71celsius +[0545] Sent: temperature=31.34celsius +[0546] Sent: temperature=15.31celsius +[0547] Sent: temperature=23.49celsius +[0548] Sent: temperature=20.51celsius +[0549] Sent: temperature=29.32celsius +[0550] Sent: temperature=30.77celsius +[0551] Sent: temperature=33.66celsius +[0552] Sent: temperature=19.34celsius +[0553] Sent: temperature=16.99celsius +[0554] Sent: temperature=24.29celsius +[0555] Sent: temperature=15.75celsius +[0556] Sent: temperature=19.93celsius +[0557] Sent: temperature=18.54celsius +[0558] Sent: temperature=24.6celsius +[0559] Sent: temperature=26.14celsius +[0560] Sent: temperature=16.02celsius +[0561] Sent: temperature=19.06celsius +[0562] Sent: temperature=32.94celsius +[0563] Sent: temperature=31.68celsius +[0564] Sent: temperature=33.07celsius +[0565] Sent: temperature=20.64celsius +[0566] Sent: temperature=23.18celsius +[0567] Sent: temperature=23.0celsius +[0568] Sent: temperature=25.07celsius +[0569] Sent: temperature=31.01celsius +[0570] Sent: temperature=29.55celsius +[0571] Sent: temperature=23.67celsius +[0572] Sent: temperature=21.24celsius +[0573] Sent: temperature=16.03celsius +[0574] Sent: temperature=25.25celsius +[0575] Sent: temperature=17.75celsius +[0576] Sent: temperature=15.86celsius +[0577] Sent: temperature=18.03celsius +[0578] Sent: temperature=15.02celsius +[0579] Sent: temperature=26.76celsius +[0580] Sent: temperature=31.94celsius +[0581] Sent: temperature=21.42celsius +[0582] Sent: temperature=32.88celsius +[0583] Sent: temperature=28.77celsius +[0584] Sent: temperature=26.23celsius +[0585] Sent: temperature=16.32celsius +[0586] Sent: temperature=23.61celsius +[0587] Sent: temperature=28.48celsius +[0588] Sent: temperature=31.63celsius +[0589] Sent: temperature=27.05celsius +[0590] Sent: temperature=19.56celsius +[0591] Sent: temperature=16.66celsius +[0592] Sent: temperature=28.69celsius +[0593] Sent: temperature=32.45celsius +[0594] Sent: temperature=15.03celsius +[0595] Sent: temperature=17.04celsius +[0596] Sent: temperature=34.85celsius +[0597] Sent: temperature=29.26celsius +[0598] Sent: temperature=30.02celsius +[0599] Sent: temperature=34.55celsius +[0600] Sent: temperature=22.25celsius +[0601] Sent: temperature=28.41celsius +[0602] Sent: temperature=23.17celsius +[0603] Sent: temperature=22.7celsius +[0604] Sent: temperature=16.63celsius +[0605] Sent: temperature=28.18celsius +[0606] Sent: temperature=19.85celsius +[0607] Sent: temperature=25.62celsius +[0608] Sent: temperature=16.59celsius +[0609] Sent: temperature=16.76celsius +[0610] Sent: temperature=20.22celsius +[0611] Sent: temperature=32.34celsius +[0612] Sent: temperature=31.02celsius +[0613] Sent: temperature=29.98celsius +[0614] Sent: temperature=32.49celsius +[0615] Sent: temperature=31.77celsius +[0616] Sent: temperature=28.48celsius +[0617] Sent: temperature=17.61celsius +[0618] Sent: temperature=28.99celsius +[0619] Sent: temperature=17.81celsius +[0620] Sent: temperature=33.78celsius +[0621] Sent: temperature=16.71celsius +[0622] Sent: temperature=22.31celsius +[0623] Sent: temperature=21.04celsius +[0624] Sent: temperature=21.29celsius +[0625] Sent: temperature=18.09celsius +[0626] Sent: temperature=20.2celsius +[0627] Sent: temperature=26.85celsius +[0628] Sent: temperature=23.41celsius +[0629] Sent: temperature=25.81celsius +[0630] Sent: temperature=33.29celsius +[0631] Sent: temperature=16.66celsius +[0632] Sent: temperature=25.77celsius +[0633] Sent: temperature=15.17celsius +[0634] Sent: temperature=19.13celsius +[0635] Sent: temperature=33.29celsius +[0636] Sent: temperature=23.75celsius +[0637] Sent: temperature=19.01celsius +[0638] Sent: temperature=29.95celsius +[0639] Sent: temperature=24.44celsius +[0640] Sent: temperature=33.76celsius +[0641] Sent: temperature=28.75celsius +[0642] Sent: temperature=25.46celsius +[0643] Sent: temperature=17.71celsius +[0644] Sent: temperature=32.92celsius +[0645] Sent: temperature=17.07celsius +[0646] Sent: temperature=33.16celsius +[0647] Sent: temperature=23.19celsius +[0648] Sent: temperature=16.62celsius +[0649] Sent: temperature=29.1celsius +[0650] Sent: temperature=22.73celsius +[0651] Sent: temperature=18.96celsius +[0652] Sent: temperature=34.14celsius +[0653] Sent: temperature=18.6celsius +[0654] Sent: temperature=29.07celsius +[0655] Sent: temperature=26.73celsius +[0656] Sent: temperature=16.83celsius +[0657] Sent: temperature=26.57celsius +[0658] Sent: temperature=30.54celsius +[0659] Sent: temperature=23.89celsius +[0660] Sent: temperature=32.22celsius +[0661] Sent: temperature=23.92celsius +[0662] Sent: temperature=15.02celsius +[0663] Sent: temperature=28.36celsius +[0664] Sent: temperature=23.67celsius +[0665] Sent: temperature=19.23celsius +[0666] Sent: temperature=23.16celsius +[0667] Sent: temperature=31.96celsius +[0668] Sent: temperature=25.99celsius +[0669] Sent: temperature=22.16celsius +[0670] Sent: temperature=19.99celsius +[0671] Sent: temperature=21.03celsius +[0672] Sent: temperature=24.71celsius +[0673] Sent: temperature=15.98celsius +[0674] Sent: temperature=22.92celsius +[0675] Sent: temperature=34.21celsius +[0676] Sent: temperature=31.74celsius +[0677] Sent: temperature=17.6celsius +[0678] Sent: temperature=30.01celsius +[0679] Sent: temperature=30.35celsius +[0680] Sent: temperature=27.72celsius +[0681] Sent: temperature=28.71celsius +[0682] Sent: temperature=28.19celsius +[0683] Sent: temperature=26.75celsius +[0684] Sent: temperature=24.73celsius +[0685] Sent: temperature=22.71celsius +[0686] Sent: temperature=29.73celsius +[0687] Sent: temperature=28.14celsius +[0688] Sent: temperature=28.84celsius +[0689] Sent: temperature=34.77celsius +[0690] Sent: temperature=32.54celsius +[0691] Sent: temperature=15.12celsius +[0692] Sent: temperature=20.17celsius +[0693] Sent: temperature=17.91celsius +[0694] Sent: temperature=25.52celsius +[0695] Sent: temperature=18.75celsius +[0696] Sent: temperature=20.29celsius +[0697] Sent: temperature=19.65celsius +[0698] Sent: temperature=27.14celsius +[0699] Sent: temperature=33.21celsius +[0700] Sent: temperature=15.33celsius +[0701] Sent: temperature=30.79celsius +[0702] Sent: temperature=26.54celsius +[0703] Sent: temperature=28.22celsius +[0704] Sent: temperature=18.28celsius +[0705] Sent: temperature=25.8celsius +[0706] Sent: temperature=29.78celsius +[0707] Sent: temperature=25.3celsius +[0708] Sent: temperature=27.96celsius +[0709] Sent: temperature=25.79celsius +[0710] Sent: temperature=34.1celsius +[0711] Sent: temperature=18.11celsius +[0712] Sent: temperature=32.75celsius +[0713] Sent: temperature=30.1celsius +[0714] Sent: temperature=23.98celsius +[0715] Sent: temperature=29.11celsius +[0716] Sent: temperature=29.97celsius +[0717] Sent: temperature=22.97celsius +[0718] Sent: temperature=24.56celsius +[0719] Sent: temperature=24.8celsius +[0720] Sent: temperature=19.69celsius +[0721] Sent: temperature=28.28celsius +[0722] Sent: temperature=23.16celsius +[0723] Sent: temperature=27.03celsius +[0724] Sent: temperature=25.57celsius +[0725] Sent: temperature=29.32celsius +[0726] Sent: temperature=20.32celsius +[0727] Sent: temperature=28.12celsius +[0728] Sent: temperature=21.41celsius +[0729] Sent: temperature=23.79celsius +[0730] Sent: temperature=24.93celsius +[0731] Sent: temperature=27.37celsius +[0732] Sent: temperature=20.18celsius +[0733] Sent: temperature=16.95celsius +[0734] Sent: temperature=15.37celsius +[0735] Sent: temperature=23.23celsius +[0736] Sent: temperature=33.93celsius +[0737] Sent: temperature=24.37celsius +[0738] Sent: temperature=27.55celsius +[0739] Sent: temperature=30.32celsius +[0740] Sent: temperature=33.0celsius +[0741] Sent: temperature=33.04celsius +[0742] Sent: temperature=19.56celsius +[0743] Sent: temperature=26.46celsius +[0744] Sent: temperature=24.6celsius +[0745] Sent: temperature=28.83celsius +[0746] Sent: temperature=30.82celsius +[0747] Sent: temperature=24.6celsius +[0748] Sent: temperature=24.34celsius +[0749] Sent: temperature=22.48celsius +[0750] Sent: temperature=31.06celsius +[0751] Sent: temperature=24.38celsius +[0752] Sent: temperature=30.74celsius +[0753] Sent: temperature=30.39celsius +[0754] Sent: temperature=25.38celsius +[0755] Sent: temperature=32.47celsius +[0756] Sent: temperature=23.24celsius +[0757] Sent: temperature=23.5celsius +[0758] Sent: temperature=31.04celsius +[0759] Sent: temperature=21.07celsius +[0760] Sent: temperature=16.11celsius +[0761] Sent: temperature=24.09celsius +[0762] Sent: temperature=33.31celsius +[0763] Sent: temperature=31.8celsius +[0764] Sent: temperature=34.38celsius +[0765] Sent: temperature=21.09celsius +[0766] Sent: temperature=33.9celsius +[0767] Sent: temperature=15.3celsius +[0768] Sent: temperature=29.0celsius +[0769] Sent: temperature=31.02celsius +[0770] Sent: temperature=30.82celsius +[0771] Sent: temperature=30.73celsius +[0772] Sent: temperature=34.98celsius +[0773] Sent: temperature=31.86celsius +[0774] Sent: temperature=20.38celsius +[0775] Sent: temperature=17.15celsius +[0776] Sent: temperature=26.26celsius +[0777] Sent: temperature=33.11celsius +[0778] Sent: temperature=18.82celsius +[0779] Sent: temperature=17.59celsius +[0780] Sent: temperature=22.86celsius +[0781] Sent: temperature=29.17celsius +[0782] Sent: temperature=22.97celsius +[0783] Sent: temperature=26.17celsius +[0784] Sent: temperature=19.83celsius +[0785] Sent: temperature=22.06celsius +[0786] Sent: temperature=27.52celsius +[0787] Sent: temperature=25.51celsius +[0788] Sent: temperature=30.64celsius +[0789] Sent: temperature=18.28celsius +[0790] Sent: temperature=17.72celsius +[0791] Sent: temperature=22.45celsius +[0792] Sent: temperature=30.58celsius +[0793] Sent: temperature=27.47celsius +[0794] Sent: temperature=28.3celsius +[0795] Sent: temperature=32.37celsius +[0796] Sent: temperature=25.57celsius +[0797] Sent: temperature=34.81celsius +[0798] Sent: temperature=28.3celsius +[0799] Sent: temperature=26.3celsius +[0800] Sent: temperature=32.32celsius +[0801] Sent: temperature=15.18celsius +[0802] Sent: temperature=27.2celsius +[0803] Sent: temperature=20.59celsius +[0804] Sent: temperature=27.09celsius +[0805] Sent: temperature=27.35celsius +[0806] Sent: temperature=16.18celsius +[0807] Sent: temperature=27.92celsius +[0808] Sent: temperature=18.84celsius +[0809] Sent: temperature=26.38celsius +[0810] Sent: temperature=17.91celsius +[0811] Sent: temperature=27.12celsius +[0812] Sent: temperature=33.46celsius +[0813] Sent: temperature=29.89celsius +[0814] Sent: temperature=24.56celsius +[0815] Sent: temperature=31.44celsius +[0816] Sent: temperature=30.64celsius +[0817] Sent: temperature=22.36celsius +[0818] Sent: temperature=23.75celsius +[0819] Sent: temperature=21.8celsius +[0820] Sent: temperature=23.49celsius +[0821] Sent: temperature=31.4celsius +[0822] Sent: temperature=22.33celsius +[0823] Sent: temperature=33.96celsius +[0824] Sent: temperature=19.92celsius +[0825] Sent: temperature=33.44celsius +[0826] Sent: temperature=32.4celsius +[0827] Sent: temperature=28.76celsius +[0828] Sent: temperature=22.39celsius +[0829] Sent: temperature=23.38celsius +[0830] Sent: temperature=24.97celsius +[0831] Sent: temperature=16.17celsius +[0832] Sent: temperature=28.63celsius +[0833] Sent: temperature=25.4celsius +[0834] Sent: temperature=18.24celsius +[0835] Sent: temperature=19.11celsius +[0836] Sent: temperature=26.12celsius +[0837] Sent: temperature=25.18celsius +[0838] Sent: temperature=31.39celsius +[0839] Sent: temperature=17.95celsius +[0840] Sent: temperature=22.08celsius +[0841] Sent: temperature=32.64celsius +[0842] Sent: temperature=22.29celsius +[0843] Sent: temperature=31.9celsius +[0844] Sent: temperature=18.55celsius +[0845] Sent: temperature=27.21celsius +[0846] Sent: temperature=21.65celsius +[0847] Sent: temperature=25.66celsius +[0848] Sent: temperature=16.61celsius +[0849] Sent: temperature=25.37celsius +[0850] Sent: temperature=19.1celsius +[0851] Sent: temperature=25.0celsius +[0852] Sent: temperature=20.21celsius +[0853] Sent: temperature=20.91celsius +[0854] Sent: temperature=20.01celsius +[0855] Sent: temperature=17.6celsius +[0856] Sent: temperature=18.85celsius +[0857] Sent: temperature=25.08celsius +[0858] Sent: temperature=18.04celsius +[0859] Sent: temperature=23.19celsius +[0860] Sent: temperature=32.87celsius +[0861] Sent: temperature=26.97celsius +[0862] Sent: temperature=29.93celsius +[0863] Sent: temperature=25.06celsius +[0864] Sent: temperature=23.75celsius +[0865] Sent: temperature=33.08celsius +[0866] Sent: temperature=27.3celsius +[0867] Sent: temperature=21.17celsius +[0868] Sent: temperature=20.44celsius +[0869] Sent: temperature=32.3celsius +[0870] Sent: temperature=16.96celsius +[0871] Sent: temperature=29.61celsius +[0872] Sent: temperature=24.25celsius +[0873] Sent: temperature=18.3celsius +[0874] Sent: temperature=17.15celsius +[0875] Sent: temperature=25.5celsius +[0876] Sent: temperature=18.46celsius +[0877] Sent: temperature=15.87celsius +[0878] Sent: temperature=23.6celsius +[0879] Sent: temperature=20.93celsius +[0880] Sent: temperature=28.76celsius +[0881] Sent: temperature=29.41celsius +[0882] Sent: temperature=21.06celsius +[0883] Sent: temperature=22.85celsius +[0884] Sent: temperature=28.39celsius +[0885] Sent: temperature=21.68celsius +[0886] Sent: temperature=19.74celsius +[0887] Sent: temperature=21.6celsius +[0888] Sent: temperature=15.23celsius +[0889] Sent: temperature=21.56celsius +[0890] Sent: temperature=20.25celsius +[0891] Sent: temperature=29.44celsius +[0892] Sent: temperature=32.57celsius +[0893] Sent: temperature=23.4celsius +[0894] Sent: temperature=17.5celsius +[0895] Sent: temperature=16.94celsius +[0896] Sent: temperature=16.31celsius +[0897] Sent: temperature=18.56celsius +[0898] Sent: temperature=19.98celsius +[0899] Sent: temperature=22.2celsius +[0900] Sent: temperature=25.74celsius +[0901] Sent: temperature=18.31celsius +[0902] Sent: temperature=26.38celsius +[0903] Sent: temperature=17.25celsius +[0904] Sent: temperature=26.44celsius +[0905] Sent: temperature=34.98celsius +[0906] Sent: temperature=34.48celsius +[0907] Sent: temperature=30.82celsius +[0908] Sent: temperature=22.82celsius +[0909] Sent: temperature=20.48celsius +[0910] Sent: temperature=21.22celsius +[0911] Sent: temperature=17.53celsius +[0912] Sent: temperature=19.85celsius +[0913] Sent: temperature=25.78celsius +[0914] Sent: temperature=20.75celsius +[0915] Sent: temperature=18.95celsius +[0916] Sent: temperature=23.33celsius +[0917] Sent: temperature=29.16celsius +[0918] Sent: temperature=26.58celsius +[0919] Sent: temperature=29.13celsius +[0920] Sent: temperature=33.67celsius +[0921] Sent: temperature=22.02celsius +[0922] Sent: temperature=17.65celsius +[0923] Sent: temperature=26.16celsius +[0924] Sent: temperature=29.47celsius +[0925] Sent: temperature=28.8celsius +[0926] Sent: temperature=21.89celsius +[0927] Sent: temperature=16.1celsius +[0928] Sent: temperature=29.7celsius +[0929] Sent: temperature=17.02celsius +[0930] Sent: temperature=31.59celsius +[0931] Sent: temperature=33.65celsius +[0932] Sent: temperature=22.59celsius +[0933] Sent: temperature=22.81celsius +[0934] Sent: temperature=25.02celsius +[0935] Sent: temperature=19.92celsius +[0936] Sent: temperature=25.88celsius +[0937] Sent: temperature=18.56celsius +[0938] Sent: temperature=18.31celsius +[0939] Sent: temperature=34.46celsius +[0940] Sent: temperature=20.47celsius +[0941] Sent: temperature=28.52celsius +[0942] Sent: temperature=32.33celsius +[0943] Sent: temperature=34.18celsius +[0944] Sent: temperature=16.96celsius +[0945] Sent: temperature=31.31celsius +[0946] Sent: temperature=28.94celsius +[0947] Sent: temperature=22.32celsius +[0948] Sent: temperature=16.59celsius +[0949] Sent: temperature=25.33celsius +[0950] Sent: temperature=20.43celsius +[0951] Sent: temperature=18.39celsius +[0952] Sent: temperature=32.02celsius +[0953] Sent: temperature=29.2celsius +[0954] Sent: temperature=34.66celsius +[0955] Sent: temperature=16.75celsius +[0956] Sent: temperature=24.62celsius +[0957] Sent: temperature=34.36celsius +[0958] Sent: temperature=30.16celsius +[0959] Sent: temperature=29.59celsius +[0960] Sent: temperature=30.39celsius +[0961] Sent: temperature=29.04celsius +[0962] Sent: temperature=24.68celsius +[0963] Sent: temperature=20.06celsius +[0964] Sent: temperature=26.5celsius +[0965] Sent: temperature=22.25celsius +[0966] Sent: temperature=21.39celsius +[0967] Sent: temperature=22.75celsius +[0968] Sent: temperature=25.16celsius +[0969] Sent: temperature=26.48celsius +[0970] Sent: temperature=17.37celsius +[0971] Sent: temperature=25.65celsius +[0972] Sent: temperature=29.99celsius +[0973] Sent: temperature=24.54celsius +[0974] Sent: temperature=23.32celsius +[0975] Sent: temperature=31.43celsius +[0976] Sent: temperature=21.61celsius +[0977] Sent: temperature=27.65celsius +[0978] Sent: temperature=28.8celsius +[0979] Sent: temperature=28.98celsius +[0980] Sent: temperature=19.99celsius +[0981] Sent: temperature=29.72celsius +[0982] Sent: temperature=28.73celsius +[0983] Sent: temperature=22.97celsius +[0984] Sent: temperature=19.97celsius +[0985] Sent: temperature=20.66celsius +[0986] Sent: temperature=25.27celsius +[0987] Sent: temperature=26.66celsius +[0988] Sent: temperature=23.62celsius +[0989] Sent: temperature=30.2celsius +[0990] Sent: temperature=20.03celsius +[0991] Sent: temperature=32.64celsius +[0992] Sent: temperature=34.18celsius +[0993] Sent: temperature=32.01celsius +[0994] Sent: temperature=28.86celsius +[0995] Sent: temperature=29.77celsius +[0996] Sent: temperature=32.21celsius +[0997] Sent: temperature=28.59celsius +[0998] Sent: temperature=26.79celsius +[0999] Sent: temperature=24.62celsius +[1000] Sent: temperature=34.86celsius +[1001] Sent: temperature=31.98celsius +[1002] Sent: temperature=31.17celsius +[1003] Sent: temperature=32.45celsius +[1004] Sent: temperature=24.64celsius +[1005] Sent: temperature=23.02celsius +[1006] Sent: temperature=30.62celsius +[1007] Sent: temperature=26.48celsius +[1008] Sent: temperature=33.88celsius +[1009] Sent: temperature=22.85celsius +[1010] Sent: temperature=22.4celsius +[1011] Sent: temperature=21.01celsius +[1012] Sent: temperature=15.72celsius +[1013] Sent: temperature=30.64celsius +[1014] Sent: temperature=21.23celsius +[1015] Sent: temperature=28.72celsius +[1016] Sent: temperature=28.57celsius +[1017] Sent: temperature=21.13celsius +[1018] Sent: temperature=20.89celsius +[1019] Sent: temperature=20.12celsius +[1020] Sent: temperature=22.63celsius +[1021] Sent: temperature=22.62celsius +[1022] Sent: temperature=15.91celsius +[1023] Sent: temperature=15.25celsius +[1024] Sent: temperature=30.53celsius +[1025] Sent: temperature=16.65celsius +[1026] Sent: temperature=22.48celsius +[1027] Sent: temperature=27.75celsius +[1028] Sent: temperature=22.35celsius +[1029] Sent: temperature=32.1celsius +[1030] Sent: temperature=24.6celsius +[1031] Sent: temperature=31.97celsius +[1032] Sent: temperature=33.45celsius +[1033] Sent: temperature=23.1celsius +[1034] Sent: temperature=29.51celsius +[1035] Sent: temperature=18.04celsius +[1036] Sent: temperature=16.39celsius +[1037] Sent: temperature=18.1celsius +[1038] Sent: temperature=26.36celsius +[1039] Sent: temperature=16.73celsius +[1040] Sent: temperature=33.32celsius +[1041] Sent: temperature=18.45celsius +[1042] Sent: temperature=29.51celsius +[1043] Sent: temperature=25.69celsius +[1044] Sent: temperature=22.16celsius +[1045] Sent: temperature=21.15celsius +[1046] Sent: temperature=19.19celsius +[1047] Sent: temperature=23.37celsius +[1048] Sent: temperature=17.82celsius +[1049] Sent: temperature=27.92celsius +[1050] Sent: temperature=20.33celsius +[1051] Sent: temperature=18.38celsius +[1052] Sent: temperature=25.07celsius +[1053] Sent: temperature=24.08celsius +[1054] Sent: temperature=25.24celsius +[1055] Sent: temperature=16.05celsius +[1056] Sent: temperature=29.77celsius +[1057] Sent: temperature=16.05celsius +[1058] Sent: temperature=19.76celsius +[1059] Sent: temperature=24.09celsius +[1060] Sent: temperature=16.47celsius +[1061] Sent: temperature=20.03celsius +[1062] Sent: temperature=23.24celsius +[1063] Sent: temperature=24.48celsius +[1064] Sent: temperature=22.65celsius +[1065] Sent: temperature=31.09celsius +[1066] Sent: temperature=28.36celsius +[1067] Sent: temperature=33.17celsius +[1068] Sent: temperature=23.21celsius +[1069] Sent: temperature=19.42celsius +[1070] Sent: temperature=18.43celsius +[1071] Sent: temperature=18.13celsius +[1072] Sent: temperature=34.13celsius +[1073] Sent: temperature=16.43celsius +[1074] Sent: temperature=17.14celsius +[1075] Sent: temperature=31.7celsius +[1076] Sent: temperature=33.68celsius +[1077] Sent: temperature=27.29celsius +[1078] Sent: temperature=30.21celsius +[1079] Sent: temperature=32.8celsius +[1080] Sent: temperature=22.06celsius +[1081] Sent: temperature=25.29celsius +[1082] Sent: temperature=34.87celsius +[1083] Sent: temperature=23.98celsius +[1084] Sent: temperature=16.99celsius +[1085] Sent: temperature=31.91celsius +[1086] Sent: temperature=32.16celsius +[1087] Sent: temperature=30.14celsius +[1088] Sent: temperature=32.9celsius +[1089] Sent: temperature=22.07celsius +[1090] Sent: temperature=25.96celsius +[1091] Sent: temperature=27.13celsius +[1092] Sent: temperature=19.45celsius +[1093] Sent: temperature=33.81celsius +[1094] Sent: temperature=15.01celsius +[1095] Sent: temperature=33.64celsius +[1096] Sent: temperature=18.92celsius +[1097] Sent: temperature=25.51celsius +[1098] Sent: temperature=29.27celsius +[1099] Sent: temperature=30.96celsius +[1100] Sent: temperature=31.25celsius +[1101] Sent: temperature=23.03celsius +[1102] Sent: temperature=22.82celsius +[1103] Sent: temperature=29.75celsius +[1104] Sent: temperature=33.37celsius +[1105] Sent: temperature=30.16celsius +[1106] Sent: temperature=22.54celsius +[1107] Sent: temperature=32.34celsius +[1108] Sent: temperature=28.48celsius +[1109] Sent: temperature=15.08celsius +[1110] Sent: temperature=17.58celsius +[1111] Sent: temperature=18.21celsius +[1112] Sent: temperature=23.17celsius +[1113] Sent: temperature=19.47celsius +[1114] Sent: temperature=20.0celsius +[1115] Sent: temperature=25.3celsius +[1116] Sent: temperature=15.66celsius +[1117] Sent: temperature=31.55celsius +[1118] Sent: temperature=20.38celsius +[1119] Sent: temperature=16.11celsius +[1120] Sent: temperature=20.6celsius +[1121] Sent: temperature=29.86celsius +[1122] Sent: temperature=30.05celsius +[1123] Sent: temperature=19.4celsius +[1124] Sent: temperature=17.44celsius +[1125] Sent: temperature=18.65celsius +[1126] Sent: temperature=28.44celsius +[1127] Sent: temperature=17.09celsius +[1128] Sent: temperature=33.61celsius +[1129] Sent: temperature=22.01celsius +[1130] Sent: temperature=34.77celsius +[1131] Sent: temperature=17.07celsius +[1132] Sent: temperature=20.57celsius +[1133] Sent: temperature=15.45celsius +[1134] Sent: temperature=19.55celsius +[1135] Sent: temperature=15.17celsius +[1136] Sent: temperature=28.49celsius +[1137] Sent: temperature=16.81celsius +[1138] Sent: temperature=27.95celsius +[1139] Sent: temperature=21.75celsius +[1140] Sent: temperature=24.15celsius +[1141] Sent: temperature=15.31celsius +[1142] Sent: temperature=26.79celsius +[1143] Sent: temperature=32.4celsius +[1144] Sent: temperature=33.32celsius +[1145] Sent: temperature=19.24celsius +[1146] Sent: temperature=26.47celsius +[1147] Sent: temperature=31.88celsius +[1148] Sent: temperature=28.78celsius +[1149] Sent: temperature=18.13celsius +[1150] Sent: temperature=24.43celsius +[1151] Sent: temperature=23.82celsius +[1152] Sent: temperature=27.86celsius +[1153] Sent: temperature=18.88celsius +[1154] Sent: temperature=32.69celsius +[1155] Sent: temperature=30.98celsius +[1156] Sent: temperature=33.78celsius +[1157] Sent: temperature=23.45celsius +[1158] Sent: temperature=17.25celsius +[1159] Sent: temperature=17.23celsius +[1160] Sent: temperature=34.11celsius +[1161] Sent: temperature=24.99celsius +[1162] Sent: temperature=28.05celsius +[1163] Sent: temperature=31.88celsius +[1164] Sent: temperature=17.89celsius +[1165] Sent: temperature=32.47celsius +[1166] Sent: temperature=20.93celsius +[1167] Sent: temperature=16.42celsius +[1168] Sent: temperature=31.83celsius +[1169] Sent: temperature=23.39celsius +[1170] Sent: temperature=25.57celsius +[1171] Sent: temperature=30.06celsius +[1172] Sent: temperature=15.62celsius +[1173] Sent: temperature=32.89celsius +[1174] Sent: temperature=28.15celsius +[1175] Sent: temperature=24.96celsius +[1176] Sent: temperature=34.78celsius +[1177] Sent: temperature=28.37celsius +[1178] Sent: temperature=29.1celsius +[1179] Sent: temperature=28.35celsius +[1180] Sent: temperature=26.24celsius +[1181] Sent: temperature=16.59celsius +[1182] Sent: temperature=25.02celsius +[1183] Sent: temperature=28.96celsius +[1184] Sent: temperature=32.79celsius +[1185] Sent: temperature=28.37celsius +[1186] Sent: temperature=23.68celsius +[1187] Sent: temperature=16.91celsius +[1188] Sent: temperature=26.2celsius +[1189] Sent: temperature=33.57celsius +[1190] Sent: temperature=27.86celsius +[1191] Sent: temperature=23.46celsius +[1192] Sent: temperature=26.29celsius +[1193] Sent: temperature=28.17celsius +[1194] Sent: temperature=33.83celsius +[1195] Sent: temperature=18.06celsius +[1196] Sent: temperature=18.04celsius +[1197] Sent: temperature=21.61celsius +[1198] Sent: temperature=32.43celsius +[1199] Sent: temperature=21.51celsius +[1200] Sent: temperature=24.44celsius +[1201] Sent: temperature=29.57celsius +[1202] Sent: temperature=15.83celsius +[1203] Sent: temperature=28.9celsius +[1204] Sent: temperature=27.48celsius +[1205] Sent: temperature=28.6celsius +[1206] Sent: temperature=29.79celsius +[1207] Sent: temperature=25.81celsius +[1208] Sent: temperature=32.95celsius +[1209] Sent: temperature=24.54celsius +[1210] Sent: temperature=18.37celsius +[1211] Sent: temperature=34.49celsius +[1212] Sent: temperature=20.73celsius +[1213] Sent: temperature=34.35celsius +[1214] Sent: temperature=23.59celsius +[1215] Sent: temperature=24.73celsius +[1216] Sent: temperature=19.02celsius +[1217] Sent: temperature=33.34celsius +[1218] Sent: temperature=16.96celsius +[1219] Sent: temperature=22.94celsius +[1220] Sent: temperature=17.42celsius +[1221] Sent: temperature=25.78celsius +[1222] Sent: temperature=15.77celsius +[1223] Sent: temperature=33.94celsius +[1224] Sent: temperature=29.75celsius +[1225] Sent: temperature=30.19celsius +[1226] Sent: temperature=33.57celsius +[1227] Sent: temperature=21.26celsius +[1228] Sent: temperature=21.97celsius +[1229] Sent: temperature=27.73celsius +[1230] Sent: temperature=30.74celsius +[1231] Sent: temperature=15.48celsius +[1232] Sent: temperature=27.12celsius +[1233] Sent: temperature=21.92celsius +[1234] Sent: temperature=22.32celsius +[1235] Sent: temperature=26.94celsius +[1236] Sent: temperature=20.95celsius +[1237] Sent: temperature=28.78celsius +[1238] Sent: temperature=22.29celsius +[1239] Sent: temperature=17.54celsius +[1240] Sent: temperature=32.65celsius +[1241] Sent: temperature=24.31celsius +[1242] Sent: temperature=28.52celsius +[1243] Sent: temperature=25.98celsius +[1244] Sent: temperature=34.75celsius +[1245] Sent: temperature=34.16celsius +[1246] Sent: temperature=32.35celsius +[1247] Sent: temperature=29.55celsius +[1248] Sent: temperature=27.6celsius +[1249] Sent: temperature=20.52celsius +[1250] Sent: temperature=34.5celsius +[1251] Sent: temperature=20.34celsius +[1252] Sent: temperature=32.4celsius +[1253] Sent: temperature=18.27celsius +[1254] Sent: temperature=30.76celsius +[1255] Sent: temperature=20.39celsius +[1256] Sent: temperature=16.29celsius +[1257] Sent: temperature=27.19celsius +[1258] Sent: temperature=30.07celsius +[1259] Sent: temperature=31.23celsius +[1260] Sent: temperature=28.6celsius +[1261] Sent: temperature=26.81celsius +[1262] Sent: temperature=34.37celsius +[1263] Sent: temperature=34.12celsius +[1264] Sent: temperature=18.46celsius +[1265] Sent: temperature=23.36celsius +[1266] Sent: temperature=20.79celsius +[1267] Sent: temperature=27.68celsius +[1268] Sent: temperature=15.14celsius +[1269] Sent: temperature=28.69celsius +[1270] Sent: temperature=27.98celsius +[1271] Sent: temperature=22.0celsius +[1272] Sent: temperature=27.99celsius +[1273] Sent: temperature=24.51celsius +[1274] Sent: temperature=17.84celsius +[1275] Sent: temperature=27.51celsius +[1276] Sent: temperature=33.57celsius +[1277] Sent: temperature=26.54celsius +[1278] Sent: temperature=33.66celsius +[1279] Sent: temperature=31.33celsius +[1280] Sent: temperature=28.49celsius +[1281] Sent: temperature=34.14celsius +[1282] Sent: temperature=27.12celsius +[1283] Sent: temperature=30.1celsius +[1284] Sent: temperature=17.67celsius +[1285] Sent: temperature=20.33celsius +[1286] Sent: temperature=34.58celsius +[1287] Sent: temperature=19.42celsius +[1288] Sent: temperature=18.68celsius +[1289] Sent: temperature=26.25celsius +[1290] Sent: temperature=16.41celsius +[1291] Sent: temperature=26.68celsius +[1292] Sent: temperature=27.46celsius +[1293] Sent: temperature=18.39celsius +[1294] Sent: temperature=17.81celsius +[1295] Sent: temperature=23.48celsius +[1296] Sent: temperature=29.69celsius +[1297] Sent: temperature=25.21celsius +[1298] Sent: temperature=19.02celsius +[1299] Sent: temperature=19.96celsius +[1300] Sent: temperature=34.51celsius +[1301] Sent: temperature=26.43celsius +[1302] Sent: temperature=34.87celsius +[1303] Sent: temperature=17.95celsius +[1304] Sent: temperature=18.03celsius +[1305] Sent: temperature=25.17celsius +[1306] Sent: temperature=29.8celsius +[1307] Sent: temperature=22.6celsius +[1308] Sent: temperature=24.45celsius +[1309] Sent: temperature=23.21celsius +[1310] Sent: temperature=27.88celsius +[1311] Sent: temperature=20.93celsius +[1312] Sent: temperature=25.96celsius +[1313] Sent: temperature=26.9celsius +[1314] Sent: temperature=15.15celsius +[1315] Sent: temperature=27.28celsius +[1316] Sent: temperature=30.28celsius +[1317] Sent: temperature=34.87celsius +[1318] Sent: temperature=30.74celsius +[1319] Sent: temperature=25.09celsius +[1320] Sent: temperature=30.5celsius +[1321] Sent: temperature=24.28celsius +[1322] Sent: temperature=21.39celsius +[1323] Sent: temperature=26.83celsius +[1324] Sent: temperature=25.95celsius +[1325] Sent: temperature=15.27celsius +[1326] Sent: temperature=18.04celsius +[1327] Sent: temperature=29.87celsius +[1328] Sent: temperature=34.32celsius +[1329] Sent: temperature=26.58celsius +[1330] Sent: temperature=27.54celsius +[1331] Sent: temperature=21.73celsius +[1332] Sent: temperature=15.54celsius +[1333] Sent: temperature=22.92celsius +[1334] Sent: temperature=20.99celsius +[1335] Sent: temperature=28.89celsius +[1336] Sent: temperature=32.93celsius +[1337] Sent: temperature=33.79celsius +[1338] Sent: temperature=29.33celsius +[1339] Sent: temperature=18.95celsius +[1340] Sent: temperature=24.42celsius +[1341] Sent: temperature=28.59celsius +[1342] Sent: temperature=21.64celsius +[1343] Sent: temperature=22.12celsius +[1344] Sent: temperature=24.75celsius +[1345] Sent: temperature=18.81celsius +[1346] Sent: temperature=15.57celsius +[1347] Sent: temperature=20.97celsius +[1348] Sent: temperature=16.43celsius +[1349] Sent: temperature=33.73celsius +[1350] Sent: temperature=25.46celsius +[1351] Sent: temperature=27.36celsius +[1352] Sent: temperature=22.94celsius +[1353] Sent: temperature=31.02celsius +[1354] Sent: temperature=20.83celsius +[1355] Sent: temperature=32.31celsius +[1356] Sent: temperature=15.31celsius +Received stop signal +Sensor node sensor_temp exited successfully diff --git a/examples/python-distributed-zenoh/out/dora-coordinator.txt b/examples/python-distributed-zenoh/out/dora-coordinator.txt new file mode 100644 index 0000000..def92b0 --- /dev/null +++ b/examples/python-distributed-zenoh/out/dora-coordinator.txt @@ -0,0 +1,93 @@ +2025-11-02T19:56:09.907494Z WARN dora_coordinator: failed to send heartbeat message to daemon at `edge1-bd92c9f5-5546-49aa-804d-3b411bfc8fdc` + +Caused by: + 0: failed to send heartbeat message to daemon + 1: Broken pipe (os error 32) + +Location: + /Users/runner/work/dora/dora/binaries/coordinator/src/lib.rs:980:10 +2025-11-02T19:56:09.907845Z ERROR dora_coordinator: Disconnecting daemons that failed watchdog: {DaemonId { machine_id: Some("edge1"), uuid: bd92c9f5-5546-49aa-804d-3b411bfc8fdc }} +2025-11-02T19:56:51.908387Z WARN dora_coordinator: failed to send heartbeat message to daemon at `edge1-4f0fad8b-9ae4-4aa9-ba07-38d1fa992f32` + +Caused by: + 0: failed to send heartbeat message to daemon + 1: Broken pipe (os error 32) + +Location: + /Users/runner/work/dora/dora/binaries/coordinator/src/lib.rs:980:10 +2025-11-02T19:56:51.908841Z ERROR dora_coordinator: Disconnecting daemons that failed watchdog: {DaemonId { machine_id: Some("edge1"), uuid: 4f0fad8b-9ae4-4aa9-ba07-38d1fa992f32 }} +2025-11-02T19:57:10.103022Z INFO dora_coordinator: received ctrlc signal +2025-11-02T19:57:10.103154Z INFO dora_coordinator: Destroying coordinator after receiving Ctrl-C signal +2025-11-02T19:57:10.103887Z INFO dora_coordinator: successfully destroyed daemon `edge2-a83e8621-1d09-4e35-a5d0-fff1eaa158a6` +2025-11-02T19:57:10.104029Z INFO dora_coordinator: successfully destroyed daemon `cloud-6ac743d1-56d8-4db9-a59f-953f703eebcd` +2025-11-02T19:57:10.104099Z INFO dora_coordinator: successfully destroyed daemon `edge3-aaec46ba-4e18-4d42-9951-93963358f18b` +2025-11-02T19:57:10.104254Z INFO dora_coordinator: Daemon `edge2-a83e8621-1d09-4e35-a5d0-fff1eaa158a6` exited +2025-11-02T19:57:10.104292Z INFO dora_coordinator: Daemon `cloud-6ac743d1-56d8-4db9-a59f-953f703eebcd` exited +2025-11-02T19:57:10.104390Z INFO dora_coordinator: Daemon `edge3-aaec46ba-4e18-4d42-9951-93963358f18b` exited +2025-11-02T19:57:10.105488Z INFO dora_coordinator: stopped +2025-11-02T19:57:37.692435Z INFO dora_coordinator: received ctrlc signal +2025-11-02T19:57:37.692585Z INFO dora_coordinator: Destroying coordinator after receiving Ctrl-C signal +2025-11-02T20:03:38.592417Z INFO dora_coordinator: received ctrlc signal +2025-11-02T20:03:38.592717Z INFO dora_coordinator: Destroying coordinator after receiving Ctrl-C signal +2025-11-02T20:04:09.567990Z INFO build_dataflow{build_id=BuildId(019a462b-88de-78df-b280-122fbf3704f5) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a462b-88de-78df-b280-122fbf3704f5)` +2025-11-02T20:04:09.568114Z INFO dora_coordinator: dataflow build finished: `BuildId(019a462b-88de-78df-b280-122fbf3704f5)` +2025-11-02T20:04:10.612961Z INFO spawn_dataflow{build_id=Some(BuildId(019a462b-88de-78df-b280-122fbf3704f5)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: None }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a462b-8cee-7944-92bb-46e59b543a16` +2025-11-02T20:04:10.613125Z INFO dora_coordinator: removed machine id: edge3-df867eef-2c5d-4918-9b23-063225bea531 from dataflow: 019a462b-8cee-7944-92bb-46e59b543a16 +2025-11-02T20:04:10.613165Z INFO dora_coordinator: removed machine id: cloud-c716f892-1e2e-4c4d-8144-4185cdfb8f14 from dataflow: 019a462b-8cee-7944-92bb-46e59b543a16 +2025-11-02T20:04:10.613258Z INFO dora_coordinator: removed machine id: edge2-c584499a-2cd4-4fa9-8912-36ebb522d108 from dataflow: 019a462b-8cee-7944-92bb-46e59b543a16 +2025-11-02T20:04:10.613318Z WARN dora_coordinator: error while spawning dataflow `019a462b-8cee-7944-92bb-46e59b543a16` +2025-11-02T20:04:10.613343Z WARN dora_coordinator: error while spawning dataflow `019a462b-8cee-7944-92bb-46e59b543a16` +2025-11-02T20:04:10.613387Z WARN dora_coordinator: error while spawning dataflow `019a462b-8cee-7944-92bb-46e59b543a16` +2025-11-02T20:04:10.613758Z INFO dora_coordinator: removed machine id: edge1-85660abf-3d8e-412c-8537-3c3786a128d8 from dataflow: 019a462b-8cee-7944-92bb-46e59b543a16 +2025-11-02T20:04:10.613810Z WARN dora_coordinator: received DataflowSpawnResult, but no matching dataflow in `running_dataflows` map +2025-11-02T20:09:38.998033Z INFO build_dataflow{build_id=BuildId(019a4630-8fb3-74e5-a43e-692e989445f0) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a4630-8fb3-74e5-a43e-692e989445f0)` +2025-11-02T20:09:38.998270Z INFO dora_coordinator: dataflow build finished: `BuildId(019a4630-8fb3-74e5-a43e-692e989445f0)` +2025-11-02T20:09:40.044611Z INFO spawn_dataflow{build_id=Some(BuildId(019a4630-8fb3-74e5-a43e-692e989445f0)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a4630-93c9-7be6-945b-90626adbabf3` +2025-11-02T20:09:40.045570Z INFO dora_coordinator: successfully spawned dataflow `019a4630-93c9-7be6-945b-90626adbabf3` +2025-11-02T20:09:40.728740Z INFO dora_coordinator: removed machine id: edge1-f776fb29-1eab-44d7-aeb7-cabd96ad341a from dataflow: 019a4630-93c9-7be6-945b-90626adbabf3 +2025-11-02T20:09:40.740560Z INFO dora_coordinator: removed machine id: edge3-fb189463-167e-483c-895e-386e3df124ab from dataflow: 019a4630-93c9-7be6-945b-90626adbabf3 +2025-11-02T20:09:40.746434Z INFO dora_coordinator: removed machine id: cloud-4a8f0835-82b1-4ae8-bd81-8f6f6dce4fe6 from dataflow: 019a4630-93c9-7be6-945b-90626adbabf3 +2025-11-02T20:09:40.751562Z INFO dora_coordinator: removed machine id: edge2-20b51e3b-da39-4f3c-951f-cc82f48ab2cd from dataflow: 019a4630-93c9-7be6-945b-90626adbabf3 +2025-11-02T20:27:01.219475Z INFO build_dataflow{build_id=BuildId(019a4640-76e1-7ed8-adf6-d41cc60b8456) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a4640-76e1-7ed8-adf6-d41cc60b8456)` +2025-11-02T20:27:01.219627Z INFO dora_coordinator: dataflow build finished: `BuildId(019a4640-76e1-7ed8-adf6-d41cc60b8456)` +2025-11-02T20:27:02.268246Z INFO spawn_dataflow{build_id=Some(BuildId(019a4640-76e1-7ed8-adf6-d41cc60b8456)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a4640-7af8-7f2c-98b1-1e2b13497de7` +2025-11-02T20:27:02.269330Z INFO dora_coordinator: successfully spawned dataflow `019a4640-7af8-7f2c-98b1-1e2b13497de7` +2025-11-02T20:27:02.536546Z INFO dora_coordinator: removed machine id: edge3-7ab88426-bb5a-4799-840c-95b6ef3b8742 from dataflow: 019a4640-7af8-7f2c-98b1-1e2b13497de7 +2025-11-02T20:27:02.546297Z INFO dora_coordinator: removed machine id: cloud-c1fc39c6-8dd3-4a9e-b7ce-dbd566f9b8b5 from dataflow: 019a4640-7af8-7f2c-98b1-1e2b13497de7 +2025-11-02T20:27:02.550538Z INFO dora_coordinator: removed machine id: edge1-7fd45f6d-c8d2-4841-9e08-ab5ae2f9285f from dataflow: 019a4640-7af8-7f2c-98b1-1e2b13497de7 +2025-11-02T20:27:02.554673Z INFO dora_coordinator: removed machine id: edge2-e111305d-7c28-4801-8260-a5b044339e06 from dataflow: 019a4640-7af8-7f2c-98b1-1e2b13497de7 +2025-11-02T20:38:37.947087Z INFO build_dataflow{build_id=BuildId(019a464b-1878-7725-a6cd-db679ae463d4) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a464b-1878-7725-a6cd-db679ae463d4)` +2025-11-02T20:38:37.947269Z INFO dora_coordinator: dataflow build finished: `BuildId(019a464b-1878-7725-a6cd-db679ae463d4)` +2025-11-02T20:38:38.998350Z INFO spawn_dataflow{build_id=Some(BuildId(019a464b-1878-7725-a6cd-db679ae463d4)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_temp temperature"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-humidity"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_humidity humidity"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("sensor-pressure"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("sensor_node.py sensor_pressure pressure"), build: None, send_stdout_as: None, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, outputs: {DataId("data")} }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, env: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }), operators: None, custom: None, operator: None, path: Some("python3"), git: None, branch: None, tag: None, rev: None, args: Some("cloud_node.py"), build: None, send_stdout_as: None, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, outputs: {} }], debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a464b-1c92-7740-b473-191578abab02` +2025-11-02T20:38:39.001265Z INFO dora_coordinator: successfully spawned dataflow `019a464b-1c92-7740-b473-191578abab02` +2025-11-02T20:38:39.287191Z INFO dora_coordinator: removed machine id: cloud-57b985a6-0968-4978-8b52-66a2eaf5c4d9 from dataflow: 019a464b-1c92-7740-b473-191578abab02 +2025-11-02T20:38:39.292470Z INFO dora_coordinator: removed machine id: edge3-9fb6fbed-fcc8-4484-9f6d-9bf6f300d4cd from dataflow: 019a464b-1c92-7740-b473-191578abab02 +2025-11-02T20:38:39.298530Z INFO dora_coordinator: removed machine id: edge2-bc010e48-199e-4716-8dc0-dd9bdd10e0e8 from dataflow: 019a464b-1c92-7740-b473-191578abab02 +2025-11-02T20:38:39.308597Z INFO dora_coordinator: removed machine id: edge1-68ae13bf-cf69-4323-9c78-2346920bc478 from dataflow: 019a464b-1c92-7740-b473-191578abab02 +2025-11-02T20:57:00.188299Z INFO build_dataflow{build_id=BuildId(019a465b-ea19-79bd-84bf-868c17e60953) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_temp temperature"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-humidity"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_humidity humidity"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-pressure"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_pressure pressure"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, path: Some("python3"), args: Some("cloud_node.py"), env: None, operators: None, operator: None, custom: None, outputs: {}, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }], communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a465b-ea19-79bd-84bf-868c17e60953)` +2025-11-02T20:57:00.188483Z INFO dora_coordinator: dataflow build finished: `BuildId(019a465b-ea19-79bd-84bf-868c17e60953)` +2025-11-02T20:57:01.233545Z INFO spawn_dataflow{build_id=Some(BuildId(019a465b-ea19-79bd-84bf-868c17e60953)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_temp temperature"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-humidity"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_humidity humidity"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-pressure"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_pressure pressure"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, path: Some("python3"), args: Some("cloud_node.py"), env: None, operators: None, operator: None, custom: None, outputs: {}, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }], communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a465b-ee2e-7e87-b4dc-00c9b449194b` +2025-11-02T20:57:01.234935Z INFO dora_coordinator: successfully spawned dataflow `019a465b-ee2e-7e87-b4dc-00c9b449194b` +2025-11-02T20:57:01.643524Z INFO dora_coordinator: removed machine id: cloud-a4dbe888-6650-428d-98e9-0b5c6a47f199 from dataflow: 019a465b-ee2e-7e87-b4dc-00c9b449194b +2025-11-02T20:57:14.469831Z INFO dora_coordinator: received ctrlc signal +2025-11-02T20:57:14.470162Z INFO dora_coordinator: Destroying coordinator after receiving Ctrl-C signal +2025-11-02T20:57:14.476048Z INFO dora_coordinator: successfully send stop dataflow `019a465b-ee2e-7e87-b4dc-00c9b449194b` to all daemons +2025-11-02T20:57:14.484616Z INFO dora_coordinator: successfully destroyed daemon `edge2-2723f0b1-6923-4330-8d67-cab219700dae` +2025-11-02T20:57:14.488605Z INFO dora_coordinator: successfully destroyed daemon `edge3-cb671e76-7cec-459e-bc8c-6e3a25bda05e` +2025-11-02T20:57:14.488639Z INFO dora_coordinator: successfully destroyed daemon `edge1-68f64580-28d5-4da5-9bf9-cc2bdc06febe` +2025-11-02T21:23:38.867438Z INFO build_dataflow{build_id=BuildId(019a4674-4ef0-76df-9dad-302ae438ae9e) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_temp temperature"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-humidity"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_humidity humidity"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-pressure"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_pressure pressure"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, path: Some("python3"), args: Some("cloud_node.py"), env: None, operators: None, operator: None, custom: None, outputs: {}, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }], communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, debug: Debug { publish_all_messages_to_zenoh: false } } git_sources={} prev_git_sources={} local_working_dir=None uv=false}: dora_coordinator: successfully triggered dataflow build `BuildId(019a4674-4ef0-76df-9dad-302ae438ae9e)` +2025-11-02T21:23:38.867708Z INFO dora_coordinator: dataflow build finished: `BuildId(019a4674-4ef0-76df-9dad-302ae438ae9e)` +2025-11-02T21:23:39.921865Z INFO spawn_dataflow{build_id=Some(BuildId(019a4674-4ef0-76df-9dad-302ae438ae9e)) session_id=SessionId(019a461e-3774-7f0d-aae9-45c28f41f7d3) dataflow=Descriptor { nodes: [Node { id: NodeId("sensor-temp"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_temp temperature"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge1"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-humidity"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_humidity humidity"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 1.5s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge2"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("sensor-pressure"), name: None, description: None, path: Some("python3"), args: Some("sensor_node.py sensor_pressure pressure"), env: None, operators: None, operator: None, custom: None, outputs: {DataId("data")}, inputs: {DataId("tick"): Input { mapping: Timer { interval: 2s }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("edge3"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }, Node { id: NodeId("cloud-aggregator"), name: None, description: None, path: Some("python3"), args: Some("cloud_node.py"), env: None, operators: None, operator: None, custom: None, outputs: {}, inputs: {DataId("humidity_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-humidity"), output: DataId("data") }), queue_size: None }, DataId("pressure_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-pressure"), output: DataId("data") }), queue_size: None }, DataId("temp_data"): Input { mapping: User(UserInputMapping { source: NodeId("sensor-temp"), output: DataId("data") }), queue_size: None }, DataId("tick"): Input { mapping: Timer { interval: 100ms }, queue_size: None }}, send_stdout_as: None, build: None, git: None, branch: None, tag: None, rev: None, deploy: Some(Deploy { machine: Some("cloud"), working_dir: Some("/Users/nupylot/Public/dora-examples/examples/python-distributed-zenoh") }) }], communication: CommunicationConfig { local: Tcp, remote: Tcp }, deploy: None, debug: Debug { publish_all_messages_to_zenoh: false } } local_working_dir=None uv=false}: dora_coordinator::run: successfully triggered dataflow spawn `019a4674-530e-700b-9ec4-c9541373d545` +2025-11-02T21:23:39.926484Z INFO dora_coordinator: successfully spawned dataflow `019a4674-530e-700b-9ec4-c9541373d545` +2025-11-02T21:46:15.251620Z INFO dora_coordinator: received ctrlc signal +2025-11-02T21:46:15.251693Z INFO dora_coordinator: Destroying coordinator after receiving Ctrl-C signal +2025-11-02T21:46:15.262361Z INFO dora_coordinator: successfully send stop dataflow `019a4674-530e-700b-9ec4-c9541373d545` to all daemons +2025-11-02T21:46:15.270574Z INFO dora_coordinator: successfully destroyed daemon `edge1-f3426cfc-d5d9-4663-a3fd-8c6a8d0a376a` +2025-11-02T21:46:15.274640Z INFO dora_coordinator: successfully destroyed daemon `edge3-407eeaa9-f2ca-4fc0-8bed-5f2d036bc3da` +2025-11-02T21:46:15.274730Z INFO dora_coordinator: successfully destroyed daemon `cloud-c94a52f3-6853-4456-bbcf-e17a2d41f6e0` +2025-11-02T21:46:15.274764Z INFO dora_coordinator: successfully destroyed daemon `edge2-d4abad6a-54a9-4a67-92a1-0c2870c79c59` +2025-11-02T21:46:15.279317Z INFO dora_coordinator: Daemon `edge1-f3426cfc-d5d9-4663-a3fd-8c6a8d0a376a` exited +2025-11-02T21:46:15.279342Z INFO dora_coordinator: Daemon `edge3-407eeaa9-f2ca-4fc0-8bed-5f2d036bc3da` exited +2025-11-02T21:46:15.279368Z INFO dora_coordinator: Daemon `cloud-c94a52f3-6853-4456-bbcf-e17a2d41f6e0` exited +2025-11-02T21:46:15.279378Z INFO dora_coordinator: Daemon `edge2-d4abad6a-54a9-4a67-92a1-0c2870c79c59` exited +2025-11-02T21:46:17.582204Z WARN dora_coordinator: received second ctrlc signal -> aborting immediately diff --git a/examples/python-distributed-zenoh/out/dora-daemon-cloud.txt b/examples/python-distributed-zenoh/out/dora-daemon-cloud.txt new file mode 100644 index 0000000..03debbd --- /dev/null +++ b/examples/python-distributed-zenoh/out/dora-daemon-cloud.txt @@ -0,0 +1,156 @@ +2025-11-02T19:56:26.533293Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:56:26.534052Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:26.534167Z INFO zenoh::net::runtime: Using ZID: ec2df374f2d5089d4826f724718c1274 +2025-11-02T19:56:26.534572Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:56:26.534599Z INFO zenoh::api::session: close session zid=ec2df374f2d5089d4826f724718c1274 +2025-11-02T19:56:26.534785Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:56:26.534823Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:26.534843Z INFO zenoh::net::runtime: Using ZID: 2ea360b8789b380d936c7c4fc388209f +2025-11-02T19:56:26.535666Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61769 +2025-11-02T19:56:26.535676Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:61769 +2025-11-02T19:56:26.535681Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:61769 +2025-11-02T19:56:26.535686Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61769 +2025-11-02T19:56:26.535691Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61769 +2025-11-02T19:56:26.535696Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61769 +2025-11-02T19:56:26.535701Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61769 +2025-11-02T19:56:26.535705Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61769 +2025-11-02T19:56:26.535710Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61769 +2025-11-02T19:56:26.535714Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61769 +2025-11-02T19:56:26.535719Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61769 +2025-11-02T19:56:26.535723Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61769 +2025-11-02T19:56:48.831058Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer db1d00d8efeaf801e741e69ba6196c18: [tcp/[fe80::1]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::eb6c:af43:c7b8:aefc]:61787, tcp/[fe80::edfa:a628:e0c:a4af]:61787, tcp/[fe80::443e:d120:dc06:633c]:61787, tcp/[fe80::ce81:b1c:bd2c:69e]:61787, tcp/[fe80::60fc:de5e:5d77:9298]:61787, tcp/[fe80::62f0:2a46:7534:5824]:61787, tcp/[fe80::19ee:75be:d8f8:88a4]:61787, tcp/[fe80::b9d5:d6ce:ca87:4e31]:61787, tcp/192.168.68.64:61787] +2025-11-02T19:56:48.876767Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer db1d00d8efeaf801e741e69ba6196c18: [tcp/[fe80::1]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::eb6c:af43:c7b8:aefc]:61787, tcp/[fe80::edfa:a628:e0c:a4af]:61787, tcp/[fe80::443e:d120:dc06:633c]:61787, tcp/[fe80::ce81:b1c:bd2c:69e]:61787, tcp/[fe80::60fc:de5e:5d77:9298]:61787, tcp/[fe80::62f0:2a46:7534:5824]:61787, tcp/[fe80::19ee:75be:d8f8:88a4]:61787, tcp/[fe80::b9d5:d6ce:ca87:4e31]:61787, tcp/192.168.68.64:61787] +2025-11-02T19:57:10.103622Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: 6ac743d1-56d8-4db9-a59f-953f703eebcd }}: dora_daemon: received destroy command -> exiting +2025-11-02T19:57:10.103950Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: 6ac743d1-56d8-4db9-a59f-953f703eebcd }}: zenoh::api::session: close session zid=2ea360b8789b380d936c7c4fc388209f +2025-11-02T20:04:04.502306Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:04:04.502837Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:04.502931Z INFO zenoh::net::runtime: Using ZID: 9eb22cf1fac4a229fe6ebe447822a3f5 +2025-11-02T20:04:04.503230Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:04:04.503249Z INFO zenoh::api::session: close session zid=9eb22cf1fac4a229fe6ebe447822a3f5 +2025-11-02T20:04:04.503412Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:04:04.503489Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:04.503508Z INFO zenoh::net::runtime: Using ZID: d3a044800d9cfddf36f06b401d1e0b01 +2025-11-02T20:04:04.504360Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62103 +2025-11-02T20:04:04.504370Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62103 +2025-11-02T20:04:04.504376Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62103 +2025-11-02T20:04:04.504380Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62103 +2025-11-02T20:04:04.504385Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62103 +2025-11-02T20:04:04.504390Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62103 +2025-11-02T20:04:04.504395Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62103 +2025-11-02T20:04:04.504401Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62103 +2025-11-02T20:04:04.504406Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62103 +2025-11-02T20:04:04.504411Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62103 +2025-11-02T20:04:04.504415Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62103 +2025-11-02T20:04:04.504419Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62103 +2025-11-02T20:09:33.929735Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:09:33.930255Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:33.930357Z INFO zenoh::net::runtime: Using ZID: fdd441d28a3bdbe73f6513628eb0c86e +2025-11-02T20:09:33.930669Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:09:33.930688Z INFO zenoh::api::session: close session zid=fdd441d28a3bdbe73f6513628eb0c86e +2025-11-02T20:09:33.930851Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:09:33.930906Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:33.930919Z INFO zenoh::net::runtime: Using ZID: d1e491f46137014dd506f2c4138ea1d7 +2025-11-02T20:09:33.931723Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62406 +2025-11-02T20:09:33.931730Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62406 +2025-11-02T20:09:33.931733Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62406 +2025-11-02T20:09:33.931737Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62406 +2025-11-02T20:09:33.931740Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62406 +2025-11-02T20:09:33.931743Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62406 +2025-11-02T20:09:33.931746Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62406 +2025-11-02T20:09:33.931749Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62406 +2025-11-02T20:09:33.931752Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62406 +2025-11-02T20:09:33.931755Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62406 +2025-11-02T20:09:33.931758Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62406 +2025-11-02T20:09:33.931761Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62406 +2025-11-02T20:09:40.447996Z WARN dora_daemon::node_communication: failed to register node 019a4630-93c9-7be6-945b-90626adbabf3/cloud-aggregator: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:09:40.452738Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:26:59.180661Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:26:59.181133Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:59.181213Z INFO zenoh::net::runtime: Using ZID: c4b2866c72ade8fed7040f55653ca265 +2025-11-02T20:26:59.181513Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:26:59.181529Z INFO zenoh::api::session: close session zid=c4b2866c72ade8fed7040f55653ca265 +2025-11-02T20:26:59.181707Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:26:59.181765Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:59.181780Z INFO zenoh::net::runtime: Using ZID: f77465d9191a74343c464cb2852db3b +2025-11-02T20:26:59.182603Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62791 +2025-11-02T20:26:59.182614Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62791 +2025-11-02T20:26:59.182620Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62791 +2025-11-02T20:26:59.182625Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62791 +2025-11-02T20:26:59.182630Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62791 +2025-11-02T20:26:59.182635Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62791 +2025-11-02T20:26:59.182652Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62791 +2025-11-02T20:26:59.182656Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62791 +2025-11-02T20:26:59.182660Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62791 +2025-11-02T20:26:59.182663Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62791 +2025-11-02T20:26:59.182667Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62791 +2025-11-02T20:26:59.182670Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62791 +2025-11-02T20:27:02.302331Z WARN dora_daemon::node_communication: failed to register node 019a4640-7af8-7f2c-98b1-1e2b13497de7/cloud-aggregator: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:27:02.302360Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:38:35.911638Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:38:35.912245Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:35.912327Z INFO zenoh::net::runtime: Using ZID: cd6d6665e60a789304282cc82b179cb4 +2025-11-02T20:38:35.912637Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:38:35.912653Z INFO zenoh::api::session: close session zid=cd6d6665e60a789304282cc82b179cb4 +2025-11-02T20:38:35.912808Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:38:35.912846Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:35.912858Z INFO zenoh::net::runtime: Using ZID: 768bfe05085e6877c4798478defc967c +2025-11-02T20:38:35.913651Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62987 +2025-11-02T20:38:35.913661Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a412:fff:fe03:c687]:62987 +2025-11-02T20:38:35.913666Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a412:fff:fe03:c687]:62987 +2025-11-02T20:38:35.913671Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62987 +2025-11-02T20:38:35.913675Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62987 +2025-11-02T20:38:35.913680Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62987 +2025-11-02T20:38:35.913685Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62987 +2025-11-02T20:38:35.913689Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62987 +2025-11-02T20:38:35.913695Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62987 +2025-11-02T20:38:35.913700Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62987 +2025-11-02T20:38:35.913705Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62987 +2025-11-02T20:38:35.913709Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62987 +2025-11-02T20:38:39.028598Z WARN dora_daemon::node_communication: failed to register node 019a464b-1c92-7740-b473-191578abab02/cloud-aggregator: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:38:39.028673Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:56:58.154116Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:56:58.154618Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:58.154714Z INFO zenoh::net::runtime: Using ZID: dc939f08298d2f58005860b3c58fde9f +2025-11-02T20:56:58.155011Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T20:56:58.155030Z INFO zenoh::api::session: close session zid=dc939f08298d2f58005860b3c58fde9f +2025-11-02T20:56:58.155149Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:56:58.155187Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:58.155204Z INFO zenoh::net::runtime: Using ZID: 330ff321a27f24ac01d34e79e5e95377 +2025-11-02T20:56:58.155984Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63283 +2025-11-02T20:56:58.155993Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283 +2025-11-02T20:56:58.155998Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283 +2025-11-02T20:56:58.156003Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63283 +2025-11-02T20:56:58.156008Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63283 +2025-11-02T20:56:58.156013Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63283 +2025-11-02T20:56:58.156018Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63283 +2025-11-02T20:56:58.156023Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63283 +2025-11-02T20:56:58.156028Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63283 +2025-11-02T20:56:58.156033Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63283 +2025-11-02T20:56:58.156038Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63283 +2025-11-02T20:56:58.156043Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63283 +2025-11-02T20:57:14.469790Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: a4dbe888-6650-428d-98e9-0b5c6a47f199 }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T20:57:14.470372Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: a4dbe888-6650-428d-98e9-0b5c6a47f199 }}: zenoh::api::session: close session zid=330ff321a27f24ac01d34e79e5e95377 +2025-11-02T21:23:36.826448Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T21:23:36.826891Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:36.826971Z INFO zenoh::net::runtime: Using ZID: aaff827d66a68dce72ab4f87b6ecb680 +2025-11-02T21:23:36.827357Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T21:23:36.827392Z INFO zenoh::api::session: close session zid=aaff827d66a68dce72ab4f87b6ecb680 +2025-11-02T21:23:36.827526Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T21:23:36.827581Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:36.827600Z INFO zenoh::net::runtime: Using ZID: ed4ed297d3db30c7720d6550a829076e +2025-11-02T21:23:36.828322Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63700 +2025-11-02T21:23:36.828331Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63700 +2025-11-02T21:23:36.828334Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63700 +2025-11-02T21:23:36.828337Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63700 +2025-11-02T21:23:36.828340Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63700 +2025-11-02T21:23:36.828343Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63700 +2025-11-02T21:23:36.828347Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63700 +2025-11-02T21:23:36.828350Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63700 +2025-11-02T21:23:36.828352Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63700 +2025-11-02T21:23:36.828355Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63700 +2025-11-02T21:23:36.828358Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63700 +2025-11-02T21:23:36.828361Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63700 +2025-11-02T21:46:15.251631Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: c94a52f3-6853-4456-bbcf-e17a2d41f6e0 }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T21:46:15.270361Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: c94a52f3-6853-4456-bbcf-e17a2d41f6e0 }}: dora_daemon: received destroy command -> exiting +2025-11-02T21:46:15.270716Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("cloud"), uuid: c94a52f3-6853-4456-bbcf-e17a2d41f6e0 }}: zenoh::api::session: close session zid=ed4ed297d3db30c7720d6550a829076e +2025-11-02T21:46:15.279264Z WARN dora_daemon: process 48574 was killed on drop because it was still running diff --git a/examples/python-distributed-zenoh/out/dora-daemon-edge1.txt b/examples/python-distributed-zenoh/out/dora-daemon-edge1.txt new file mode 100644 index 0000000..ff46977 --- /dev/null +++ b/examples/python-distributed-zenoh/out/dora-daemon-edge1.txt @@ -0,0 +1,1250 @@ +2025-11-02T19:49:31.631526Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:49:31.632044Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:49:31.632164Z INFO zenoh::net::runtime: Using ZID: ea742a62619d99edd02fc78696f0d167 +2025-11-02T19:49:31.632492Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:49:31.633412Z INFO zenoh::api::session: close session zid=ea742a62619d99edd02fc78696f0d167 +2025-11-02T19:49:31.635483Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:49:31.635536Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:49:31.635553Z INFO zenoh::net::runtime: Using ZID: 6ff7f48cd710518fab298a1e76170e79 +2025-11-02T19:49:31.636378Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61377 +2025-11-02T19:49:31.636388Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6806:bfff:fed4:b1e]:61377 +2025-11-02T19:49:31.636392Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6806:bfff:fed4:b1e]:61377 +2025-11-02T19:49:31.636396Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61377 +2025-11-02T19:49:31.636401Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61377 +2025-11-02T19:49:31.636405Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61377 +2025-11-02T19:49:31.636409Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61377 +2025-11-02T19:49:31.636413Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61377 +2025-11-02T19:49:31.636417Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61377 +2025-11-02T19:49:31.636421Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61377 +2025-11-02T19:49:31.636425Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61377 +2025-11-02T19:49:31.636429Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61377 +2025-11-02T19:49:32.141513Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:49:32.653262Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:49:33.686850Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:49:34.718337Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:49:37.527194Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 91d7b773-ecb7-446e-b014-278c4ca329ef }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T19:49:37.527462Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 91d7b773-ecb7-446e-b014-278c4ca329ef }}: zenoh::api::session: close session zid=6ff7f48cd710518fab298a1e76170e79 +2025-11-02T19:51:20.822516Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:51:20.823103Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:51:20.823192Z INFO zenoh::net::runtime: Using ZID: 5f566109b0b5ba6c46e7354629140029 +2025-11-02T19:51:20.823449Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:51:20.823465Z INFO zenoh::api::session: close session zid=5f566109b0b5ba6c46e7354629140029 +2025-11-02T19:51:20.823585Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:51:20.823613Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:51:20.823624Z INFO zenoh::net::runtime: Using ZID: fc2d4de17c61e51adb45bf14ee3e18b2 +2025-11-02T19:51:20.824103Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61504 +2025-11-02T19:51:20.824109Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90df:7eff:fe40:c800]:61504 +2025-11-02T19:51:20.824112Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90df:7eff:fe40:c800]:61504 +2025-11-02T19:51:20.824115Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61504 +2025-11-02T19:51:20.824117Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61504 +2025-11-02T19:51:20.824120Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61504 +2025-11-02T19:51:20.824123Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61504 +2025-11-02T19:51:20.824126Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61504 +2025-11-02T19:51:20.824128Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61504 +2025-11-02T19:51:20.824131Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61504 +2025-11-02T19:51:20.824134Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61504 +2025-11-02T19:51:20.824137Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61504 +2025-11-02T19:51:21.327043Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:21.846644Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:22.870684Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:23.895055Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:31.327405Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 1283e408-b658-42ab-9edb-1da78f377e43 }}: zenoh::api::session: close session zid=fc2d4de17c61e51adb45bf14ee3e18b2 +2025-11-02T19:51:49.922325Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:51:49.922898Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:51:49.922981Z INFO zenoh::net::runtime: Using ZID: d8025d7d6b056971a8b73ee0c5ca79dd +2025-11-02T19:51:49.923234Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:51:49.923251Z INFO zenoh::api::session: close session zid=d8025d7d6b056971a8b73ee0c5ca79dd +2025-11-02T19:51:49.923373Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:51:49.923417Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:51:49.923431Z INFO zenoh::net::runtime: Using ZID: 3baee129820c102ded3456ad78e0823e +2025-11-02T19:51:49.924077Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61548 +2025-11-02T19:51:49.924085Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61548 +2025-11-02T19:51:49.924089Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61548 +2025-11-02T19:51:49.924093Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61548 +2025-11-02T19:51:49.924097Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61548 +2025-11-02T19:51:49.924101Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61548 +2025-11-02T19:51:49.924109Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61548 +2025-11-02T19:51:49.924113Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61548 +2025-11-02T19:51:49.924116Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61548 +2025-11-02T19:51:49.924120Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61548 +2025-11-02T19:51:49.924123Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61548 +2025-11-02T19:51:49.924127Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61548 +2025-11-02T19:51:50.427810Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:50.945911Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:51.966649Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:52.990265Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:55.015764Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:55.016192Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:51:55.426503Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: e2d46149-1b9f-461c-9974-a5d22389e446 }}: zenoh::api::session: close session zid=3baee129820c102ded3456ad78e0823e +2025-11-02T19:52:06.513978Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:52:06.514545Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:06.514620Z INFO zenoh::net::runtime: Using ZID: a037f374aa73317d3210493a35f1059c +2025-11-02T19:52:06.514853Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:52:06.514866Z INFO zenoh::api::session: close session zid=a037f374aa73317d3210493a35f1059c +2025-11-02T19:52:06.514979Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:52:06.515032Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:06.515047Z INFO zenoh::net::runtime: Using ZID: a4267b823a6969851d486b4eb4c928ec +2025-11-02T19:52:06.515577Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61581 +2025-11-02T19:52:06.515584Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61581 +2025-11-02T19:52:06.515588Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61581 +2025-11-02T19:52:06.515591Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61581 +2025-11-02T19:52:06.515594Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61581 +2025-11-02T19:52:06.515598Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61581 +2025-11-02T19:52:06.515601Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61581 +2025-11-02T19:52:06.515603Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61581 +2025-11-02T19:52:06.515606Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61581 +2025-11-02T19:52:06.515609Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61581 +2025-11-02T19:52:06.515612Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61581 +2025-11-02T19:52:06.515614Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61581 +2025-11-02T19:52:07.019048Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:07.538572Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:08.559949Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:09.582527Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:17.018720Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 2c55aa35-27e6-49b4-b56a-1ca80957d3e2 }}: zenoh::api::session: close session zid=a4267b823a6969851d486b4eb4c928ec +2025-11-02T19:52:30.108712Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:52:30.109208Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:30.109307Z INFO zenoh::net::runtime: Using ZID: 5b61e5e7b4de4502e5c6d78215cf928a +2025-11-02T19:52:30.109573Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:52:30.109593Z INFO zenoh::api::session: close session zid=5b61e5e7b4de4502e5c6d78215cf928a +2025-11-02T19:52:30.109715Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:52:30.109764Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:30.109778Z INFO zenoh::net::runtime: Using ZID: d65432f93699813c31516cd141681f05 +2025-11-02T19:52:30.110366Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61625 +2025-11-02T19:52:30.110378Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61625 +2025-11-02T19:52:30.110382Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d86f:83ff:feff:8dbf]:61625 +2025-11-02T19:52:30.110386Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61625 +2025-11-02T19:52:30.110390Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61625 +2025-11-02T19:52:30.110393Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61625 +2025-11-02T19:52:30.110397Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61625 +2025-11-02T19:52:30.110400Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61625 +2025-11-02T19:52:30.110403Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61625 +2025-11-02T19:52:30.110407Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61625 +2025-11-02T19:52:30.110410Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61625 +2025-11-02T19:52:30.110413Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61625 +2025-11-02T19:52:30.614141Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:31.134715Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:32.157868Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:33.177571Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:40.614052Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 7a5660cd-56f2-43ab-87b2-302ad282cc7b }}: zenoh::api::session: close session zid=d65432f93699813c31516cd141681f05 +2025-11-02T19:52:50.401147Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:52:50.401726Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:50.401817Z INFO zenoh::net::runtime: Using ZID: e9f8c849af0f68ced7bf70578294ea36 +2025-11-02T19:52:50.402080Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:52:50.402097Z INFO zenoh::api::session: close session zid=e9f8c849af0f68ced7bf70578294ea36 +2025-11-02T19:52:50.402220Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:52:50.402251Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:52:50.402262Z INFO zenoh::net::runtime: Using ZID: 7399cb546381e367e380cb0071d419c2 +2025-11-02T19:52:50.402825Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61658 +2025-11-02T19:52:50.402833Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d048:baff:fe4c:c64b]:61658 +2025-11-02T19:52:50.402836Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d048:baff:fe4c:c64b]:61658 +2025-11-02T19:52:50.402839Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61658 +2025-11-02T19:52:50.402843Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61658 +2025-11-02T19:52:50.402846Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61658 +2025-11-02T19:52:50.402849Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61658 +2025-11-02T19:52:50.402852Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61658 +2025-11-02T19:52:50.402855Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61658 +2025-11-02T19:52:50.402859Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61658 +2025-11-02T19:52:50.402862Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61658 +2025-11-02T19:52:50.402865Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61658 +2025-11-02T19:52:50.907249Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:51.425472Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:52.450792Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:53.471269Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:55.495370Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:55.495858Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:52:55.907374Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 9910c11f-9e1c-4b9b-85d5-d9bada3f975c }}: zenoh::api::session: close session zid=7399cb546381e367e380cb0071d419c2 +2025-11-02T19:55:55.700283Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:55:55.700845Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:55:55.700954Z INFO zenoh::net::runtime: Using ZID: ceaaca346d68e3ea0093ff208a8bdf81 +2025-11-02T19:55:55.701838Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T19:55:55.701849Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:5456 +2025-11-02T19:55:55.701854Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:5456 +2025-11-02T19:55:55.701859Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T19:55:55.701863Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T19:55:55.701868Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T19:55:55.701872Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T19:55:55.701876Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T19:55:55.701881Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T19:55:55.701885Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T19:55:55.701889Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T19:55:55.701893Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T19:55:56.206926Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:56:06.206537Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: bd92c9f5-5546-49aa-804d-3b411bfc8fdc }}: zenoh::api::session: close session zid=ceaaca346d68e3ea0093ff208a8bdf81 +2025-11-02T19:56:38.271179Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:56:38.271764Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:38.271866Z INFO zenoh::net::runtime: Using ZID: 13a2fad69fa00973edcee6717b2ebbf +2025-11-02T19:56:38.272154Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:56:38.272170Z INFO zenoh::api::session: close session zid=13a2fad69fa00973edcee6717b2ebbf +2025-11-02T19:56:38.272341Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:56:38.272372Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:38.272384Z INFO zenoh::net::runtime: Using ZID: db1d00d8efeaf801e741e69ba6196c18 +2025-11-02T19:56:38.273120Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61787 +2025-11-02T19:56:38.273127Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787 +2025-11-02T19:56:38.273131Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787 +2025-11-02T19:56:38.273134Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61787 +2025-11-02T19:56:38.273137Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61787 +2025-11-02T19:56:38.273140Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61787 +2025-11-02T19:56:38.273143Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61787 +2025-11-02T19:56:38.273146Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61787 +2025-11-02T19:56:38.273150Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61787 +2025-11-02T19:56:38.273153Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61787 +2025-11-02T19:56:38.273156Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61787 +2025-11-02T19:56:38.273159Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61787 +2025-11-02T19:56:38.777691Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:56:48.777589Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 4f0fad8b-9ae4-4aa9-ba07-38d1fa992f32 }}: zenoh::api::session: close session zid=db1d00d8efeaf801e741e69ba6196c18 +2025-11-02T19:57:25.370685Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:57:25.371313Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:57:25.371412Z INFO zenoh::net::runtime: Using ZID: aade282401d60703c0fb39f4584d9f6c +2025-11-02T19:57:25.372468Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T19:57:25.372501Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a8e1:17ff:fe1f:fe44]:5456 +2025-11-02T19:57:25.372514Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a8e1:17ff:fe1f:fe44]:5456 +2025-11-02T19:57:25.372520Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T19:57:25.372526Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T19:57:25.372560Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T19:57:25.372564Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T19:57:25.372567Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T19:57:25.372570Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T19:57:25.372573Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T19:57:25.372576Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T19:57:25.372579Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T19:57:25.877073Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:57:26.404891Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:57:27.440175Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:57:28.470224Z WARN dora_daemon::local_listener: failed to deserialize DaemonRequest + +Caused by: + invalid value: integer `1852383867`, expected variant index 0 <= i < 11 + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/local_listener.rs:145:10 +2025-11-02T19:57:35.877879Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: e0871529-e519-4bc2-9b54-89ac1b78d85a }}: zenoh::api::session: close session zid=aade282401d60703c0fb39f4584d9f6c +2025-11-02T20:03:20.132993Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:03:20.133467Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:03:20.133555Z INFO zenoh::net::runtime: Using ZID: 760144ab7e216d3dc3f8f756b6d49e4c +2025-11-02T20:03:20.134372Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:03:20.134383Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:5456 +2025-11-02T20:03:20.134387Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:5456 +2025-11-02T20:03:20.134392Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:03:20.134396Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:03:20.134400Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:03:20.134404Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:03:20.134412Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:03:20.134415Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:03:20.134419Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:03:20.134423Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:03:20.134426Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:03:38.592424Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 80993b28-dc29-4ad4-94a5-802aefa0e594 }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T20:03:38.592673Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 80993b28-dc29-4ad4-94a5-802aefa0e594 }}: zenoh::api::session: close session zid=760144ab7e216d3dc3f8f756b6d49e4c +2025-11-02T20:03:58.405119Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:03:58.405627Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:03:58.405723Z INFO zenoh::net::runtime: Using ZID: 54593623270bbd3644e7ca16bb85ec37 +2025-11-02T20:03:58.406539Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:03:58.406554Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:5456 +2025-11-02T20:03:58.406562Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:5456 +2025-11-02T20:03:58.406567Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:03:58.406571Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:03:58.406575Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:03:58.406579Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:03:58.406583Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:03:58.406587Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:03:58.406591Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:03:58.406595Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:03:58.406600Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:04:10.613954Z WARN run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 85660abf-3d8e-412c-8537-3c3786a128d8 }}: dora_daemon: received AllNodesReady for unknown dataflow (ID `019a462b-8cee-7944-92bb-46e59b543a16`) +2025-11-02T20:09:27.837266Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:09:27.837728Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:27.837806Z INFO zenoh::net::runtime: Using ZID: 8aa4aed66ae567cae71272d8d2b4f4d7 +2025-11-02T20:09:27.838473Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:09:27.838482Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:5456 +2025-11-02T20:09:27.838485Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:5456 +2025-11-02T20:09:27.838488Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:09:27.838491Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:09:27.838493Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:09:27.838497Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:09:27.838499Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:09:27.838502Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:09:27.838515Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:09:27.838517Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:09:27.838519Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:09:40.448121Z WARN dora_daemon::node_communication: failed to register node 019a4630-93c9-7be6-945b-90626adbabf3/sensor-temp: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:09:40.451779Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:26:53.076067Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:26:53.076574Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:53.076673Z INFO zenoh::net::runtime: Using ZID: 64cd0fb11d47c699cd3e1afc4d772077 +2025-11-02T20:26:53.077703Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:26:53.077715Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:5456 +2025-11-02T20:26:53.077721Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:5456 +2025-11-02T20:26:53.077726Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:26:53.077731Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:26:53.077735Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:26:53.077740Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:26:53.077745Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:26:53.077750Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:26:53.077754Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:26:53.077759Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:26:53.077764Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:27:02.302330Z WARN dora_daemon::node_communication: failed to register node 019a4640-7af8-7f2c-98b1-1e2b13497de7/sensor-temp: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:27:02.302360Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:38:29.816192Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:38:29.817558Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:29.817657Z INFO zenoh::net::runtime: Using ZID: 65df536e1c6c85165c8fd7c753336ef6 +2025-11-02T20:38:29.818629Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:38:29.818640Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::80ab:3dff:fe96:677]:5456 +2025-11-02T20:38:29.818646Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::80ab:3dff:fe96:677]:5456 +2025-11-02T20:38:29.818650Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:38:29.818655Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:38:29.818660Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:38:29.818678Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:38:29.818682Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:38:29.818685Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:38:29.818688Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:38:29.818691Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:38:29.818694Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:38:39.034192Z WARN dora_daemon::node_communication: failed to register node 019a464b-1c92-7740-b473-191578abab02/sensor-temp: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:38:39.044675Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:38:39.308940Z WARN run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 68ae13bf-cf69-4323-9c78-2346920bc478 }}: dora_daemon: received AllNodesReady for unknown dataflow (ID `019a464b-1c92-7740-b473-191578abab02`) +2025-11-02T20:56:52.046614Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:56:52.048552Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:52.048891Z INFO zenoh::net::runtime: Using ZID: 2023eb925d58703ad8d9cae23d646867 +2025-11-02T20:56:52.051675Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T20:56:52.051711Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:5456 +2025-11-02T20:56:52.051718Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:5456 +2025-11-02T20:56:52.051724Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T20:56:52.051729Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T20:56:52.051735Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T20:56:52.051740Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T20:56:52.051745Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T20:56:52.051751Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T20:56:52.051756Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T20:56:52.051761Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T20:56:52.051766Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T20:56:52.053098Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:56:52.053262Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63254, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:56:53.057378Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:56:53.057684Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63256, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:56:55.060293Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:56:55.060656Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63262, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:56:59.064199Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:56:59.064529Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63309, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:57:03.067366Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:57:03.067568Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63351, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:57:07.070575Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:57:07.070850Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63352, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:57:11.074631Z WARN zenoh_transport::unicast::manager: 2023eb925d58703ad8d9cae23d646867 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T20:57:11.074951Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63353, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T20:57:14.470174Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 68f64580-28d5-4da5-9bf9-cc2bdc06febe }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T20:57:14.480459Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 68f64580-28d5-4da5-9bf9-cc2bdc06febe }}: dora_daemon: received destroy command -> exiting +2025-11-02T20:57:14.480728Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: 68f64580-28d5-4da5-9bf9-cc2bdc06febe }}: zenoh::api::session: close session zid=2023eb925d58703ad8d9cae23d646867 +2025-11-02T20:57:14.500200Z WARN dora_daemon::log: failed to send log message to dora-coordinator + +Caused by: + Broken pipe (os error 32) + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/log.rs:375:14 +2025-11-02T20:57:14.541964Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer 330ff321a27f24ac01d34e79e5e95377: [tcp/[fe80::1]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::eb6c:af43:c7b8:aefc]:63283, tcp/[fe80::edfa:a628:e0c:a4af]:63283, tcp/[fe80::443e:d120:dc06:633c]:63283, tcp/[fe80::ce81:b1c:bd2c:69e]:63283, tcp/[fe80::60fc:de5e:5d77:9298]:63283, tcp/[fe80::62f0:2a46:7534:5824]:63283, tcp/[fe80::19ee:75be:d8f8:88a4]:63283, tcp/[fe80::b9d5:d6ce:ca87:4e31]:63283, tcp/192.168.68.64:63283] +2025-11-02T20:57:14.547943Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer 330ff321a27f24ac01d34e79e5e95377: [tcp/[fe80::1]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::eb6c:af43:c7b8:aefc]:63283, tcp/[fe80::edfa:a628:e0c:a4af]:63283, tcp/[fe80::443e:d120:dc06:633c]:63283, tcp/[fe80::ce81:b1c:bd2c:69e]:63283, tcp/[fe80::60fc:de5e:5d77:9298]:63283, tcp/[fe80::62f0:2a46:7534:5824]:63283, tcp/[fe80::19ee:75be:d8f8:88a4]:63283, tcp/[fe80::b9d5:d6ce:ca87:4e31]:63283, tcp/192.168.68.64:63283] +2025-11-02T20:57:14.573282Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer daf4a6e59cdc50d48dc5c6ad9fa1cd46: [tcp/[fe80::1]:63266, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63266, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63266, tcp/[fe80::eb6c:af43:c7b8:aefc]:63266, tcp/[fe80::edfa:a628:e0c:a4af]:63266, tcp/[fe80::443e:d120:dc06:633c]:63266, tcp/[fe80::ce81:b1c:bd2c:69e]:63266, tcp/[fe80::60fc:de5e:5d77:9298]:63266, tcp/[fe80::62f0:2a46:7534:5824]:63266, tcp/[fe80::19ee:75be:d8f8:88a4]:63266, tcp/[fe80::b9d5:d6ce:ca87:4e31]:63266, tcp/192.168.68.64:63266] +2025-11-02T21:23:30.721015Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T21:23:30.722168Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:30.722222Z INFO zenoh::net::runtime: Using ZID: a6f4c42098cfb09207e1303b8be17002 +2025-11-02T21:23:30.722784Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T21:23:30.722790Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:5456 +2025-11-02T21:23:30.722792Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:5456 +2025-11-02T21:23:30.722794Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T21:23:30.722796Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T21:23:30.722798Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T21:23:30.722800Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T21:23:30.722802Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T21:23:30.722804Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T21:23:30.722806Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T21:23:30.722808Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T21:23:30.722809Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T21:23:30.723205Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:30.723276Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63672, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:31.727425Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:31.727745Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63673, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:33.732683Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:33.733261Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63679, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:37.736797Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:37.737128Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63726, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:41.739556Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:41.739772Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63767, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:45.742213Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:45.742365Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63768, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:49.747006Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:49.748089Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63769, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:53.751114Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:53.751306Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63770, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:23:57.755850Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:23:57.756275Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63774, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:01.760717Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:01.761016Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63777, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:05.764319Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:05.764581Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63786, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:09.767891Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:09.768155Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63790, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:13.771560Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:13.771962Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63792, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:17.775057Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:17.775380Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63794, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:21.778765Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:21.779074Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63795, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:25.782304Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:25.782627Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63797, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:29.786557Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:29.786905Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63799, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:33.790415Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:33.790749Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63801, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:37.793088Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:37.793325Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63802, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:41.797116Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:41.797440Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63811, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:45.800465Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:45.800781Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63812, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:49.804488Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:49.804880Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63813, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:53.807961Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:53.808157Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63814, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:24:57.810935Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:24:57.811279Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63817, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:01.815343Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:01.815705Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63820, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:05.819736Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:05.820128Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63821, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:09.823608Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:09.823882Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63822, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:13.827803Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:13.829072Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63823, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:17.831505Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:17.831782Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63826, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:21.835275Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:21.835616Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63828, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:25.839558Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:25.839912Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63829, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:29.842690Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:29.842965Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63833, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:33.846549Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:33.846812Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63835, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:37.850963Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:37.851273Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63836, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:41.854806Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:41.855167Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63845, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:45.858270Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:45.858572Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63846, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:49.860825Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:49.861045Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63848, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:53.864101Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:53.864321Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63849, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:25:57.868374Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:25:57.868756Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63852, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:01.872912Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:01.873246Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63854, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:05.875312Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:05.875584Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63855, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:09.879463Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:09.879804Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63856, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:13.883621Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:13.883953Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63857, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:17.887450Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:17.887836Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63858, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:21.890983Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:21.891319Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63859, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:25.894268Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:25.894611Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63861, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:29.898512Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:29.898845Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63864, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:33.902655Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:33.903038Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63865, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:37.906866Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:37.907182Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63866, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:41.910069Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:41.910275Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63875, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:45.913154Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:45.913489Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63877, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:49.917419Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:49.917761Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63878, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:53.920551Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:53.920878Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63879, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:26:57.924432Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:26:57.924623Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63880, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:01.927158Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:01.927430Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63882, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:05.931320Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:05.931651Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63884, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:09.935972Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:09.936372Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63886, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:13.940276Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:13.941511Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63887, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:17.944932Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:17.945277Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63888, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:21.948213Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:21.948554Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63890, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:25.952337Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:25.952718Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63892, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:29.956435Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:29.956798Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63893, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:33.960101Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:33.960575Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63895, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:37.968136Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:37.968821Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63896, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:41.971937Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:41.976245Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63905, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:45.980901Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:45.981449Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63906, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:49.984966Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:49.985206Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63907, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:53.987729Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:53.987891Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63908, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:27:57.989721Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:27:57.990012Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63910, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:01.993223Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:01.994420Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63912, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:05.998132Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:05.998284Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63913, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:10.003711Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:10.004264Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63914, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:14.007147Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:14.007297Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63915, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:18.010025Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:18.010504Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63916, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:22.014180Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:22.014345Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63918, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:26.017860Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:26.018563Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63920, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:30.024253Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:30.024673Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63921, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:34.028457Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:34.028844Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63924, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:38.033167Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:38.033880Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63925, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:42.036108Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:42.036241Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63934, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:46.040505Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:46.040713Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63935, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:50.044019Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:50.044215Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63936, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:54.048135Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:54.048313Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63937, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:28:58.053023Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:28:58.053868Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63938, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:02.057517Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:02.057865Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63940, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:06.062106Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:06.063588Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63942, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:10.067420Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:10.067594Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63943, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:14.070350Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:14.070501Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63946, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:18.075015Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:18.075225Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63947, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:22.080042Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:22.080483Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63948, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:26.085203Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:26.085469Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63949, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:30.088814Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:30.089475Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63950, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:34.095100Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:34.095579Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63952, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:38.099227Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:38.099608Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63954, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:42.104777Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:42.105114Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63963, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:46.108380Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:46.109093Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63966, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:50.112869Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:50.113063Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63968, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:54.117506Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:54.117760Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63972, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:29:58.121562Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:29:58.121909Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63976, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:02.125389Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:02.125736Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63978, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:06.129834Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:06.130159Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63981, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:10.134892Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:10.135599Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63982, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:14.141170Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:14.141534Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63983, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:18.145240Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:18.145496Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63985, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:22.150453Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:22.151371Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63986, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:26.155064Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:26.155879Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63988, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:30.159828Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:30.160059Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63989, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:34.163680Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:34.163840Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63992, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:38.167901Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:38.168528Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:63993, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:42.173091Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:42.173302Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64002, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:46.177349Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:46.177683Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64003, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:50.180802Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:50.181167Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64004, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:54.183326Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:54.183509Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64006, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:30:58.188487Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:30:58.188639Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64010, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:02.192802Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:02.192956Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64011, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:06.197200Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:06.197400Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64013, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:10.201722Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:10.202050Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64014, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:14.206290Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:14.206530Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64016, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:18.210525Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:18.210849Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64017, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:22.213434Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:22.214008Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64018, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:26.218066Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:26.218254Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64019, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:30.221379Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:30.221746Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64020, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:34.226442Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:34.226768Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64022, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:38.231277Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:38.231528Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64024, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:42.236347Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:42.236712Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64033, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:46.240494Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:46.240758Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64035, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:50.245049Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:50.245307Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64036, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:54.249281Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:54.249600Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64037, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:31:58.254697Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:31:58.254911Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64038, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:02.259044Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:02.259281Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64039, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:06.261345Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:06.261537Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64041, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:10.265763Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:10.265923Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64043, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:14.270322Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:14.270597Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64046, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:18.274368Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:18.274651Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64047, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:22.278349Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:22.278522Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64049, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:26.282169Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:26.282465Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64051, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:30.286303Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:30.286458Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64052, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:34.290120Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:34.290963Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64053, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:38.295392Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:38.295707Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64055, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:42.299724Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:42.300038Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64064, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:46.305070Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:46.305414Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64065, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:50.309741Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:50.310095Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64066, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:54.312890Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:54.313168Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64069, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:32:58.317109Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:32:58.317336Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64071, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:02.321150Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:02.321395Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64072, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:06.324376Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:06.324636Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64074, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:10.329509Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:10.330200Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64075, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:14.333956Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:14.334086Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64076, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:18.337806Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:18.337963Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64077, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:22.342828Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:22.343139Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64079, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:26.350811Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:26.351406Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64081, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:30.354409Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:30.354656Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64082, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:34.358969Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:34.359265Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64083, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:38.363592Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:38.363931Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64085, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:42.368548Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:42.368828Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64094, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:46.372730Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:46.372913Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64095, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:50.375858Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:50.377261Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64097, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:54.381371Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:54.381707Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64098, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:33:58.385783Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:33:58.386101Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64099, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:02.390725Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:02.391074Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64100, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:06.393548Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:06.393881Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64102, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:10.398854Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:10.399194Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64106, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:14.402324Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:14.402653Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64107, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:18.404976Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:18.405141Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64109, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:22.409967Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:22.410299Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64110, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:26.414317Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:26.414536Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64112, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:30.417819Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:30.417987Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64113, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:34.421556Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:34.421896Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64114, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:38.426799Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:38.427142Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64115, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:42.429830Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:42.430176Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64126, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:46.433221Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:46.433439Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64127, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:50.437912Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:50.438240Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64128, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:54.441111Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:54.441410Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64129, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:34:58.443574Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:34:58.443879Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64136, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:02.446875Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:02.447158Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64139, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:06.451128Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:06.451449Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64140, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:10.454197Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:10.454881Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64142, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:14.458264Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:14.459122Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64143, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:18.464040Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:18.464371Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64145, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:22.467924Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:22.468100Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64146, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:26.471738Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:26.472754Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64147, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:30.476608Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:30.476967Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64149, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:34.481544Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:34.481781Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64150, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:38.485472Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:38.485766Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64151, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:42.490093Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:42.490417Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64161, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:46.493588Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:46.493730Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64162, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:50.498403Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:50.498779Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64163, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:54.504316Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:54.504643Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64164, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:35:58.508325Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:35:58.508517Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64167, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:02.513007Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:02.513677Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64168, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:06.516415Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:06.516741Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64169, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:10.521017Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:10.521578Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64170, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:14.527376Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:14.527715Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64173, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:18.531490Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:18.531774Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64174, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:22.537481Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:22.537877Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64175, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:26.541262Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:26.541467Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64177, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:30.546000Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:30.546323Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64178, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:34.550047Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:34.550366Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64179, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:38.554581Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:38.554786Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64180, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:42.558786Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:42.559076Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64190, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:46.562797Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:46.563175Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64192, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:50.567519Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:50.568256Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64193, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:54.571615Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:54.571957Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64194, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:36:58.576291Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:36:58.576737Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64195, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:02.581950Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:02.582528Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64196, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:06.586656Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:06.586998Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64197, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:10.591683Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:10.592048Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64198, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:14.596543Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:14.596721Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64202, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:18.601178Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:18.601406Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64207, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:22.605440Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:22.605798Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64211, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:26.608860Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:26.609163Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64212, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:30.613241Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:30.613509Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64213, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:34.618281Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:34.619058Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64214, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:38.621968Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:38.622683Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64215, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:42.627025Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:42.627234Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64224, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:46.631546Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:46.631700Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64226, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:50.635250Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:50.635460Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64227, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:54.639356Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:54.639486Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64228, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:37:58.642585Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:37:58.642771Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64230, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:02.646829Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:02.647076Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64231, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:06.651515Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:06.651633Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64232, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:10.656058Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:10.656259Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64233, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:14.658911Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:14.659114Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64235, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:18.661347Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:18.661532Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64236, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:22.663155Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:22.663297Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64237, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:26.665245Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:26.665322Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64239, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:30.668976Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:30.669169Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64240, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:34.673490Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:34.673770Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64242, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:38.678371Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:38.678548Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64243, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:42.680761Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:42.680945Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64252, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:46.685633Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:46.685822Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64254, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:50.689296Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:50.689677Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64255, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:54.693690Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:54.693882Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64257, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:38:58.698928Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:38:58.699114Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64259, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:02.701478Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:02.701656Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64262, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:06.705737Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:06.705929Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64265, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:10.710580Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:10.710773Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64267, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:14.715535Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:14.715680Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64269, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:18.717786Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:18.717937Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64270, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:22.721511Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:22.721703Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64271, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:26.725660Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:26.725897Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64273, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:30.729290Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:30.729637Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64275, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:34.733275Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:34.733577Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64277, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:38.737631Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:38.737798Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64278, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:42.740542Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:42.740801Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64287, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:46.743988Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:46.744274Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64288, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:50.747738Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:50.747905Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64290, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:54.753077Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:54.753414Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64291, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:39:58.757938Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:39:58.758275Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64295, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:02.760776Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:02.760960Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64297, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:06.763615Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:06.763896Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64299, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:10.766255Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:10.766524Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64300, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:14.770713Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:14.771016Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64301, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:18.775371Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:18.775637Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64305, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:22.778648Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:22.778994Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64306, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:26.783475Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:26.783802Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64309, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:30.789032Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:30.789355Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64310, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:34.791436Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:34.791741Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64311, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:38.795428Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:38.795767Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64312, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:42.801147Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:42.801459Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64321, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:46.805616Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:46.805910Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64322, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:50.810324Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:50.810500Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64323, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:54.813683Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:54.814043Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64324, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:40:58.818944Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:40:58.819279Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64328, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:02.821567Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:02.821714Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64331, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:06.825383Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:06.825745Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64333, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:10.830133Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:10.830327Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64342, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:14.834136Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:14.834298Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64343, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:18.837107Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:18.837227Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64345, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:22.842571Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:22.842874Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64346, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:26.847265Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:26.847473Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64347, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:30.852363Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:30.852714Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64349, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:34.857458Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:34.857795Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64350, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:38.862234Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:38.862764Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64351, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:42.864596Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:42.864709Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64360, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:46.866833Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:46.867025Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64361, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:50.871309Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:50.871495Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64362, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:54.875052Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:54.875227Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64363, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:41:58.877789Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:41:58.877978Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64367, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:02.882145Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:02.882321Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64368, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:06.886220Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:06.886408Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64369, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:10.890300Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:10.890489Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64370, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:14.894279Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:14.894428Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64371, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:18.898407Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:18.898603Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64372, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:22.902383Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:22.902650Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64375, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:26.905174Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:26.905353Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64378, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:30.909178Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:30.909395Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64379, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:34.913472Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:34.913653Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64381, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:38.917801Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:38.917971Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64382, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:42.921224Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:42.921495Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64391, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:46.925982Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:46.926313Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64392, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:50.928592Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:50.928756Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64393, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:54.932207Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:54.932375Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64394, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:42:58.935568Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:42:58.935739Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64396, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:02.938867Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:02.939058Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64398, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:06.943048Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:06.943213Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64399, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:10.946475Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:10.946592Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64400, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:14.949868Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:14.950041Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64401, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:18.954202Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:18.954591Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64402, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:22.959017Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:22.959202Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64403, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:26.962033Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:26.962199Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64404, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:30.969977Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:30.973934Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64405, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:34.977915Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:34.978719Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64407, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:38.982660Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:38.982836Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64409, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:42.984873Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:42.985236Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64418, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:46.989183Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:46.989448Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64419, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:50.993649Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:50.994357Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64420, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:54.999124Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:54.999635Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64421, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:43:59.003504Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:43:59.004034Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64422, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:03.007893Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:03.008043Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64423, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:07.013015Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:07.013338Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64426, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:11.017764Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:11.018219Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64428, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:15.022327Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:15.022466Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64429, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:19.025088Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:19.025351Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64432, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:23.030113Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:23.030352Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64433, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:27.034915Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:27.035163Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64435, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:31.040077Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:31.040307Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64436, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:35.044615Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:35.044871Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64438, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:39.048525Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:39.048643Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64439, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:43.051647Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:43.051777Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64448, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:47.055865Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:47.056083Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64449, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:51.060820Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:51.061084Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64450, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:55.065034Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:55.065261Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64454, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:44:59.069024Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:44:59.069960Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64456, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:03.074627Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:03.074771Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64458, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:07.078276Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:07.079201Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64459, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:11.082492Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:11.082990Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64461, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:15.087680Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:15.087988Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64462, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:19.093131Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:19.093378Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64464, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:23.098320Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:23.098657Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64465, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:27.101614Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:27.102084Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64467, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:31.106242Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:31.106446Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64468, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:35.109418Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:35.109710Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64469, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:39.112690Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:39.112990Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64470, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:43.116937Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:43.117669Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64480, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:47.121072Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:47.121396Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64481, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:51.125782Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:51.126164Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64482, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:55.128641Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:55.129010Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64483, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:45:59.132115Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:45:59.132284Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64486, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:46:03.134830Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:46:03.134996Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64487, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:46:07.138760Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:46:07.138952Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64488, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:46:11.142462Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:46:11.142742Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64491, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:46:15.144885Z WARN zenoh_transport::unicast::manager: a6f4c42098cfb09207e1303b8be17002 Attempt to establish transport to itself at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/manager.rs:547. +2025-11-02T21:46:15.145161Z ERROR zenoh_transport::unicast::establishment::open: Received a close message (reason CONNECTION_TO_SELF) in response to an OpenSyn on: TransportLinkUnicast { link: Link { src: tcp/127.0.0.1:64492, dst: tcp/127.0.0.1:5456, mtu: 65328, is_reliable: true, is_streamed: true }, config: TransportLinkUnicastConfig { direction: Outbound, batch: BatchConfig { mtu: 65328, is_streamed: true, is_compression: false }, priorities: None, reliability: None } } at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-transport-1.5.1/src/unicast/establishment/open.rs:488. +2025-11-02T21:46:15.251623Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: f3426cfc-d5d9-4663-a3fd-8c6a8d0a376a }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T21:46:15.270362Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: f3426cfc-d5d9-4663-a3fd-8c6a8d0a376a }}: dora_daemon: received destroy command -> exiting +2025-11-02T21:46:15.270641Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge1"), uuid: f3426cfc-d5d9-4663-a3fd-8c6a8d0a376a }}: zenoh::api::session: close session zid=a6f4c42098cfb09207e1303b8be17002 +2025-11-02T21:46:17.582203Z ERROR dora_daemon: failed to report ctrl-c event to dora-coordinator diff --git a/examples/python-distributed-zenoh/out/dora-daemon-edge2.txt b/examples/python-distributed-zenoh/out/dora-daemon-edge2.txt new file mode 100644 index 0000000..aca140d --- /dev/null +++ b/examples/python-distributed-zenoh/out/dora-daemon-edge2.txt @@ -0,0 +1,174 @@ +2025-11-02T19:56:10.298929Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:56:10.299481Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:10.299611Z INFO zenoh::net::runtime: Using ZID: 2018d1261fd135b9bcf2726696169a5c +2025-11-02T19:56:10.300616Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:5456 +2025-11-02T19:56:10.300629Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:5456 +2025-11-02T19:56:10.300635Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:5456 +2025-11-02T19:56:10.300640Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:5456 +2025-11-02T19:56:10.300645Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:5456 +2025-11-02T19:56:10.300649Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:5456 +2025-11-02T19:56:10.300653Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:5456 +2025-11-02T19:56:10.300658Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:5456 +2025-11-02T19:56:10.300662Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:5456 +2025-11-02T19:56:10.300667Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:5456 +2025-11-02T19:56:10.300671Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:5456 +2025-11-02T19:56:10.300675Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:5456 +2025-11-02T19:56:48.798033Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer db1d00d8efeaf801e741e69ba6196c18: [tcp/[fe80::1]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::eb6c:af43:c7b8:aefc]:61787, tcp/[fe80::edfa:a628:e0c:a4af]:61787, tcp/[fe80::443e:d120:dc06:633c]:61787, tcp/[fe80::ce81:b1c:bd2c:69e]:61787, tcp/[fe80::60fc:de5e:5d77:9298]:61787, tcp/[fe80::62f0:2a46:7534:5824]:61787, tcp/[fe80::19ee:75be:d8f8:88a4]:61787, tcp/[fe80::b9d5:d6ce:ca87:4e31]:61787, tcp/192.168.68.64:61787] +2025-11-02T19:56:48.879107Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer db1d00d8efeaf801e741e69ba6196c18: [tcp/[fe80::1]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::a8e1:17ff:fe1f:fe44]:61787, tcp/[fe80::eb6c:af43:c7b8:aefc]:61787, tcp/[fe80::edfa:a628:e0c:a4af]:61787, tcp/[fe80::443e:d120:dc06:633c]:61787, tcp/[fe80::ce81:b1c:bd2c:69e]:61787, tcp/[fe80::60fc:de5e:5d77:9298]:61787, tcp/[fe80::62f0:2a46:7534:5824]:61787, tcp/[fe80::19ee:75be:d8f8:88a4]:61787, tcp/[fe80::b9d5:d6ce:ca87:4e31]:61787, tcp/192.168.68.64:61787] +2025-11-02T19:57:10.103617Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: a83e8621-1d09-4e35-a5d0-fff1eaa158a6 }}: dora_daemon: received destroy command -> exiting +2025-11-02T19:57:10.103964Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: a83e8621-1d09-4e35-a5d0-fff1eaa158a6 }}: zenoh::api::session: close session zid=2018d1261fd135b9bcf2726696169a5c +2025-11-02T20:04:00.439053Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:04:00.439147Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T20:04:00.439582Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:00.439679Z INFO zenoh::net::runtime: Using ZID: aaa27a0c35280bca2378e4852227e13a +2025-11-02T20:04:00.439991Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:04:00.440023Z INFO zenoh::api::session: close session zid=aaa27a0c35280bca2378e4852227e13a +2025-11-02T20:04:00.440198Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:04:00.440253Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:00.440269Z INFO zenoh::net::runtime: Using ZID: c1f03cebb1d483940519730f4b1cabe3 +2025-11-02T20:04:00.441103Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62079 +2025-11-02T20:04:00.441112Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62079 +2025-11-02T20:04:00.441116Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62079 +2025-11-02T20:04:00.441119Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62079 +2025-11-02T20:04:00.441123Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62079 +2025-11-02T20:04:00.441126Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62079 +2025-11-02T20:04:00.441130Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62079 +2025-11-02T20:04:00.441133Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62079 +2025-11-02T20:04:00.441136Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62079 +2025-11-02T20:04:00.441140Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62079 +2025-11-02T20:04:00.441143Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62079 +2025-11-02T20:04:00.441146Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62079 +2025-11-02T20:09:29.862033Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:09:29.862094Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T20:09:29.862415Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:29.862480Z INFO zenoh::net::runtime: Using ZID: 4e6497e8ee9665b98d20754dbf54d27d +2025-11-02T20:09:29.862706Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:09:29.862717Z INFO zenoh::api::session: close session zid=4e6497e8ee9665b98d20754dbf54d27d +2025-11-02T20:09:29.862827Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:09:29.862865Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:29.862879Z INFO zenoh::net::runtime: Using ZID: bec2e2a5cc63402380b51e01bcfb5d88 +2025-11-02T20:09:29.863403Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62381 +2025-11-02T20:09:29.863415Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62381 +2025-11-02T20:09:29.863419Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62381 +2025-11-02T20:09:29.863430Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62381 +2025-11-02T20:09:29.863433Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62381 +2025-11-02T20:09:29.863435Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62381 +2025-11-02T20:09:29.863437Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62381 +2025-11-02T20:09:29.863439Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62381 +2025-11-02T20:09:29.863440Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62381 +2025-11-02T20:09:29.863442Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62381 +2025-11-02T20:09:29.863444Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62381 +2025-11-02T20:09:29.863446Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62381 +2025-11-02T20:09:40.448091Z WARN dora_daemon::node_communication: failed to register node 019a4630-93c9-7be6-945b-90626adbabf3/sensor-humidity: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:09:40.452719Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:09:40.751725Z WARN run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: 20b51e3b-da39-4f3c-951f-cc82f48ab2cd }}: dora_daemon: received AllNodesReady for unknown dataflow (ID `019a4630-93c9-7be6-945b-90626adbabf3`) +2025-11-02T20:26:55.111448Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:26:55.111514Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T20:26:55.111875Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:55.111945Z INFO zenoh::net::runtime: Using ZID: 6f2ebeb5c9c0700534d132268aca5859 +2025-11-02T20:26:55.112207Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:26:55.112217Z INFO zenoh::api::session: close session zid=6f2ebeb5c9c0700534d132268aca5859 +2025-11-02T20:26:55.112331Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:26:55.112371Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:55.112383Z INFO zenoh::net::runtime: Using ZID: 5ef7bc318568ce337e1eb92060bc6e86 +2025-11-02T20:26:55.112984Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62768 +2025-11-02T20:26:55.112993Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62768 +2025-11-02T20:26:55.112997Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62768 +2025-11-02T20:26:55.113001Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62768 +2025-11-02T20:26:55.113005Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62768 +2025-11-02T20:26:55.113008Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62768 +2025-11-02T20:26:55.113012Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62768 +2025-11-02T20:26:55.113015Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62768 +2025-11-02T20:26:55.113043Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62768 +2025-11-02T20:26:55.113046Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62768 +2025-11-02T20:26:55.113048Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62768 +2025-11-02T20:26:55.113050Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62768 +2025-11-02T20:27:02.302330Z WARN dora_daemon::node_communication: failed to register node 019a4640-7af8-7f2c-98b1-1e2b13497de7/sensor-humidity: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:27:02.302345Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:27:02.554884Z WARN run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: e111305d-7c28-4801-8260-a5b044339e06 }}: dora_daemon: received AllNodesReady for unknown dataflow (ID `019a4640-7af8-7f2c-98b1-1e2b13497de7`) +2025-11-02T20:38:31.847045Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:38:31.847094Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T20:38:31.847435Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:31.847491Z INFO zenoh::net::runtime: Using ZID: 4b329a336954cd6bb737740fcf5a9385 +2025-11-02T20:38:31.847710Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:38:31.847720Z INFO zenoh::api::session: close session zid=4b329a336954cd6bb737740fcf5a9385 +2025-11-02T20:38:31.847861Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:38:31.847921Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:31.847932Z INFO zenoh::net::runtime: Using ZID: c28657102735b0c8875ac6557f909445 +2025-11-02T20:38:31.848464Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62965 +2025-11-02T20:38:31.848470Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::80ab:3dff:fe96:677]:62965 +2025-11-02T20:38:31.848473Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::80ab:3dff:fe96:677]:62965 +2025-11-02T20:38:31.848476Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62965 +2025-11-02T20:38:31.848478Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62965 +2025-11-02T20:38:31.848481Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62965 +2025-11-02T20:38:31.848484Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62965 +2025-11-02T20:38:31.848487Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62965 +2025-11-02T20:38:31.848489Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62965 +2025-11-02T20:38:31.848492Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62965 +2025-11-02T20:38:31.848494Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62965 +2025-11-02T20:38:31.848497Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62965 +2025-11-02T20:38:39.034190Z WARN dora_daemon::node_communication: failed to register node 019a464b-1c92-7740-b473-191578abab02/sensor-humidity: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:38:39.038526Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:56:54.080028Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:56:54.080149Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T20:56:54.080570Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:54.080668Z INFO zenoh::net::runtime: Using ZID: 183dd1f2b8b240e7e487c032d98f11d3 +2025-11-02T20:56:54.081002Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T20:56:54.081096Z INFO zenoh::api::session: close session zid=183dd1f2b8b240e7e487c032d98f11d3 +2025-11-02T20:56:54.081562Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:56:54.081620Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:54.081640Z INFO zenoh::net::runtime: Using ZID: b25f828b38d7adcfb7bdddfd28699d07 +2025-11-02T20:56:54.082536Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63260 +2025-11-02T20:56:54.082582Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63260 +2025-11-02T20:56:54.082594Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63260 +2025-11-02T20:56:54.082600Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63260 +2025-11-02T20:56:54.082605Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63260 +2025-11-02T20:56:54.082610Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63260 +2025-11-02T20:56:54.082615Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63260 +2025-11-02T20:56:54.082620Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63260 +2025-11-02T20:56:54.082626Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63260 +2025-11-02T20:56:54.082636Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63260 +2025-11-02T20:56:54.082642Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63260 +2025-11-02T20:56:54.082647Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63260 +2025-11-02T20:57:14.469904Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: 2723f0b1-6923-4330-8d67-cab219700dae }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T20:57:14.480459Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: 2723f0b1-6923-4330-8d67-cab219700dae }}: dora_daemon: received destroy command -> exiting +2025-11-02T20:57:14.480648Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: 2723f0b1-6923-4330-8d67-cab219700dae }}: zenoh::api::session: close session zid=b25f828b38d7adcfb7bdddfd28699d07 +2025-11-02T20:57:14.494984Z WARN dora_daemon::log: failed to send log message to dora-coordinator + +Caused by: + Broken pipe (os error 32) + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/log.rs:375:14 +2025-11-02T20:57:14.504618Z WARN dora_daemon::log: failed to send log message to dora-coordinator + +Caused by: + Broken pipe (os error 32) + +Location: + /Users/runner/work/dora/dora/binaries/daemon/src/log.rs:375:14 +2025-11-02T20:57:14.554813Z WARN zenoh::net::runtime::orchestrator: Unable to connect to any locator of scouted peer 330ff321a27f24ac01d34e79e5e95377: [tcp/[fe80::1]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::9c2c:e1ff:fe14:81e4]:63283, tcp/[fe80::eb6c:af43:c7b8:aefc]:63283, tcp/[fe80::edfa:a628:e0c:a4af]:63283, tcp/[fe80::443e:d120:dc06:633c]:63283, tcp/[fe80::ce81:b1c:bd2c:69e]:63283, tcp/[fe80::60fc:de5e:5d77:9298]:63283, tcp/[fe80::62f0:2a46:7534:5824]:63283, tcp/[fe80::19ee:75be:d8f8:88a4]:63283, tcp/[fe80::b9d5:d6ce:ca87:4e31]:63283, tcp/192.168.68.64:63283] +2025-11-02T21:23:32.755908Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T21:23:32.755994Z WARN dora_daemon::local_listener: Daemon listen port already in use. There might be another daemon running already. +2025-11-02T21:23:32.756482Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:32.756584Z INFO zenoh::net::runtime: Using ZID: 627b93792039c8f9d628617a348318d7 +2025-11-02T21:23:32.756907Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T21:23:32.756925Z INFO zenoh::api::session: close session zid=627b93792039c8f9d628617a348318d7 +2025-11-02T21:23:32.757048Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T21:23:32.757087Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:32.757109Z INFO zenoh::net::runtime: Using ZID: 376e2752a2d02273e7fcadc756c451ac +2025-11-02T21:23:32.757945Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63677 +2025-11-02T21:23:32.757980Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63677 +2025-11-02T21:23:32.757988Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63677 +2025-11-02T21:23:32.757994Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63677 +2025-11-02T21:23:32.757999Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63677 +2025-11-02T21:23:32.758005Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63677 +2025-11-02T21:23:32.758010Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63677 +2025-11-02T21:23:32.758015Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63677 +2025-11-02T21:23:32.758021Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63677 +2025-11-02T21:23:32.758026Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63677 +2025-11-02T21:23:32.758034Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63677 +2025-11-02T21:23:32.758039Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63677 +2025-11-02T21:46:15.251632Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: d4abad6a-54a9-4a67-92a1-0c2870c79c59 }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T21:46:15.270362Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: d4abad6a-54a9-4a67-92a1-0c2870c79c59 }}: dora_daemon: received destroy command -> exiting +2025-11-02T21:46:15.270723Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge2"), uuid: d4abad6a-54a9-4a67-92a1-0c2870c79c59 }}: zenoh::api::session: close session zid=376e2752a2d02273e7fcadc756c451ac diff --git a/examples/python-distributed-zenoh/out/dora-daemon-edge3.txt b/examples/python-distributed-zenoh/out/dora-daemon-edge3.txt new file mode 100644 index 0000000..3e8cac3 --- /dev/null +++ b/examples/python-distributed-zenoh/out/dora-daemon-edge3.txt @@ -0,0 +1,155 @@ +2025-11-02T19:56:20.049618Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T19:56:20.050437Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:20.050570Z INFO zenoh::net::runtime: Using ZID: 56ed13d1a37c41294bff4b2c1ae2d4e0 +2025-11-02T19:56:20.051061Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T19:56:20.051087Z INFO zenoh::api::session: close session zid=56ed13d1a37c41294bff4b2c1ae2d4e0 +2025-11-02T19:56:20.051299Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T19:56:20.051346Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T19:56:20.051363Z INFO zenoh::net::runtime: Using ZID: bca831f998290fec0c4ae1ea18ca281f +2025-11-02T19:56:20.052193Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:61761 +2025-11-02T19:56:20.052207Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:61761 +2025-11-02T19:56:20.052211Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::2862:ebff:fe68:dd8d]:61761 +2025-11-02T19:56:20.052216Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:61761 +2025-11-02T19:56:20.052220Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:61761 +2025-11-02T19:56:20.052224Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:61761 +2025-11-02T19:56:20.052228Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:61761 +2025-11-02T19:56:20.052231Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:61761 +2025-11-02T19:56:20.052235Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:61761 +2025-11-02T19:56:20.052239Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:61761 +2025-11-02T19:56:20.052243Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:61761 +2025-11-02T19:56:20.052247Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:61761 +2025-11-02T19:57:10.103626Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: aaec46ba-4e18-4d42-9951-93963358f18b }}: dora_daemon: received destroy command -> exiting +2025-11-02T19:57:10.104028Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: aaec46ba-4e18-4d42-9951-93963358f18b }}: zenoh::api::session: close session zid=bca831f998290fec0c4ae1ea18ca281f +2025-11-02T20:04:02.472066Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:04:02.472460Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:02.472526Z INFO zenoh::net::runtime: Using ZID: 11eb2b6bccf8a5979c7812bd0a862b2e +2025-11-02T20:04:02.472769Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:04:02.472783Z INFO zenoh::api::session: close session zid=11eb2b6bccf8a5979c7812bd0a862b2e +2025-11-02T20:04:02.472907Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:04:02.472940Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:04:02.472950Z INFO zenoh::net::runtime: Using ZID: 51a83497ca3d1dcdcff068ab629f8fab +2025-11-02T20:04:02.473440Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62085 +2025-11-02T20:04:02.473445Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62085 +2025-11-02T20:04:02.473447Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::d47a:29ff:fe02:cb49]:62085 +2025-11-02T20:04:02.473449Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62085 +2025-11-02T20:04:02.473452Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62085 +2025-11-02T20:04:02.473454Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62085 +2025-11-02T20:04:02.473456Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62085 +2025-11-02T20:04:02.473458Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62085 +2025-11-02T20:04:02.473460Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62085 +2025-11-02T20:04:02.473462Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62085 +2025-11-02T20:04:02.473463Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62085 +2025-11-02T20:04:02.473465Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62085 +2025-11-02T20:09:31.897368Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:09:31.897963Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:31.898058Z INFO zenoh::net::runtime: Using ZID: 231840da94c3246fc3567f3a151cd3ab +2025-11-02T20:09:31.898372Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:09:31.898390Z INFO zenoh::api::session: close session zid=231840da94c3246fc3567f3a151cd3ab +2025-11-02T20:09:31.898564Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:09:31.898603Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:09:31.898620Z INFO zenoh::net::runtime: Using ZID: 8890b38da7d7101de11108a77eb49698 +2025-11-02T20:09:31.899413Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62388 +2025-11-02T20:09:31.899422Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62388 +2025-11-02T20:09:31.899426Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::6823:56ff:fe3e:c040]:62388 +2025-11-02T20:09:31.899431Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62388 +2025-11-02T20:09:31.899436Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62388 +2025-11-02T20:09:31.899441Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62388 +2025-11-02T20:09:31.899445Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62388 +2025-11-02T20:09:31.899450Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62388 +2025-11-02T20:09:31.899465Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62388 +2025-11-02T20:09:31.899469Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62388 +2025-11-02T20:09:31.899472Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62388 +2025-11-02T20:09:31.899475Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62388 +2025-11-02T20:09:40.448125Z WARN dora_daemon::node_communication: failed to register node 019a4630-93c9-7be6-945b-90626adbabf3/sensor-pressure: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:09:40.452738Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:26:57.142708Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:26:57.143244Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:57.143322Z INFO zenoh::net::runtime: Using ZID: 3bee86babfb84d7134b53497bdf357de +2025-11-02T20:26:57.143623Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:26:57.143638Z INFO zenoh::api::session: close session zid=3bee86babfb84d7134b53497bdf357de +2025-11-02T20:26:57.143787Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:26:57.143826Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:26:57.143840Z INFO zenoh::net::runtime: Using ZID: d7a1acb32b9b70d27874107e771471f7 +2025-11-02T20:26:57.144632Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62774 +2025-11-02T20:26:57.144642Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62774 +2025-11-02T20:26:57.144647Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::f839:a9ff:feaf:e275]:62774 +2025-11-02T20:26:57.144652Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62774 +2025-11-02T20:26:57.144657Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62774 +2025-11-02T20:26:57.144662Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62774 +2025-11-02T20:26:57.144666Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62774 +2025-11-02T20:26:57.144671Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62774 +2025-11-02T20:26:57.144676Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62774 +2025-11-02T20:26:57.144680Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62774 +2025-11-02T20:26:57.144685Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62774 +2025-11-02T20:26:57.144689Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62774 +2025-11-02T20:27:02.302342Z WARN dora_daemon::node_communication: failed to register node 019a4640-7af8-7f2c-98b1-1e2b13497de7/sensor-pressure: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:27:02.302420Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:38:33.873658Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:38:33.874844Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:33.874902Z INFO zenoh::net::runtime: Using ZID: c3cbd8687969b779b2c01350d6c9d5fd +2025-11-02T20:38:33.875139Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-commons-1.3.0/src/tcp.rs:44.] at /Users/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zenoh-link-tcp-1.3.0/src/unicast.rs:326. +2025-11-02T20:38:33.875149Z INFO zenoh::api::session: close session zid=c3cbd8687969b779b2c01350d6c9d5fd +2025-11-02T20:38:33.875256Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:38:33.875287Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:38:33.875295Z INFO zenoh::net::runtime: Using ZID: 9ab33f80908b718aad74f8222c80f2a0 +2025-11-02T20:38:33.875808Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:62970 +2025-11-02T20:38:33.875815Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a412:fff:fe03:c687]:62970 +2025-11-02T20:38:33.875818Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::a412:fff:fe03:c687]:62970 +2025-11-02T20:38:33.875821Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:62970 +2025-11-02T20:38:33.875823Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:62970 +2025-11-02T20:38:33.875826Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:62970 +2025-11-02T20:38:33.875829Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:62970 +2025-11-02T20:38:33.875832Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:62970 +2025-11-02T20:38:33.875835Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:62970 +2025-11-02T20:38:33.875837Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:62970 +2025-11-02T20:38:33.875840Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:62970 +2025-11-02T20:38:33.875843Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:62970 +2025-11-02T20:38:39.034192Z WARN dora_daemon::node_communication: failed to register node 019a464b-1c92-7740-b473-191578abab02/sensor-pressure: version mismatch: message format v0.6.0 is not compatible with expected message format v0.5.0 +2025-11-02T20:38:39.038511Z INFO dora_daemon::node_communication: channel disconnected before register message +2025-11-02T20:56:56.115701Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T20:56:56.117060Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:56.117167Z INFO zenoh::net::runtime: Using ZID: 223165e0fa38288d87bf0a614c25126e +2025-11-02T20:56:56.117579Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T20:56:56.117609Z INFO zenoh::api::session: close session zid=223165e0fa38288d87bf0a614c25126e +2025-11-02T20:56:56.117776Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T20:56:56.117848Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T20:56:56.117871Z INFO zenoh::net::runtime: Using ZID: daf4a6e59cdc50d48dc5c6ad9fa1cd46 +2025-11-02T20:56:56.118810Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63266 +2025-11-02T20:56:56.118826Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63266 +2025-11-02T20:56:56.118830Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::9c2c:e1ff:fe14:81e4]:63266 +2025-11-02T20:56:56.118834Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63266 +2025-11-02T20:56:56.118837Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63266 +2025-11-02T20:56:56.118850Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63266 +2025-11-02T20:56:56.118853Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63266 +2025-11-02T20:56:56.118857Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63266 +2025-11-02T20:56:56.118860Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63266 +2025-11-02T20:56:56.118863Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63266 +2025-11-02T20:56:56.118866Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63266 +2025-11-02T20:56:56.118869Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63266 +2025-11-02T20:57:14.469790Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: cb671e76-7cec-459e-bc8c-6e3a25bda05e }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T20:57:14.480459Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: cb671e76-7cec-459e-bc8c-6e3a25bda05e }}: dora_daemon: received destroy command -> exiting +2025-11-02T20:57:14.480665Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: cb671e76-7cec-459e-bc8c-6e3a25bda05e }}: zenoh::api::session: close session zid=daf4a6e59cdc50d48dc5c6ad9fa1cd46 +2025-11-02T20:57:14.488564Z WARN dora_daemon: process 47863 was killed on drop because it was still running +2025-11-02T21:23:34.794785Z INFO dora_daemon::coordinator: Connected to dora-coordinator at 127.0.0.1:53290 +2025-11-02T21:23:34.796528Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:34.796651Z INFO zenoh::net::runtime: Using ZID: 931e1896bc21ce999f497eda0583035c +2025-11-02T21:23:34.797138Z WARN zenoh::net::runtime::orchestrator: Unable to open listener tcp/[::]:5456: Can not create a new TCP listener bound to tcp/[::]:5456: [[::]:5456: Address already in use (os error 48) at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-commons-1.5.1/src/tcp.rs:52.] at /Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zenoh-link-tcp-1.5.1/src/unicast.rs:331. +2025-11-02T21:23:34.797164Z INFO zenoh::api::session: close session zid=931e1896bc21ce999f497eda0583035c +2025-11-02T21:23:34.797352Z WARN dora_daemon: failed to open zenoh session, retrying with default config + coordinator +2025-11-02T21:23:34.797410Z WARN dora_daemon: disabling multicast on macos systems. Enable it with the ZENOH_CONFIG env variable or file +2025-11-02T21:23:34.797438Z INFO zenoh::net::runtime: Using ZID: 766f1049ba80c5fe68f52f4823629fc1 +2025-11-02T21:23:34.798371Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::1]:63683 +2025-11-02T21:23:34.798397Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63683 +2025-11-02T21:23:34.798418Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::90d5:4eff:fe7e:931b]:63683 +2025-11-02T21:23:34.798423Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::eb6c:af43:c7b8:aefc]:63683 +2025-11-02T21:23:34.798426Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::edfa:a628:e0c:a4af]:63683 +2025-11-02T21:23:34.798429Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::443e:d120:dc06:633c]:63683 +2025-11-02T21:23:34.798433Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::ce81:b1c:bd2c:69e]:63683 +2025-11-02T21:23:34.798436Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::60fc:de5e:5d77:9298]:63683 +2025-11-02T21:23:34.798439Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::62f0:2a46:7534:5824]:63683 +2025-11-02T21:23:34.798443Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::19ee:75be:d8f8:88a4]:63683 +2025-11-02T21:23:34.798446Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/[fe80::b9d5:d6ce:ca87:4e31]:63683 +2025-11-02T21:23:34.798449Z INFO zenoh::net::runtime::orchestrator: Zenoh can be reached at: tcp/192.168.68.64:63683 +2025-11-02T21:46:15.251677Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: 407eeaa9-f2ca-4fc0-8bed-5f2d036bc3da }}: dora_daemon: received ctrlc signal -> stopping all dataflows +2025-11-02T21:46:15.270382Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: 407eeaa9-f2ca-4fc0-8bed-5f2d036bc3da }}: dora_daemon: received destroy command -> exiting +2025-11-02T21:46:15.270671Z INFO run_inner{self.daemon_id=DaemonId { machine_id: Some("edge3"), uuid: 407eeaa9-f2ca-4fc0-8bed-5f2d036bc3da }}: zenoh::api::session: close session zid=766f1049ba80c5fe68f52f4823629fc1 diff --git a/examples/python-distributed-zenoh/requirements.txt b/examples/python-distributed-zenoh/requirements.txt new file mode 100755 index 0000000..a02f7ad --- /dev/null +++ b/examples/python-distributed-zenoh/requirements.txt @@ -0,0 +1,2 @@ +dora-rs==0.3.12 +eclipse-zenoh>=1.0.0 diff --git a/examples/python-distributed-zenoh/run_local.sh b/examples/python-distributed-zenoh/run_local.sh new file mode 100755 index 0000000..c5871f1 --- /dev/null +++ b/examples/python-distributed-zenoh/run_local.sh @@ -0,0 +1,200 @@ +#!/bin/bash +# Script to run distributed sensor network simulation on ONE machine +# This simulates multiple machines using different machine IDs + +set -u + +PYTHON_BIN=${PYTHON_BIN:-$(command -v python3 || true)} +if [ -z "$PYTHON_BIN" ]; then + echo "ERROR: Unable to locate python3. Set PYTHON_BIN to a Python interpreter with dora-rs installed." + exit 1 +fi + +PYTHON_DIR=$(dirname "$PYTHON_BIN") +export PATH="$PYTHON_DIR:$PATH" +echo "Using Python interpreter: $PYTHON_BIN" + +LOG_DIR=$(mktemp -d 2>/dev/null || mktemp -d -t dora_run) +PIDS=() +DATAFLOW_FILE="dataflow.yml" +COORDINATOR_LOG="$LOG_DIR/coordinator.log" + +cleanup() { + if [ ${#PIDS[@]} -gt 0 ]; then + for pid in "${PIDS[@]}"; do + kill "$pid" 2>/dev/null || true + done + fi + if [ -n "${DATAFLOW_STARTED:-}" ]; then + dora destroy "$DATAFLOW_FILE" >/dev/null 2>&1 || true + fi + rm -rf "$LOG_DIR" +} + +on_interrupt() { + echo "" + echo "Stopping all nodes..." + cleanup + echo "All nodes stopped." + exit 0 +} + +trap cleanup EXIT +trap on_interrupt INT + +start_coordinator() { + echo "Starting Dora coordinator..." + dora coordinator >"$COORDINATOR_LOG" 2>&1 & + local pid=$! + sleep 3 + if kill -0 "$pid" 2>/dev/null; then + echo " ✓ Coordinator is running (PID $pid)" + PIDS+=("$pid") + return 0 + fi + + echo " ✗ Coordinator failed to start" + cat "$COORDINATOR_LOG" + return 1 +} + +start_daemon() { + local name=$1 + shift + local log_file="$LOG_DIR/${name}.log" + + echo "Starting Dora daemon for $name..." + dora daemon "$@" >"$log_file" 2>&1 & + local pid=$! + sleep 2 + if kill -0 "$pid" 2>/dev/null; then + echo " ✓ Daemon $name is running (PID $pid)" + PIDS+=("$pid") + return 0 + fi + + echo " ✗ Daemon $name failed to start" + cat "$log_file" + return 1 +} + +print_header() { + echo "=== Distributed Dora Sensor Network (Local Simulation) ===" + echo "" + echo "This simulates 4 machines (edge1, edge2, edge3, cloud) on one PC" + echo "" +} + +check_version_alignment() { + local cli_version + cli_version=$(dora --version | awk '{print $2}') + + local py_version + py_version=$("$PYTHON_BIN" - <<'PY' +import importlib +import sys + +try: + module = importlib.import_module("dora") +except ModuleNotFoundError: + sys.exit(0) + +version = getattr(module, "__version__", None) +if not version: + sys.exit(0) + +print(version) +PY +) + + if [ -z "$py_version" ]; then + echo "" + echo "WARNING: Python interpreter $PYTHON_BIN does not have the dora bindings installed." + echo "Install them via '$PYTHON_BIN -m pip install dora-rs==$cli_version' or set PYTHON_BIN accordingly." + return 1 + fi + + local cli_major=${cli_version%%.*} + local cli_minor=${cli_version#*.} + cli_minor=${cli_minor%%.*} + local py_major=${py_version%%.*} + local py_minor=${py_version#*.} + py_minor=${py_minor%%.*} + + if [ "$cli_major" != "$py_major" ] || [ "$cli_minor" != "$py_minor" ]; then + echo "" + echo "Dora CLI version $cli_version does not match Python binding version $py_version." + echo "Ensure both are aligned (e.g., run 'dora self update' or install 'dora-rs==$cli_major.$cli_minor.*' in $PYTHON_BIN)." + return 1 + fi +} + +print_header + +if ! check_version_alignment; then + exit 1 +fi + +echo "Checking for sandbox restrictions..." +if ! start_coordinator; then + if grep -q "Operation not permitted" "$COORDINATOR_LOG"; then + echo "" + echo "The coordinator cannot bind to a TCP listener in this environment." + echo "Your sandbox or OS policy is blocking network listeners." + echo "Run this script outside the restricted sandbox (or request network access)" + echo "to exercise the distributed deployment." + exit 1 + fi + exit 1 +fi + +sleep 1 + +echo "" +echo "Starting Dora daemons (simulating 4 machines):" +echo " - edge1: Temperature sensor" +echo " - edge2: Humidity sensor" +echo " - edge3: Pressure sensor" +echo " - cloud: Data aggregator" +echo "" + +if ! start_daemon edge1 --machine-id edge1; then + exit 1 +fi + +if ! start_daemon edge2 --machine-id edge2 --local-listen-port 53291; then + exit 1 +fi + +if ! start_daemon edge3 --machine-id edge3 --local-listen-port 53292; then + exit 1 +fi + +if ! start_daemon cloud --machine-id cloud --local-listen-port 53293; then + exit 1 +fi + +echo "" +echo "Building dataflow..." +if ! dora build "$DATAFLOW_FILE"; then + echo "ERROR: Failed to build dataflow" + exit 1 +fi + +sleep 1 + +echo "" +echo "Starting dataflow..." +if ! dora start "$DATAFLOW_FILE"; then + echo "ERROR: Failed to start dataflow" + exit 1 +fi + +DATAFLOW_STARTED=1 + +echo "" +echo "All nodes started! Use 'dora logs ' in another terminal" +echo "to monitor output. Press Ctrl+C here to stop all nodes." +echo "" + +wait diff --git a/examples/python-distributed-zenoh/sensor_node.py b/examples/python-distributed-zenoh/sensor_node.py new file mode 100755 index 0000000..9c00e4c --- /dev/null +++ b/examples/python-distributed-zenoh/sensor_node.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 +""" +Distributed Sensor Node using Dora +Publishes sensor data that will be routed via Dora's Zenoh integration. +""" + +import json +import random +import sys +from dora import Node + +def generate_sensor_data(sensor_id, sensor_type): + """Generate simulated sensor data""" + if sensor_type == "temperature": + value = round(random.uniform(15.0, 35.0), 2) + unit = "celsius" + elif sensor_type == "humidity": + value = round(random.uniform(30.0, 90.0), 2) + unit = "percent" + elif sensor_type == "pressure": + value = round(random.uniform(980.0, 1050.0), 2) + unit = "hPa" + else: + value = round(random.uniform(0.0, 100.0), 2) + unit = "units" + + return { + "sensor_id": sensor_id, + "sensor_type": sensor_type, + "value": value, + "unit": unit + } + +def main(): + # Get configuration from command-line arguments + if len(sys.argv) < 3: + print("Usage: sensor_node.py ") + print("Example: sensor_node.py sensor_1 temperature") + sys.exit(1) + + sensor_id = sys.argv[1] + sensor_type = sys.argv[2] + + print(f"=== Sensor Node: {sensor_id} ===") + print(f"Type: {sensor_type}") + + # Initialize the Dora node + # Dora handles all Zenoh communication automatically + node = Node() + + print(f"Sensor node {sensor_id} started!") + print("Data will be automatically routed via Dora's Zenoh integration") + print("Press Ctrl+C to stop\n") + + message_count = 0 + + # Process Dora events + try: + for event in node: + event_type = event["type"] + + if event_type == "INPUT": + input_id = event["id"] + + if input_id == "tick": + # Generate sensor data + message_count += 1 + data = generate_sensor_data(sensor_id, sensor_type) + + # Serialize to JSON bytes + payload = json.dumps(data).encode('utf-8') + + # Send via Dora - it will automatically route via Zenoh if needed + node.send_output("data", payload) + print(f"[{message_count:04d}] Sent: {sensor_type}={data['value']}{data['unit']}") + + elif event_type == "STOP": + print("Received stop signal") + break + + elif event_type == "INPUT_CLOSED": + print(f"Input `{event['id']}` was closed") + + except KeyboardInterrupt: + print("\n\nReceived Ctrl+C, shutting down...") + + print(f"Sensor node {sensor_id} exited successfully") + +if __name__ == "__main__": + main() diff --git a/examples/python-distributed-zenoh/test_simple.sh b/examples/python-distributed-zenoh/test_simple.sh new file mode 100755 index 0000000..5d04780 --- /dev/null +++ b/examples/python-distributed-zenoh/test_simple.sh @@ -0,0 +1,58 @@ +#!/bin/bash +# Simple test script to debug Dora distributed setup + +echo "=== Testing Dora Distributed Setup ===" +echo "" + +# Clean up +echo "1. Cleaning up any existing processes..." +pkill -f "dora coordinator" 2>/dev/null +pkill -f "dora daemon" 2>/dev/null +sleep 2 + +# Test coordinator +echo "" +echo "2. Starting coordinator..." +dora coordinator & +COORDINATOR_PID=$! +echo " Coordinator PID: $COORDINATOR_PID" +sleep 5 + +if ! ps -p $COORDINATOR_PID > /dev/null; then + echo " ERROR: Coordinator is not running!" + exit 1 +fi +echo " ✓ Coordinator is running" + +# Test one daemon +echo "" +echo "3. Starting edge1 daemon..." +dora daemon --machine-id edge1 & +DAEMON1_PID=$! +echo " Daemon PID: $DAEMON1_PID" +sleep 3 + +if ! ps -p $DAEMON1_PID > /dev/null; then + echo " ERROR: Daemon edge1 failed to start or crashed!" + kill $COORDINATOR_PID 2>/dev/null + exit 1 +fi +echo " ✓ Daemon edge1 is running" + +# List running dora processes +echo "" +echo "4. Current Dora processes:" +ps aux | grep -E "dora (coordinator|daemon)" | grep -v grep + +echo "" +echo "5. Testing dora list command..." +dora list + +echo "" +echo "=== All tests passed! ===" +echo "Press Ctrl+C to stop all processes" +echo "" + +trap "echo ''; echo 'Cleaning up...'; kill $COORDINATOR_PID $DAEMON1_PID 2>/dev/null; exit 0" INT + +wait diff --git a/examples/python-zenoh-dataflow/.gitignore b/examples/python-zenoh-dataflow/.gitignore new file mode 100644 index 0000000..0f22dd7 --- /dev/null +++ b/examples/python-zenoh-dataflow/.gitignore @@ -0,0 +1,11 @@ +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +dist/ +build/ +*.log +out/ +CLAUDE.md diff --git a/examples/python-zenoh-dataflow/README.md b/examples/python-zenoh-dataflow/README.md new file mode 100644 index 0000000..1aff358 --- /dev/null +++ b/examples/python-zenoh-dataflow/README.md @@ -0,0 +1,122 @@ +# Python Dora-Zenoh Integration Example + +This example shows how to connect Dora with [Zenoh](https://zenoh.io/) for bidirectional communication using Python. + +## Overview + +Two components communicate with each other: + +1. **Dora Node** (Python): Publishes to and subscribes from Zenoh topics +2. **Zenoh App** (Python): Exchanges messages with the Dora node through Zenoh + +## Structure + +- `dataflow.yml`: Dora dataflow configuration +- `dora_node.py`: The Dora node implementation with Zenoh integration +- `zenoh_app.py`: A standalone Zenoh application +- `requirements.txt`: Python dependencies + +## Prerequisites + +- Python 3.8+ +- Dora installed and available in your PATH or set via the `DORA` environment variable +- Python packages: `dora-rs` and `eclipse-zenoh` + +## Installation + +Install the required Python packages: + +```bash +pip install -r requirements.txt +``` + +## How It Works + +- **Dora Node**: + - Publishes "Hello" messages to `dora/data` every 500ms + - Subscribes to messages on `zenoh/data` + - Runs continuously until Ctrl+C + +- **Zenoh App**: + - Subscribes to `dora/data` + - After receiving 5 messages, starts publishing to `zenoh/data` + - Continues both receiving and publishing until Ctrl+C + +## Running the Example + +### Option 1: Manual Run (Recommended for Testing) + +**Terminal 1 - Start Dora dataflow:** +```bash +dora up +dora start dataflow.yml +``` + +**Terminal 2 - Run Zenoh app:** +```bash +python3 zenoh_app.py +``` + +To stop: +- Press `Ctrl+C` in Terminal 2 to stop the Zenoh app +- Press `Ctrl+C` in Terminal 1 to stop the Dora node, or run: +```bash +dora destroy dataflow.yml +``` + +### Option 2: Using Dora Daemon + +```bash +dora daemon --run-dataflow dataflow.yml +``` + +Then in another terminal: +```bash +python3 zenoh_app.py +``` + +## Expected Output + +**From dora_node.py:** +``` +Initializing Zenoh session... +Declaring Zenoh publisher for 'dora/data'... +Declaring Zenoh subscriber for 'zenoh/data'... +Dora node with Zenoh integration started! +Press Ctrl+C to stop... +Publishing message: Hello from Dora node! Message #1 +Publishing message: Hello from Dora node! Message #2 +Publishing message: Hello from Dora node! Message #3 +... +>> [Subscriber] Received PUT ('zenoh/data': 'Hello from Zenoh app, payload counter: 0') +>> [Subscriber] Received PUT ('zenoh/data': 'Hello from Zenoh app, payload counter: 1') +... +(continues until Ctrl+C) +``` + +**From zenoh_app.py:** +``` +Opening Zenoh session... +Subscribing to dora/data... +Waiting for 5 messages from Dora node before publishing... +>> [Subscriber] Received PUT ('dora/data': 'Hello from Dora node! Message #1') +>> [Subscriber] Received PUT ('dora/data': 'Hello from Dora node! Message #2') +... +>> [Subscriber] Received PUT ('dora/data': 'Hello from Dora node! Message #5') + +Received 5 messages! Creating publisher for 'zenoh/data'... +Publishing to Dora node (Press Ctrl+C to stop)... + +<< [Publisher] Sent payload(counter = 0) +>> [Subscriber] Received PUT ('dora/data': 'Hello from Dora node! Message #6') +<< [Publisher] Sent payload(counter = 1) +>> [Subscriber] Received PUT ('dora/data': 'Hello from Dora node! Message #7') +... +(continues bidirectional communication until Ctrl+C) +``` + +## Troubleshooting + +- Ensure Zenoh can communicate (check firewall settings) +- Make sure both `dora-rs` and `eclipse-zenoh` are installed +- Check that Python 3.8+ is being used diff --git a/examples/python-zenoh-dataflow/dataflow.yml b/examples/python-zenoh-dataflow/dataflow.yml new file mode 100644 index 0000000..e54007b --- /dev/null +++ b/examples/python-zenoh-dataflow/dataflow.yml @@ -0,0 +1,6 @@ +nodes: + - id: dora-zenoh-publisher + path: python3 + args: dora_node.py + inputs: + tick: dora/timer/millis/500 diff --git a/examples/python-zenoh-dataflow/dora_node.py b/examples/python-zenoh-dataflow/dora_node.py new file mode 100755 index 0000000..36a944a --- /dev/null +++ b/examples/python-zenoh-dataflow/dora_node.py @@ -0,0 +1,77 @@ +#!/usr/bin/env python3 +""" +Dora node that integrates with Zenoh. +- Receives tick events from Dora +- Publishes messages to Zenoh topic 'dora/data' +- Subscribes to Zenoh topic 'zenoh/data' +- Runs continuously until Ctrl+C +""" + +import zenoh +from dora import Node + +def main(): + # Initialize the Dora node + node = Node() + + # Initialize Zenoh + print("Initializing Zenoh session...") + config = zenoh.Config() + session = zenoh.open(config) + + print("Declaring Zenoh publisher for 'dora/data'...") + publisher = session.declare_publisher("dora/data") + + print("Declaring Zenoh subscriber for 'zenoh/data'...") + subscriber = session.declare_subscriber("zenoh/data") + + print("Dora node with Zenoh integration started!") + print("Press Ctrl+C to stop...") + + message_counter = 0 + + # Process events + try: + for event in node: + event_type = event["type"] + + if event_type == "INPUT": + # Handle Dora input events + input_id = event["id"] + + if input_id == "tick": + # Increment counter for message numbering + message_counter += 1 + + # Create a hello message + message = f"Hello from Dora node! Message #{message_counter}" + + # Publish to Zenoh + print(f"Publishing message: {message}") + publisher.put(message) + + elif event_type == "STOP": + print("Received stop signal") + break + + elif event_type == "INPUT_CLOSED": + print(f"Input `{event['id']}` was closed") + + # Check for Zenoh messages (non-blocking) + try: + sample = subscriber.try_recv() + if sample is not None: + payload = sample.payload.to_string() + print(f">> [Subscriber] Received {sample.kind} ('{sample.key_expr}': '{payload}')") + except: + pass # No message available + + except KeyboardInterrupt: + print("\nReceived Ctrl+C, shutting down...") + + # Cleanup + session.close() + print("Dora node exited successfully") + +if __name__ == "__main__": + main() diff --git a/examples/python-zenoh-dataflow/requirements.txt b/examples/python-zenoh-dataflow/requirements.txt new file mode 100644 index 0000000..906584a --- /dev/null +++ b/examples/python-zenoh-dataflow/requirements.txt @@ -0,0 +1,2 @@ +dora-rs>=0.3.0 +eclipse-zenoh>=1.0.0 diff --git a/examples/python-zenoh-dataflow/zenoh_app.py b/examples/python-zenoh-dataflow/zenoh_app.py new file mode 100755 index 0000000..17489ed --- /dev/null +++ b/examples/python-zenoh-dataflow/zenoh_app.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python3 +""" +Standalone Zenoh application that communicates with the Dora node. +- Subscribes to 'dora/data' (receives from Dora node) +- After receiving 5 messages, starts publishing to 'zenoh/data' +- Runs continuously until Ctrl+C +""" + +import time +import zenoh + +def main(): + # Hardcoded parameters + subscribe_topic = "dora/data" + publish_topic = "zenoh/data" + + print(f"Zenoh App - Will subscribe to: {subscribe_topic}") + + # Initialize Zenoh + print("Opening Zenoh session...") + config = zenoh.Config() + session = zenoh.open(config) + + # Subscribe to the topic + print(f"Subscribing to {subscribe_topic}...") + subscriber = session.declare_subscriber(subscribe_topic) + + # Receive 5 messages first before starting to publish + count = 0 + print("Waiting for 5 messages from Dora node before publishing...") + try: + while count < 5: + sample = subscriber.recv() + if sample is not None: + payload = sample.payload.to_string() + print(f">> [Subscriber] Received {sample.kind} ('{sample.key_expr}': '{payload}')") + count += 1 + except KeyboardInterrupt: + print("\nExiting before publishing phase...") + session.close() + return + + # Create a publisher for sending messages back to Dora + print(f"\nReceived 5 messages! Creating publisher for '{publish_topic}'...") + publisher = session.declare_publisher(publish_topic) + + # Start publishing messages and continue receiving + counter = 0 + print("Publishing to Dora node (Press Ctrl+C to stop)...\n") + + try: + while True: + # Continue receiving messages from Dora + try: + sample = subscriber.try_recv() + if sample is not None: + payload = sample.payload.to_string() + print(f">> [Subscriber] Received {sample.kind} ('{sample.key_expr}': '{payload}')") + except: + pass # No message available + + # Publish message + time.sleep(1) + message = f"Hello from Zenoh app, payload counter: {counter}" + print(f"<< [Publisher] Sent payload(counter = {counter})") + publisher.put(message) + counter += 1 + except KeyboardInterrupt: + print("\n\nReceived Ctrl+C, exiting...") + + session.close() + print("Zenoh app exited successfully") + +if __name__ == "__main__": + main() diff --git a/examples/zenoh-dataflow/.gitignore b/examples/rust-zenoh-dataflow/.gitignore similarity index 100% rename from examples/zenoh-dataflow/.gitignore rename to examples/rust-zenoh-dataflow/.gitignore diff --git a/examples/zenoh-dataflow/README.md b/examples/rust-zenoh-dataflow/README.md similarity index 100% rename from examples/zenoh-dataflow/README.md rename to examples/rust-zenoh-dataflow/README.md diff --git a/examples/zenoh-dataflow/dataflow.yml b/examples/rust-zenoh-dataflow/dataflow.yml similarity index 68% rename from examples/zenoh-dataflow/dataflow.yml rename to examples/rust-zenoh-dataflow/dataflow.yml index 10a5fd5..7c92e30 100644 --- a/examples/zenoh-dataflow/dataflow.yml +++ b/examples/rust-zenoh-dataflow/dataflow.yml @@ -1,6 +1,6 @@ nodes: - id: dora-zenoh-publisher build: bash -c "cd dora-node && cargo build --release" - path: ./dora-node/target/release/dora-node + path: ./dora-node/target/aarch64-apple-darwin/release/dora-node inputs: tick: dora/timer/millis/500 diff --git a/examples/zenoh-dataflow/dora-node/Cargo.lock b/examples/rust-zenoh-dataflow/dora-node/Cargo.lock similarity index 97% rename from examples/zenoh-dataflow/dora-node/Cargo.lock rename to examples/rust-zenoh-dataflow/dora-node/Cargo.lock index f436e80..e1cf832 100644 --- a/examples/zenoh-dataflow/dora-node/Cargo.lock +++ b/examples/rust-zenoh-dataflow/dora-node/Cargo.lock @@ -511,6 +511,15 @@ dependencies = [ "inout", ] +[[package]] +name = "colored" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e" +dependencies = [ + "windows-sys 0.48.0", +] + [[package]] name = "combine" version = "4.6.7" @@ -530,6 +539,19 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "console" +version = "0.15.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width 0.2.2", + "windows-sys 0.59.0", +] + [[package]] name = "const-oid" version = "0.9.6" @@ -739,19 +761,6 @@ dependencies = [ "syn 2.0.106", ] -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", -] - [[package]] name = "data-encoding" version = "2.9.0" @@ -865,8 +874,8 @@ dependencies = [ [[package]] name = "dora-arrow-convert" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "arrow", "chrono", @@ -877,8 +886,8 @@ dependencies = [ [[package]] name = "dora-core" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "dora-message", "dunce", @@ -892,6 +901,7 @@ dependencies = [ "serde-with-expand-env", "serde_json", "serde_yaml", + "splitty", "tokio", "tracing", "uuid", @@ -900,8 +910,8 @@ dependencies = [ [[package]] name = "dora-message" -version = "0.5.0" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.6.0" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "aligned-vec", "arrow-data", @@ -922,8 +932,8 @@ dependencies = [ [[package]] name = "dora-metrics" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "eyre", "opentelemetry 0.29.1", @@ -946,12 +956,15 @@ dependencies = [ [[package]] name = "dora-node-api" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "aligned-vec", "arrow", + "arrow-json", + "arrow-schema", "bincode", + "colored", "dora-arrow-convert", "dora-core", "dora-message", @@ -962,6 +975,8 @@ dependencies = [ "futures", "futures-concurrency", "futures-timer", + "inquire", + "is-terminal", "serde_json", "serde_yaml", "shared-memory-server", @@ -972,12 +987,13 @@ dependencies = [ [[package]] name = "dora-tracing" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "eyre", - "opentelemetry 0.18.0", + "opentelemetry 0.23.0", "opentelemetry-jaeger", + "opentelemetry_sdk 0.23.0", "tracing", "tracing-opentelemetry", "tracing-subscriber", @@ -1001,6 +1017,12 @@ version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + [[package]] name = "equivalent" version = "1.0.2" @@ -1267,6 +1289,15 @@ dependencies = [ "slab", ] +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + [[package]] name = "generator" version = "0.8.7" @@ -1711,6 +1742,22 @@ dependencies = [ "generic-array", ] +[[package]] +name = "inquire" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a" +dependencies = [ + "bitflags 2.9.4", + "console", + "dyn-clone", + "fxhash", + "newline-converter", + "once_cell", + "unicode-segmentation", + "unicode-width 0.1.14", +] + [[package]] name = "integer-encoding" version = "3.0.4" @@ -1753,6 +1800,17 @@ dependencies = [ "serde", ] +[[package]] +name = "is-terminal" +version = "0.4.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" +dependencies = [ + "hermit-abi", + "libc", + "windows-sys 0.52.0", +] + [[package]] name = "itertools" version = "0.13.0" @@ -2061,6 +2119,15 @@ dependencies = [ "getrandom 0.2.16", ] +[[package]] +name = "newline-converter" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b6b097ecb1cbfed438542d16e84fd7ad9b0c76c8a65b7f9039212a3d14dc7f" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "nix" version = "0.23.2" @@ -2288,12 +2355,16 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "opentelemetry" -version = "0.18.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e" +checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76" dependencies = [ - "opentelemetry_api", - "opentelemetry_sdk 0.18.0", + "futures-core", + "futures-sink", + "js-sys", + "once_cell", + "pin-project-lite", + "thiserror 1.0.69", ] [[package]] @@ -2326,17 +2397,16 @@ dependencies = [ [[package]] name = "opentelemetry-jaeger" -version = "0.17.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e785d273968748578931e4dc3b4f5ec86b26e09d9e0d66b55adda7fce742f7a" +checksum = "501b471b67b746d9a07d4c29f8be00f952d1a2eca356922ede0098cbaddff19f" dependencies = [ "async-trait", - "futures", - "futures-executor", - "once_cell", - "opentelemetry 0.18.0", + "futures-core", + "futures-util", + "opentelemetry 0.23.0", "opentelemetry-semantic-conventions", - "thiserror 1.0.69", + "opentelemetry_sdk 0.23.0", "thrift", "tokio", ] @@ -2375,12 +2445,9 @@ dependencies = [ [[package]] name = "opentelemetry-semantic-conventions" -version = "0.10.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b02e0230abb0ab6636d18e2ba8fa02903ea63772281340ccac18e0af3ec9eeb" -dependencies = [ - "opentelemetry 0.18.0", -] +checksum = "1869fb4bb9b35c5ba8a1e40c9b128a7b4c010d07091e864a29da19e4fe2ca4d7" [[package]] name = "opentelemetry-system-metrics" @@ -2395,37 +2462,21 @@ dependencies = [ "tracing", ] -[[package]] -name = "opentelemetry_api" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22" -dependencies = [ - "fnv", - "futures-channel", - "futures-util", - "indexmap 1.9.3", - "js-sys", - "once_cell", - "pin-project-lite", - "thiserror 1.0.69", -] - [[package]] name = "opentelemetry_sdk" -version = "0.18.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113" +checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd" dependencies = [ "async-trait", - "crossbeam-channel", - "dashmap", - "fnv", "futures-channel", "futures-executor", "futures-util", + "glob", + "lazy_static", "once_cell", - "opentelemetry_api", + "opentelemetry 0.23.0", + "ordered-float 4.6.0", "percent-encoding", "rand 0.8.5", "thiserror 1.0.69", @@ -2461,31 +2512,27 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ordered-float" -version = "1.1.1" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" +checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ "num-traits", ] [[package]] -name = "parking" -version = "2.2.1" +name = "ordered-float" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" +checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" +dependencies = [ + "num-traits", +] [[package]] -name = "parking_lot_core" -version = "0.9.11" +name = "parking" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets 0.52.6", -] +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "paste" @@ -2889,15 +2936,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "redox_syscall" -version = "0.5.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" -dependencies = [ - "bitflags 2.9.4", -] - [[package]] name = "redox_users" version = "0.4.6" @@ -3496,8 +3534,8 @@ dependencies = [ [[package]] name = "shared-memory-server" -version = "0.3.12" -source = "git+https://github.com/dora-rs/dora.git?rev=77c277910b0ce87b902faa1ab369a33cbcd555f4#77c277910b0ce87b902faa1ab369a33cbcd555f4" +version = "0.3.13" +source = "git+https://github.com/dora-rs/dora.git#31c9d162975258e0fa85bc9af08d72dacff5e507" dependencies = [ "bincode", "eyre", @@ -3632,6 +3670,12 @@ dependencies = [ "der", ] +[[package]] +name = "splitty" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2db70a1e6827e4d71c655b606caf1346862c38ae52ab4f58c32635e7c7aedd67" + [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -3771,14 +3815,14 @@ dependencies = [ [[package]] name = "thrift" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09678c4cdbb4eed72e18b7c2af1329c69825ed16fcbac62d083fc3e2b0590ff0" +checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ "byteorder", "integer-encoding", "log", - "ordered-float", + "ordered-float 2.10.1", "threadpool", ] @@ -4069,17 +4113,6 @@ dependencies = [ "valuable", ] -[[package]] -name = "tracing-log" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" -dependencies = [ - "log", - "once_cell", - "tracing-core", -] - [[package]] name = "tracing-log" version = "0.2.0" @@ -4093,16 +4126,20 @@ dependencies = [ [[package]] name = "tracing-opentelemetry" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de" +checksum = "f68803492bf28ab40aeccaecc7021096bd256baf7ca77c3d425d89b35a7be4e4" dependencies = [ + "js-sys", "once_cell", - "opentelemetry 0.18.0", + "opentelemetry 0.23.0", + "opentelemetry_sdk 0.23.0", + "smallvec", "tracing", "tracing-core", - "tracing-log 0.1.4", + "tracing-log", "tracing-subscriber", + "web-time", ] [[package]] @@ -4132,7 +4169,7 @@ dependencies = [ "thread_local", "tracing", "tracing-core", - "tracing-log 0.2.0", + "tracing-log", "tracing-serde", ] @@ -4213,6 +4250,24 @@ version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-width" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + [[package]] name = "unicode-xid" version = "0.2.6" diff --git a/examples/zenoh-dataflow/dora-node/Cargo.toml b/examples/rust-zenoh-dataflow/dora-node/Cargo.toml similarity index 66% rename from examples/zenoh-dataflow/dora-node/Cargo.toml rename to examples/rust-zenoh-dataflow/dora-node/Cargo.toml index e4e00db..654ef9c 100644 --- a/examples/zenoh-dataflow/dora-node/Cargo.toml +++ b/examples/rust-zenoh-dataflow/dora-node/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [workspace] [dependencies] -dora-node-api = { git = "https://github.com/dora-rs/dora.git", rev = "77c277910b0ce87b902faa1ab369a33cbcd555f4"} +dora-node-api = { git = "https://github.com/dora-rs/dora.git" } eyre = "0.6.8" futures = { version = "0.3.31", features = ["thread-pool"] } futures-timer = "3.0.3" diff --git a/examples/zenoh-dataflow/dora-node/src/main.rs b/examples/rust-zenoh-dataflow/dora-node/src/main.rs similarity index 100% rename from examples/zenoh-dataflow/dora-node/src/main.rs rename to examples/rust-zenoh-dataflow/dora-node/src/main.rs diff --git a/examples/zenoh-dataflow/main.rs b/examples/rust-zenoh-dataflow/main.rs similarity index 100% rename from examples/zenoh-dataflow/main.rs rename to examples/rust-zenoh-dataflow/main.rs diff --git a/examples/zenoh-dataflow/zenoh-app/Cargo.lock b/examples/rust-zenoh-dataflow/zenoh-app/Cargo.lock similarity index 100% rename from examples/zenoh-dataflow/zenoh-app/Cargo.lock rename to examples/rust-zenoh-dataflow/zenoh-app/Cargo.lock diff --git a/examples/zenoh-dataflow/zenoh-app/Cargo.toml b/examples/rust-zenoh-dataflow/zenoh-app/Cargo.toml similarity index 100% rename from examples/zenoh-dataflow/zenoh-app/Cargo.toml rename to examples/rust-zenoh-dataflow/zenoh-app/Cargo.toml diff --git a/examples/zenoh-dataflow/zenoh-app/src/main.rs b/examples/rust-zenoh-dataflow/zenoh-app/src/main.rs similarity index 100% rename from examples/zenoh-dataflow/zenoh-app/src/main.rs rename to examples/rust-zenoh-dataflow/zenoh-app/src/main.rs