Skip to content

Commit 98d9712

Browse files
committed
fix: Correct parameters names in prometheus destination
1 parent 21c0790 commit 98d9712

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/reference/database/sources_destinations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ The list of accepted parameters are:
185185
|`uri` | string | `u` | `127.0.0.1` | No | The IP address of your Prometheus instance |
186186
|`port` | int | `p` | N/A | Yes | The port of communication |
187187
|`tags` | string | `t` | N/A | No | List of metadata keys of the report separated by `,` that will be kept. `sensor` and `target` are always kept as report metadata |
188-
|`metric_name` | string | `M` | N/A | Yes | The exposed metric name |
189-
|`metric_description` | string | `d` | `"energy consumption"` | No | The exposed metric description |
188+
|`metric-name` | string | `M` | N/A | Yes | The exposed metric name |
189+
|`metric-description` | string | `d` | `"energy consumption"` | No | The exposed metric description |
190190
|`name` | string | `n` | `"pusher_prom"` | No | The related pusher name |
191191
|`model` | string | `m` | `"PowerReport"` | No | The Report type exposed by Prometheus |
192192

@@ -203,6 +203,6 @@ Below you find an example of configuration excerpt for this kind of Destination.
203203
"type": "prometheus",
204204
"uri": "127.0.0.1",
205205
"port": 8080,
206-
"metric_name": test
206+
"metric-name": "test"
207207
}
208208
```

0 commit comments

Comments
 (0)