Allow more than one stat category to be specified in "show stats"
e.g. "show stats httpserver.9000 server.network"cpu-performance
parent
5b1a9f84fd
commit
05790ba1cf
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace OpenSim.Framework.Monitoring
|
namespace OpenSim.Framework.Monitoring
|
||||||
|
@ -68,13 +69,14 @@ namespace OpenSim.Framework.Monitoring
|
||||||
"General",
|
"General",
|
||||||
false,
|
false,
|
||||||
"show stats",
|
"show stats",
|
||||||
"show stats [list|all|<category>[.<container>]",
|
"show stats [list|all|(<category>[.<container>])+",
|
||||||
"Show statistical information for this server",
|
"Show statistical information for this server",
|
||||||
"If no final argument is specified then legacy statistics information is currently shown.\n"
|
"If no final argument is specified then legacy statistics information is currently shown.\n"
|
||||||
+ "If list is specified then statistic categories are shown.\n"
|
+ "'list' argument will show statistic categories.\n"
|
||||||
+ "If all is specified then all registered statistics are shown.\n"
|
+ "'all' will show all statistics.\n"
|
||||||
+ "If a category name is specified then only statistics from that category are shown.\n"
|
+ "A <category> name will show statistics from that category.\n"
|
||||||
+ "If a category container is also specified then only statistics from that category in that container are shown.\n"
|
+ "A <category>.<container> name will show statistics from that category in that container.\n"
|
||||||
|
+ "More than one name can be given separated by spaces.\n"
|
||||||
+ "THIS STATS FACILITY IS EXPERIMENTAL AND DOES NOT YET CONTAIN ALL STATS",
|
+ "THIS STATS FACILITY IS EXPERIMENTAL AND DOES NOT YET CONTAIN ALL STATS",
|
||||||
HandleShowStatsCommand);
|
HandleShowStatsCommand);
|
||||||
}
|
}
|
||||||
|
@ -85,7 +87,8 @@ namespace OpenSim.Framework.Monitoring
|
||||||
|
|
||||||
if (cmd.Length > 2)
|
if (cmd.Length > 2)
|
||||||
{
|
{
|
||||||
string name = cmd[2];
|
foreach (string name in cmd.Skip(2))
|
||||||
|
{
|
||||||
string[] components = name.Split('.');
|
string[] components = name.Split('.');
|
||||||
|
|
||||||
string categoryName = components[0];
|
string categoryName = components[0];
|
||||||
|
@ -129,6 +132,7 @@ namespace OpenSim.Framework.Monitoring
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Legacy
|
// Legacy
|
||||||
|
|
Loading…
Reference in New Issue