Package com.atlassian.bamboo.performance
Class PerformanceStatsEvent
- java.lang.Object
-
- com.atlassian.bamboo.performance.PerformanceStatsEvent
-
@AsynchronousPreferred public class PerformanceStatsEvent extends Object
Analytics event containing performance stats of a single action calculated for a specific date.- See Also:
ActionIdentifier
-
-
Constructor Summary
Constructors Constructor Description PerformanceStatsEvent(@NotNull ActionIdentifier actionIdentifier, @NotNull LocalDate date, @NotNull Stats stats)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActionName()
String
getActionType()
String
getDate()
long
getInvocations()
Map<String,Double>
getPercentiles()
double
getTimeAvg()
double
getTimeMax()
double
getTimeMin()
double
getTimeStdDev()
-
-
-
Constructor Detail
-
PerformanceStatsEvent
public PerformanceStatsEvent(@NotNull @NotNull ActionIdentifier actionIdentifier, @NotNull @NotNull LocalDate date, @NotNull @NotNull Stats stats)
-
-
Method Detail
-
getActionType
public String getActionType()
-
getActionName
public String getActionName()
-
getDate
public String getDate()
-
getInvocations
public long getInvocations()
-
getTimeAvg
public double getTimeAvg()
-
getTimeMin
public double getTimeMin()
-
getTimeMax
public double getTimeMax()
-
getTimeStdDev
public double getTimeStdDev()
-
-