Microsoft Internet Security and Acceleration Server 2000

FPCEventDefinition.MinEventsPerSecond Property

Gets or sets the default count of events per second that signals another event. This property only establishes a default value for an event. When you create an alert, the alert can use the default value, or you can overwrite it with values specific to the alert by modifying the corresponding property in the FPCAlert object.

The MinutesBeforeReRaise, EventsBeforeRaise, and MinEventsPerSecond properties of the FPCAlert object set the three thresholds that the alert service uses to signal alerts. For each alert, the alert service stores the last time the alert was signaled, a count of how many times the alert has been signaled per second, and a count of the total number of times the alert has been signaled. An alert is given and the alert invokes the actions specific to the alert only when the three threshold requirements for signaling an alert are met simultaneously.

The MinEventsPerSecond property sets the threshold for the number of alerts signaled per second.

VBScript Syntax[VBScript]

FPCEventDefinition.MinEventsPerSecond [ = lThreshold ]

C++ Syntax[C++]

HRESULT get_MinEventsPerSecond(
  long *plThreshold
);

HRESULT put_MinEventsPerSecond(
  long lThreshold
);

Parameters

lThreshold
Long value that specifies the threshold for the number of alerts signaled per second.

The property is read-write.

Applies To

FPCEventDefinition