You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto client = MonitoringFactory::GetPullClient("<kafka-server:9092>", topics, "<client-id>");
242
249
for (;;) {
243
250
auto metrics = client->pull();
244
251
if (!metrics.empty()) {
@@ -248,5 +255,10 @@ for (;;) {
248
255
}
249
256
```
250
257
258
+
Run-time parameters:
259
+
-`<topic-to-subscribe>` - List of topics to subscribe
260
+
-`<kafka-server:9092>` - Kafka broker (staging or production)
261
+
-`<client_id>` - unique, self-explainable string describing the client, eg. `dcs-link-status` or `its-link-status`.
262
+
251
263
### Data format
252
264
Native data format is [Influx Line Protocol](https://docs.influxdata.com/influxdb/latest/reference/syntax/line-protocol/) but metrics can be converted into any format listed in here: https://docs.influxdata.com/telegraf/latest/data_formats/output/
0 commit comments