Collecting text output with telegraf

Hi, i’m using telegraf + influxdb for metric collection, is there a way to text output?
If i do snmptable query from linux machine i get value:

index SysGroupRowStatus
1 active
2 active
3 active
4 active

But in influx i got only number:

index SysGroupRowStatus
1 1
2 1
3 1
4 1

With snmpwalk i get output with number:

SysGroupRowStatus.1 = INTEGER: active(1)
SysGroupRowStatus.3 = INTEGER: active(1)
SysGroupRowStatus.3 = INTEGER: active(1)
SysGroupRowStatus.4 = INTEGER: active(1)

Looks like influx included only number from brackets

Is there a way to return text instead of number?

Thanks!