Hi all,
I’m a beginner in Telegraf and InfluxDB, and I configured input in Telegraf with OPC UA and with the follow configuration :
: nodes = [
{name="Tag1", namespace="2", identifier_type="s", identifier="Channel1.Device1.Tag1"},
{name="Tag2", namespace="2", identifier_type="s", identifier="Channel1.Device1.Tag2"},
{name="Tag3", namespace="2", identifier_type="s", identifier="Channel1.Device1.Tag3"}
]
I get in database for each Tag(n) the correspondent value like the follow one:
"host","id","Quality","timestamp","Tag1","Tag2","Tag3"
timestamp … Tag1_val,null, null
timestamp … null,Tag2_val, null
timestamp … null, null, Tag3_val
and I would like the follow:
"host","id","Quality","timestamp","Tag"
timestamp … Tag1_val
timestamp … Tag2_val
timestamp … Tag3_val
who can suggest me which could be the configuration?
Best Regards
Alberto