adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / EventThresholdType Enumeration


In This Topic
    EventThresholdType Enumeration
    In This Topic
    Specifies the type of ThresholdType for a ResponseEvent
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(True)>
    <GuidAttribute("81F348AB-69D7-4A8E-8C68-474A0887857E")>
    Public Enum EventThresholdType 
       Inherits System.Enum
    [ComVisible(true)]
    [Guid("81F348AB-69D7-4A8E-8C68-474A0887857E")]
    public enum EventThresholdType : System.Enum 
    [ComVisible(true)]
    [Guid("81F348AB-69D7-4A8E-8C68-474A0887857E")]
    public enum class EventThresholdType : public System.Enum 
    Members
    MemberValueDescription
    None0 No threshold specified.
    PercentOfAverage6 Response is triggered when the step exceeds the specified percentage of the average execution time.
    PercentOfExpected8 Response is triggered when the step exceeds the specified percentage of the expected execution time.
    PercentOfMax7 Response is triggered when the step exceeds the specified percentage of the maximum execution time.
    PercentOfPrevious9 Response is triggered when the step exceeds the specified percentage of the previous instance's execution time.
    Seconds1 Response is triggered when the step exceeds the specified number of seconds.
    SecondsOverAverage2 Response is triggered when the step exceeds the average execution time by the specified number of seconds.
    SecondsOverExpected4 Response is triggered when the step exceeds the expected execution time by the specified number of seconds.
    SecondsOverMax3 Response is triggered when the step exceeds the maximum execution time by the specified number of seconds.
    SecondsOverPrevious5 Response is triggered when the step exceeds the previous instance's execution time by the specified number of seconds.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.EventThresholdType

    See Also