New measurement with the values of other measurements

Hello, I’m monitoring my network with influxdb/telegraf using SNMP and i’m storing hostname, IP etc …
I was wondering if it’s possible to create a new measurement that add the string value of 2 other measurements
for example in the photo i have “type” and “interface-comment”
image
and what i want is to have a new measurement let’s called it X that has the value of interface-comment-type (ex. X =ADSL - Routers)

You can use Kapacitor UDFs to achieve this. Using stream to get data, processing them in a python or golang UDF and writing back to new measurement should be easy enough.