Stat panel posibility to set description based on variable

Hello,

I am using grafana Stat panel and i would like to add to description a value that is comming from an Influx Query.
I am monitoring network elements with Telegraf doing a snmp query in order to get all information that is important to me.

[[inputs.snmp.table]]
name = “ciscoInterface”
inherit_tags = [ “sysName”,“sysLocation” ]
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifHCInOctets”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifHCOutOctets”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifDescr”
is_tag = true
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifAlias”
is_tag = true
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifHighSpeed”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifOperStatus”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifAdminStatus”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifLastChange”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifInErrors”
[[inputs.snmp.table.field]]
oid = “IF-MIB::ifOutErrors”

I have a Stat panel that shows ifOperStatus of every interface that is present in network machine, but I would like to display the description of that interface. The Stat panel is repeated on ifDescr.
The problem is that IfAlias is the Description of the interface and IfDescr the name of the interface.
If I declare the following variables in Influx:

show tag values from ciscoInterface with key = “ifDescr” where sysName=~/$sysname/
show tag values from ciscoInterface with key = “ifAlias” where sysName=~/$sysname/ and ifDescr =~/$Interface/

I can only see the Description of the interface in case IfDescr variable is unique, i cannot see if there are several interfaces.