Skip to content

Commit

Permalink
Merge pull request #1826 from imbeacon/gateway/report-strategy-incons…
Browse files Browse the repository at this point in the history
…istencies

Fixed inconsistencies in examples for report strategy
  • Loading branch information
ashvayka authored Feb 6, 2025
2 parents 7106809 + 891d38c commit 9216ba5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/iot-gateway/features-overview/report-strategy.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ Here are some examples demonstrating how to configure the **Report Strategy** at
}
}
```
**Note**: In case of using UI, you can set the report strategy in the **general tab** of connector configuration.

- **Result**:
- Data from the Modbus connector is reported every 60 seconds.
Expand All @@ -172,10 +173,10 @@ Here are some examples demonstrating how to configure the **Report Strategy** at
}
```

- **MQTT Connector Device Configuration** (in `dataMapping`):
- **MQTT Connector Device Configuration** (in `mapping`):
```json
{
"dataMapping": [
"mapping": [
{
"topicFilter": "...",
"deviceInfo": "...",
Expand Down Expand Up @@ -216,9 +217,9 @@ Here are some examples demonstrating how to configure the **Report Strategy** at
"timeseries": [
{
"tag": "valveState",
"type": "long",
"type": "uint16",
"functionCode": 4,
"registerCount": 1,
"objectsCount": 1,
"address": 3,
"reportStrategy": {
"type": "ON_CHANGE"
Expand Down Expand Up @@ -277,7 +278,7 @@ Here are some examples demonstrating how to configure the **Report Strategy** at
- **MQTT Connector Device Configuration**:
```json
{
"dataMapping": [
"mapping": [
{
"topicFilter": "...",
"deviceInfo": "...",
Expand Down

0 comments on commit 9216ba5

Please sign in to comment.