Hello.
I have a several agents which sends data to kapacitor with different databases and retention policies. It’s not known in advance which agent will write data to which databases, so I haven’t fixed set of dbrp-s.
I want to write task which will process all data what are coming to kapacitor and send it to remote InfluxDB.
If I write something like this
stream
|from()
.database('')
.retentionPolicy('')
.measurement('')
....
kapacitor throws error that dbrp
should be specified.
Is it possible to use TICK scripts without dbrp
declaration or specify some wildcard to solve this issue?
Thank you.