The OIDs you're getting contain the decimal values of each of the ascii characties in the probe test name.
It's not pretty.
The format for the name you're seeking is defined as "pingCtlTestName" in the rpm mib.
See /usr/share/snmp/mibs/mib-jnx-rpm.txt on your Space device for the exact definitions.
If you want to extract the name string from that OID, you have to map each of the decimal values to their corresponding ascii character and concatenate them.
9 -> \t (tab)
71 -> "G"
82 -> "R"
74 -> "J",
etc.
So, this oid: 9.71.82.74.75.84.78.48.48.49.12.116.111.95.71.83.74.75.84.78.48.48.49.1.1
...translates to this string:
GRJKTN001
to_GSJKTN001
and this oid: 9.71.82.74.75.84.78.48.48.49.12.116.111.95.71.83.74.75.84.78.48.48.50.1.1
...translates to this string:
GRJKTN001
to_GSJKTN002
I can hear you groaning from here. 😉
Here's a perl script that will help you deocode/debug:
#!/usr/bin/perl
use strict;
use warnings;
my $input = $ARGV[0];
print "input = $input\n";
my @oid = split('\.', $input);
foreach my $val (@oid) {
print chr($val);
}
print "\n";
exit