Add ToOSDMap() overrides to the Stat subclass CounterStat.

Add a GetStatsAsOSDMap method to StatsManager which allows the filtered
fetching of stats for eventual returning over the internets.
This commit is contained in:
Robert Adams
2013-07-12 14:04:14 -07:00
parent 3d700bb42c
commit fa02f28dbf
3 changed files with 88 additions and 0 deletions

View File

@@ -242,6 +242,7 @@ namespace OpenSim.Framework.Monitoring
ret.Add("Description", OSD.FromString(Description));
ret.Add("UnitName", OSD.FromString(UnitName));
ret.Add("Value", OSD.FromReal(Value));
ret.Add("StatType", "Stat"); // used by overloading classes to denote type of stat
return ret;
}