Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi Everyone,
I use influxdb to save thing's proprierties as time series data.
There is a way to store a property ad a "influxdb tag"?
Why I need this?
Example:
I have three properties: productionId, temperature, humidity
I want to query the database to retrieve the temperature and humidity where productionId is equals to a specific Id.
I don't know if I explained it clearly but I hope you'll help me.
Hi @Zar.
We're not totally clear on what you're asking. Are you actually using influxdb as a persistent provider defined in ThingWorx? If so, have you tried querying the history for the specific device?
If this doesn't lead you to a solution, please provide more information regarding your use case.
Regards.
--Sharon
I've done this recently.
You cannot use Stream or Value Stream for using Influx Tag.
You can use influx api to insert data with Influx Tag. https://docs.influxdata.com/influxdb/v1.8/guides/write_data/
Then you can query data with group by productionId.