public class NetricsCmdStats
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CMD_ALL
Special "command" that means all commands.
|
static java.lang.String |
CMD_CHARMAP_CREATE
The Character Map Create command.
|
static java.lang.String |
CMD_CHARMAP_LIST
The Character Map List command.
|
static java.lang.String |
CMD_IDX_LIST
The index list command (for partitioned indexes).
|
static java.lang.String |
CMD_MODEL_CREATE
The Learning Model create/load command.
|
static java.lang.String |
CMD_MODEL_DELETE
The Learning Model delete command.
|
static java.lang.String |
CMD_MODEL_EVALUATE
The Learning Model evaluate command.
|
static java.lang.String |
CMD_MODEL_LIST
The Learning Model list command.
|
static java.lang.String |
CMD_REC_ADD
The record add command.
|
static java.lang.String |
CMD_REC_DELETE
The record delete command.
|
static java.lang.String |
CMD_REC_GET
The record get command.
|
static java.lang.String |
CMD_REC_REPLACE
The record replace command.
|
static java.lang.String |
CMD_REC_UPDATE
The record update command.
|
static java.lang.String |
CMD_SEARCH
The search (query) command.
|
static java.lang.String |
CMD_SVR_CMDSTATS
The fetch command statistics command.
|
static java.lang.String |
CMD_SVR_LOGOFF
The server turn Query logging off command.
|
static java.lang.String |
CMD_SVR_LOGON
The server turn Query logging on command.
|
static java.lang.String |
CMD_SVR_NOOP
The server No-Op (do nothing) command.
|
static java.lang.String |
CMD_SVR_SHUTDOWN
The server shutdown command.
|
static java.lang.String |
CMD_SVR_VERSION
The fetch server version info command.
|
static java.lang.String |
CMD_TBL_CHECKPOINT
The table checkpoint command.
|
static java.lang.String |
CMD_TBL_DELETE
The table delete command.
|
static java.lang.String |
CMD_TBL_DUMP
The table dump command (dump all records).
|
static java.lang.String |
CMD_TBL_LIST
The table list (table statistics) command.
|
static java.lang.String |
CMD_TBL_LOAD
The table load command.
|
static java.lang.String |
CMD_TBL_LOCK
The table lock command.
|
static java.lang.String |
CMD_TBL_MOVE
The table move (rename) command.
|
static java.lang.String |
CMD_TBL_RESTORE
The table restore command.
|
static java.lang.String |
CMD_TBL_UNLOCK
The table unlock command.
|
static java.lang.String |
CMD_THESAURUS_CREATE
The thesaurus create command (includes weighted dict and combined).
|
static java.lang.String |
CMD_THESAURUS_DELETE
The thesaurus delete command (includes weighted dict and combined).
|
static java.lang.String |
CMD_THESAURUS_LIST
The thesaurus list command (includes weighted dict and combined).
|
Constructor and Description |
---|
NetricsCmdStats()
To keep Java happy, never use this constructor
|
Modifier and Type | Method and Description |
---|---|
double |
avg_full()
The average full time for these commands completed
during the report time period.
|
double |
avg_overhead()
The average overhead time for these commands completed
during the report time period.
|
double |
avg_proc()
The average processing time for these commands completed
during the report time period.
|
java.lang.String |
cmd_name()
Return the command name.
|
double |
duration()
Return the number of milliseconds covered by this report.
|
double |
end_time()
Return the end time of this report.
|
double |
max_full()
The maximum full time for this command during the
report time period.
|
double |
max_overhead()
The maximum overhead time for this command during the
report time period.
|
double |
max_proc()
The maximum processing time for this command during the
report time period.
|
double |
max_thru()
The maximum throughput over a 1 minute period for commands
completed during the report time period.
|
double |
min_full()
The minimum full time for this command during the
report time period.
|
double |
min_overhead()
The minimum overhead time for this command during the
report time period.
|
double |
min_proc()
The minimum processing time for this command during the
report time period.
|
int |
num_cmds()
The number of these commands completed during the
report time period.
|
double |
start_time()
Return the start time of this report.
|
java.lang.String |
toString()
Return report as a string.
|
double |
tot_full()
The total full time for all of these commands completed
during the report time period.
|
double |
tot_overhead()
The total overhead time for all of these commands completed
during the report time period.
|
double |
tot_proc()
The total processing time for all of these commands completed
during the report time period.
|
public static final java.lang.String CMD_ALL
public static final java.lang.String CMD_TBL_LOAD
public static final java.lang.String CMD_TBL_DELETE
public static final java.lang.String CMD_TBL_MOVE
public static final java.lang.String CMD_TBL_CHECKPOINT
public static final java.lang.String CMD_TBL_RESTORE
public static final java.lang.String CMD_TBL_LIST
public static final java.lang.String CMD_IDX_LIST
public static final java.lang.String CMD_TBL_DUMP
public static final java.lang.String CMD_TBL_LOCK
public static final java.lang.String CMD_TBL_UNLOCK
public static final java.lang.String CMD_REC_GET
public static final java.lang.String CMD_REC_ADD
public static final java.lang.String CMD_REC_DELETE
public static final java.lang.String CMD_REC_REPLACE
public static final java.lang.String CMD_REC_UPDATE
public static final java.lang.String CMD_THESAURUS_CREATE
public static final java.lang.String CMD_THESAURUS_DELETE
public static final java.lang.String CMD_THESAURUS_LIST
public static final java.lang.String CMD_CHARMAP_CREATE
public static final java.lang.String CMD_CHARMAP_LIST
public static final java.lang.String CMD_MODEL_CREATE
public static final java.lang.String CMD_MODEL_DELETE
public static final java.lang.String CMD_MODEL_LIST
public static final java.lang.String CMD_MODEL_EVALUATE
public static final java.lang.String CMD_SEARCH
public static final java.lang.String CMD_SVR_SHUTDOWN
public static final java.lang.String CMD_SVR_NOOP
public static final java.lang.String CMD_SVR_LOGON
public static final java.lang.String CMD_SVR_LOGOFF
public static final java.lang.String CMD_SVR_VERSION
public static final java.lang.String CMD_SVR_CMDSTATS
public NetricsCmdStats()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String cmd_name()
public double start_time()
public double end_time()
public double duration()
public int num_cmds()
public double min_proc()
public double max_proc()
public double tot_proc()
public double avg_proc()
public double min_overhead()
public double max_overhead()
public double tot_overhead()
public double avg_overhead()
public double min_full()
public double max_full()
public double tot_full()
public double avg_full()
public double max_thru()