Commit b15ef98a b15ef98aa5566dc2697d4852079f25b2454ef9a4 by Christian Gerdes

Ny version av lilom.jar med stöd för att mäta OS Busy, OS Load och OS

Load per cpu. Ökad precision på mätningarna till flyttal.
1 parent 1f664f68
......@@ -61,8 +61,11 @@ public class Actions
{
String instance = oracle.getDBName();
sendDataPoint("ORA Cpus (#) " + instance, oracle.getNumberOfCPUs());
sendDataPoint("ORA Cpu Time (ms/s) " + instance, oracle.getCPUTimePerSecond());
sendDataPoint("ORA Cpu Time (us/s) " + instance, oracle.getCPUTimePerSecond());
sendDataPoint("ORA Cpu Usage (%) " + instance, oracle.getCPUPercent());
sendDataPoint("ORA OS Busy (%) " + instance, oracle.getOsBusyPercent());
sendDataPoint("ORA OS Load (#) " + instance, oracle.getOsLoad());
sendDataPoint("ORA OS Load per Cpu (#) " + instance, oracle.getOsLoadPerCPU());
sendDataPoint("ORA Logical Reads (#/s) " + instance, oracle.getLogicalReadsPerSecond());
sendDataPoint("ORA Consistent Gets (#/s) " + instance, oracle.getPerSecondValue("consistent gets"));
sendDataPoint("ORA DB Block Gets (#/s) " + instance, oracle.getPerSecondValue("db block gets"));
......
......@@ -49,8 +49,8 @@ CurrentState=1
VuserStateHistory=0 65536 65552
LastReplayStatus=2
[ActiveReplay]
LastReplayedRunName=result1
ActiveRunName=result1
LastReplayedRunName=
ActiveRunName=
[Recorded Actions]
vuser_init=0
Actions=0
......
......@@ -2,26 +2,26 @@
MercIniTreeSectionName="vuser_end"
RunLogicObjectKind="Action"
Name="vuser_end"
RunLogicInterpreterType="Java-Interpreter"
MercIniTreeFather="RunLogicEndRoot"
RunLogicActionType="VuserEnd"
MercIniTreeFather="RunLogicEndRoot"
RunLogicInterpreterType="Java-Interpreter"
[RunLogicInitRoot:vuser_init]
MercIniTreeSectionName="vuser_init"
RunLogicObjectKind="Action"
Name="vuser_init"
RunLogicInterpreterType="Java-Interpreter"
MercIniTreeFather="RunLogicInitRoot"
RunLogicActionType="VuserInit"
MercIniTreeFather="RunLogicInitRoot"
RunLogicInterpreterType="Java-Interpreter"
[RunLogicRunRoot:Actions]
MercIniTreeSectionName="Actions"
RunLogicObjectKind="Action"
Name="Actions"
RunLogicInterpreterType="Java-Interpreter"
MercIniTreeFather="RunLogicRunRoot"
RunLogicActionType="VuserRun"
MercIniTreeFather="RunLogicRunRoot"
RunLogicInterpreterType="Java-Interpreter"
[Profile Actions]
Profile Actions name=vuser_init,Actions,vuser_end
MercIniTreeSectionName="Profile Actions"
Profile Actions name=vuser_init,Actions,vuser_end
MercIniTreeFather=""
[RunLogicRunRoot]
RunLogicPaceConstTime="60,000"
......@@ -32,10 +32,10 @@ MercIniTreeFather=""
RunLogicPaceType="ConstAfter"
MercIniTreeSons="Actions"
RunLogicNumOfIterations="2"
Name="Run"
RunLogicAfterPaceMin="60,000"
RunLogicRunMode="Sequential"
Name="Run"
RunLogicPaceConstAfterTime="15,000"
RunLogicRunMode="Sequential"
RunLogicObjectKind="Group"
RunLogicActionType="VuserRun"
RunLogicRandomPaceMin="60,000"
......
No preview for this file type