Alerting.EventType

URI: http://soap.zeus.com/zxtm/1.0/Alerting/EventType/

Alerting.EventType is an interface that allows you to manage event types. Event Types are groups of events and are associated with a list of actions that are invoked when one of the events in the Event Type is triggered.

Methods

addCloudcredentialNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Cloud Credentials that will trigger the specified event types. If the event type has no Cloud Credentials names configured, all objects of this type will match.

void addCloudcredentialNames(

String[] names

String[][] objects

)

addCustomEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Adds custom events the specified event types will trigger on. Custom events are generated by TrafficScript using the event.emit function. To match all custom events, include '*' in the passed array.

void addCustomEvents(

String[] names

String[][] events

)

addEventType( names, eventtypes ) throws ObjectAlreadyExists, InvalidObjectName, InvalidInput, DeploymentError

Add an event type that will cause an action to be triggered when its conditions are met.

void addEventType(

String[] names

Alerting.EventType.EventType[] eventtypes

)

addEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Adds events to an event type. An event is something that must occur for the associated actions to be triggered (only one event needs to happen to trigger the actions). At least one event must be specified.

void addEvents(

String[] names

Alerting.EventType.Event[][] events

)

addLicensekeyNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of License Key that will trigger the specified event types. If the event type has no License Key names configured, all objects of this type will match.

void addLicensekeyNames(

String[] names

String[][] objects

)

addLocationNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Location that will trigger the specified event types. If the event type has no Location names configured, all objects of this type will match.

void addLocationNames(

String[] names

String[][] objects

)

addMappedActions( names, values ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add an action that will be run when this event type is triggered.

void addMappedActions(

String[] names

String[][] values

)

addMonitorNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Monitor that will trigger the specified event types. If the event type has no Monitor names configured, all objects of this type will match.

void addMonitorNames(

String[] names

String[][] objects

)

addNodeNames( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Node that will trigger the specified event types. If the event type has no Node names configured, all objects of this type will match.

void addNodeNames(

String[] names

String[][] events

)

addPoolNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Pool that will trigger the specified event types. If the event type has no Pool names configured, all objects of this type will match.

void addPoolNames(

String[] names

String[][] objects

)

addProtectionNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Service Protection Class that will trigger the specified event types. If the event type has no Service Protection Class names configured, all objects of this type will match.

void addProtectionNames(

String[] names

String[][] objects

)

addRuleNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Rule that will trigger the specified event types. If the event type has no Rule names configured, all objects of this type will match.

void addRuleNames(

String[] names

String[][] objects

)

addServiceNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of GLB Service that will trigger the specified event types. If the event type has no GLB Service names configured, all objects of this type will match.

void addServiceNames(

String[] names

String[][] objects

)

addSlmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of SLM Class that will trigger the specified event types. If the event type has no SLM Class names configured, all objects of this type will match.

void addSlmNames(

String[] names

String[][] objects

)

addVserverNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Virtual Server that will trigger the specified event types. If the event type has no Virtual Server names configured, all objects of this type will match.

void addVserverNames(

String[] names

String[][] objects

)

addZxtmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Add the names of Traffic Manager that will trigger the specified event types. If the event type has no Traffic Manager names configured, all objects of this type will match.

void addZxtmNames(

String[] names

String[][] objects

)

copyEventType( names, new_names ) throws ObjectAlreadyExists, ObjectDoesNotExist, InvalidObjectName, DeploymentError

Copy each of the named event types.

void copyEventType(

String[] names

String[] new_names

)

deleteEventType( names ) throws ObjectDoesNotExist, DeploymentError

Removes one or more event types.

void deleteEventType(

String[] names

)

getCloudcredentialNames( names ) throws ObjectDoesNotExist

Get the names of Cloud Credentials that will trigger the specified event types. If the event type has no Cloud Credentials names configured, all objects of this type will match.

String[][] getCloudcredentialNames(

String[] names

)

getCustomEvents( names ) throws ObjectDoesNotExist

Gets the custom events of the specified event types. Custom events are generated by TrafficScript using the event.emit function. If '*' is returned, all custom events will trigger this event type.

String[][] getCustomEvents(

String[] names

)

getEventType( names ) throws ObjectDoesNotExist

Returns a set of event type objects for the specified names.

Alerting.EventType.EventType[] getEventType(

String[] names

)

getEventTypeNames()

Returns the names of all event types in the system.

String[] getEventTypeNames()

getEvents( names ) throws ObjectDoesNotExist

Gets an event type's events. An event is something that must occur for the associated actions to be triggered (only one event needs to happen to trigger the actions). At least one event must be specified.

Alerting.EventType.Event[][] getEvents(

String[] names

)

getLicensekeyNames( names ) throws ObjectDoesNotExist

Get the names of License Key that will trigger the specified event types. If the event type has no License Key names configured, all objects of this type will match.

String[][] getLicensekeyNames(

String[] names

)

getLocationNames( names ) throws ObjectDoesNotExist

Get the names of Location that will trigger the specified event types. If the event type has no Location names configured, all objects of this type will match.

String[][] getLocationNames(

String[] names

)

getMappedActions( names ) throws ObjectDoesNotExist

Get an action that will be run when this event type is triggered.

String[][] getMappedActions(

String[] names

)

getMonitorNames( names ) throws ObjectDoesNotExist

Get the names of Monitor that will trigger the specified event types. If the event type has no Monitor names configured, all objects of this type will match.

String[][] getMonitorNames(

String[] names

)

getNodeNames( names ) throws ObjectDoesNotExist

Get the names of Node that will trigger the specified event types. If the event type has no Node names configured, all objects of this type will match.

String[][] getNodeNames(

String[] names

)

getNote( names ) throws ObjectDoesNotExist

Get the note for each of the named Event Types.

String[] getNote(

String[] names

)

getPoolNames( names ) throws ObjectDoesNotExist

Get the names of Pool that will trigger the specified event types. If the event type has no Pool names configured, all objects of this type will match.

String[][] getPoolNames(

String[] names

)

getProtectionNames( names ) throws ObjectDoesNotExist

Get the names of Service Protection Class that will trigger the specified event types. If the event type has no Service Protection Class names configured, all objects of this type will match.

String[][] getProtectionNames(

String[] names

)

getRuleNames( names ) throws ObjectDoesNotExist

Get the names of Rule that will trigger the specified event types. If the event type has no Rule names configured, all objects of this type will match.

String[][] getRuleNames(

String[] names

)

getServiceNames( names ) throws ObjectDoesNotExist

Get the names of GLB Service that will trigger the specified event types. If the event type has no GLB Service names configured, all objects of this type will match.

String[][] getServiceNames(

String[] names

)

getSlmNames( names ) throws ObjectDoesNotExist

Get the names of SLM Class that will trigger the specified event types. If the event type has no SLM Class names configured, all objects of this type will match.

String[][] getSlmNames(

String[] names

)

getVserverNames( names ) throws ObjectDoesNotExist

Get the names of Virtual Server that will trigger the specified event types. If the event type has no Virtual Server names configured, all objects of this type will match.

String[][] getVserverNames(

String[] names

)

getZxtmNames( names ) throws ObjectDoesNotExist

Get the names of Traffic Manager that will trigger the specified event types. If the event type has no Traffic Manager names configured, all objects of this type will match.

String[][] getZxtmNames(

String[] names

)

removeCloudcredentialNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Cloud Credentials that will trigger the specified event types. If the event type has no Cloud Credentials names configured, all objects of this type will match.

void removeCloudcredentialNames(

String[] names

String[][] objects

)

removeCustomEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Removes custom events from the specified event types. Custom events are generated by TrafficScript using the event.emit function. If you pass '*', all custom events will be removed.

void removeCustomEvents(

String[] names

String[][] events

)

removeEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Removes events from the event type. An event is something that must occur for the associated actions to be triggered (only one event needs to happen to trigger the actions). At least one event must be specified.

void removeEvents(

String[] names

Alerting.EventType.Event[][] events

)

removeLicensekeyNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of License Key that will trigger the specified event types. If the event type has no License Key names configured, all objects of this type will match.

void removeLicensekeyNames(

String[] names

String[][] objects

)

removeLocationNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Location that will trigger the specified event types. If the event type has no Location names configured, all objects of this type will match.

void removeLocationNames(

String[] names

String[][] objects

)

removeMappedActions( names, values ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove an action that will be run when this event type is triggered.

void removeMappedActions(

String[] names

String[][] values

)

removeMonitorNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Monitor that will trigger the specified event types. If the event type has no Monitor names configured, all objects of this type will match.

void removeMonitorNames(

String[] names

String[][] objects

)

removeNodeNames( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Node that will trigger the specified event types. If the event type has no Node names configured, all objects of this type will match.

void removeNodeNames(

String[] names

String[][] events

)

removePoolNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Pool that will trigger the specified event types. If the event type has no Pool names configured, all objects of this type will match.

void removePoolNames(

String[] names

String[][] objects

)

removeProtectionNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Service Protection Class that will trigger the specified event types. If the event type has no Service Protection Class names configured, all objects of this type will match.

void removeProtectionNames(

String[] names

String[][] objects

)

removeRuleNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Rule that will trigger the specified event types. If the event type has no Rule names configured, all objects of this type will match.

void removeRuleNames(

String[] names

String[][] objects

)

removeServiceNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of GLB Service that will trigger the specified event types. If the event type has no GLB Service names configured, all objects of this type will match.

void removeServiceNames(

String[] names

String[][] objects

)

removeSlmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of SLM Class that will trigger the specified event types. If the event type has no SLM Class names configured, all objects of this type will match.

void removeSlmNames(

String[] names

String[][] objects

)

removeVserverNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Virtual Server that will trigger the specified event types. If the event type has no Virtual Server names configured, all objects of this type will match.

void removeVserverNames(

String[] names

String[][] objects

)

removeZxtmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Remove the names of Traffic Manager that will trigger the specified event types. If the event type has no Traffic Manager names configured, all objects of this type will match.

void removeZxtmNames(

String[] names

String[][] objects

)

renameEventType( names, new_names ) throws ObjectAlreadyExists, ObjectDoesNotExist, InvalidObjectName, DeploymentError, InvalidOperation

Rename each of the named event types.

void renameEventType(

String[] names

String[] new_names

)

setCloudcredentialNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Cloud Credentials that will trigger the specified event types. If the event type has no Cloud Credentials names configured, all objects of this type will match.

void setCloudcredentialNames(

String[] names

String[][] objects

)

setCustomEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Gets the custom events the specified event types will trigger on. Custom events are generated by TrafficScript using the event.emit function. To match all custom events, include '*' in the passed array.

void setCustomEvents(

String[] names

String[][] events

)

setEvents( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Sets an event type's events (all old events will be removed). An event is something that must occur for the associated actions to be triggered (only one event needs to happen to trigger the actions). At least one event must be specified.

void setEvents(

String[] names

Alerting.EventType.Event[][] events

)

setLicensekeyNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of License Key that will trigger the specified event types. If the event type has no License Key names configured, all objects of this type will match.

void setLicensekeyNames(

String[] names

String[][] objects

)

setLocationNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Location that will trigger the specified event types. If the event type has no Location names configured, all objects of this type will match.

void setLocationNames(

String[] names

String[][] objects

)

setMappedActions( names, values ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set an action that will be run when this event type is triggered.

void setMappedActions(

String[] names

String[][] values

)

setMonitorNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Monitor that will trigger the specified event types. If the event type has no Monitor names configured, all objects of this type will match.

void setMonitorNames(

String[] names

String[][] objects

)

setNodeNames( names, events ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Node that will trigger the specified event types. If the event type has no Node names configured, all objects of this type will match.

void setNodeNames(

String[] names

String[][] events

)

setNote( names, values ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the note for each of the named Event Types.

void setNote(

String[] names

String[] values

)

setPoolNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Pool that will trigger the specified event types. If the event type has no Pool names configured, all objects of this type will match.

void setPoolNames(

String[] names

String[][] objects

)

setProtectionNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Service Protection Class that will trigger the specified event types. If the event type has no Service Protection Class names configured, all objects of this type will match.

void setProtectionNames(

String[] names

String[][] objects

)

setRuleNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Rule that will trigger the specified event types. If the event type has no Rule names configured, all objects of this type will match.

void setRuleNames(

String[] names

String[][] objects

)

setServiceNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of GLB Service that will trigger the specified event types. If the event type has no GLB Service names configured, all objects of this type will match.

void setServiceNames(

String[] names

String[][] objects

)

setSlmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of SLM Class that will trigger the specified event types. If the event type has no SLM Class names configured, all objects of this type will match.

void setSlmNames(

String[] names

String[][] objects

)

setVserverNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Virtual Server that will trigger the specified event types. If the event type has no Virtual Server names configured, all objects of this type will match.

void setVserverNames(

String[] names

String[][] objects

)

setZxtmNames( names, objects ) throws InvalidInput, ObjectDoesNotExist, InvalidOperation, DeploymentError

Set the names of Traffic Manager that will trigger the specified event types. If the event type has no Traffic Manager names configured, all objects of this type will match.

void setZxtmNames(

String[] names

String[][] objects

)

Structures

Alerting.EventType.EventType

A set of conditions that when met causes an action to be run.

struct Alerting.EventType.EventType {

# The events that will trigger the associated actions.

Alerting.EventType.Event[] events;

# The names of all the custom events you want to trigger this event type.

String[] customEvents;

# The names of all the actions mapped to this custom event.

String[] mappedActions;

# The names of all the Service Protection Classes that should trigger this

# event type. If this is an empty array all objects of this type will be

# matched.

String[] protectionNames;

# The names of all the Locations that should trigger this event type. If this

# is an empty array all objects of this type will be matched.

String[] locationNames;

# The names of all the Virtual Servers that should trigger this event type.

# If this is an empty array all objects of this type will be matched.

String[] vserverNames;

# The names of all the SLM Classes that should trigger this event type. If

# this is an empty array all objects of this type will be matched.

String[] slmNames;

# The names of all the Monitors that should trigger this event type. If this

# is an empty array all objects of this type will be matched.

String[] monitorNames;

# The names of all the GLB Services that should trigger this event type. If

# this is an empty array all objects of this type will be matched.

String[] serviceNames;

# The names of all the Rules that should trigger this event type. If this is

# an empty array all objects of this type will be matched.

String[] ruleNames;

# The names of all the Cloud Credentials that should trigger this event type.

# If this is an empty array all objects of this type will be matched.

String[] cloudcredentialNames;

# The names of all the License Keys that should trigger this event type. If

# this is an empty array all objects of this type will be matched.

String[] licensekeyNames;

# The names of all the Traffic Managers that should trigger this event type.

# If this is an empty array all objects of this type will be matched.

String[] zxtmNames;

# The names of all the Pools that should trigger this event type. If this is

# an empty array all objects of this type will be matched.

String[] poolNames;

}

Enumerations

Alerting.EventType.Event

enum Alerting.EventType.Event {

# This event matches all events.

ALL,

# Special value that matches all events of type Cloud Credentials.

cloudcredentials_ALL,

# Cloud Credentials - A cloud API process querying changes to cloud instances

# is hanging

cloudcredentials_apistatusprocesshanging,

# Cloud Credentials - An API call made by the autoscaler process has returned

# a response that could not be parsed

cloudcredentials_autoscaleresponseparseerror,

# Cloud Credentials - An API call made by the autoscaler process has reported

# an error

cloudcredentials_autoscalestatusupdateerror,

# Cloud Credentials - A cloud API process has timed out

cloudcredentials_autoscalingprocesstimedout,

# Cloud Credentials - A Cloud Credentials object has been deleted but it was

# still in use

cloudcredentials_usedcredsdeleted,

# Special value that matches all events of type Configuration Files.

config_ALL,

# Configuration Files - Configuration file added

config_confadd,

# Configuration Files - Configuration file deleted

config_confdel,

# Configuration Files - Configuration file modified

config_confmod,

# Configuration Files - Configuration file now OK

config_confok,

# Special value that matches all events of type Fault Tolerance.

faulttolerance_ALL,

# Fault Tolerance - Activating this machine automatically because it is the

# only working machine in its Traffic IP Groups

faulttolerance_activatealldead,

# Fault Tolerance - Machine has recovered and been activated automatically

# because it would cause no service disruption

faulttolerance_activatedautomatically,

# Fault Tolerance - All machines are working

faulttolerance_allmachinesok,

# Fault Tolerance - Automatic failback after delay

faulttolerance_autofailbackafterdelay,

# Fault Tolerance - Auto-failback delay timer cancelled

faulttolerance_autofailbacktimercancelled,

# Fault Tolerance - Auto-failback wait period started

faulttolerance_autofailbacktimerstarted,

# Fault Tolerance - Auto-failback delay timer stopped due to system failure

faulttolerance_autofailbacktimerstopped,

# Fault Tolerance - Some of the BGP neighbors do not have established

# sessions

faulttolerance_bgpneighborsdegraded,

# Fault Tolerance - None of the BGP neighbors have an established session

faulttolerance_bgpneighborsfailed,

# Fault Tolerance - There are established sessions with all BGP neighbors

faulttolerance_bgpneighborsok,

# Fault Tolerance - There are no valid BGP neighbors defined

faulttolerance_bgpnoneighbors,

# Fault Tolerance - The system clock jumped forwards or backwards by more

# than one second

faulttolerance_clockjump,

# Fault Tolerance - The monotonic system clock went backwards

faulttolerance_clocknotmonotonic,

# Fault Tolerance - Removing EC2 IP Address from all machines; it is no

# longer a part of any Traffic IP Groups

faulttolerance_dropec2ipwarn,

# Fault Tolerance - Removing GCE IP Address from all machines; it is no

# longer a part of any Traffic IP Groups

faulttolerance_dropgceipwarn,

# Fault Tolerance - Dropping Traffic IP Address due to a configuration change

# or traffic manager recovery

faulttolerance_dropipinfo,

# Fault Tolerance - Dropping Traffic IP Address due to an error

faulttolerance_dropipwarn,

# Fault Tolerance - Moving EC2 IP Address; local machine is working

faulttolerance_ec2flipperraiselocalworking,

# Fault Tolerance - Moving EC2 IP Address; other machines have failed

faulttolerance_ec2flipperraiseothersdead,

# Fault Tolerance - Problem occurred when managing an EC2 IP address

faulttolerance_ec2iperr,

# Fault Tolerance - Cannot raise Elastic IP on this machine until EC2

# provides it with a public IP address

faulttolerance_ec2nopublicip,

# Fault Tolerance - Cannot raise Elastic IP on this machine as no suitable

# secondary IP is available on the allowed network card(s)

faulttolerance_ec2nosecondaryprivateip,

# Fault Tolerance - Back-end nodes are now working

faulttolerance_flipperbackendsworking,

# Fault Tolerance - Re-raising Traffic IP Address; Operating system did not

# fully raise the address

faulttolerance_flipperdadreraise,

# Fault Tolerance - Frontend machines are now working

faulttolerance_flipperfrontendsworking,

# Fault Tolerance - Failed to raise Traffic IP Address; the address exists

# elsewhere on your network and cannot be raised

faulttolerance_flipperipexists,

# Fault Tolerance - Raising Traffic IP Address; local machine is working

faulttolerance_flipperraiselocalworking,

# Fault Tolerance - Raising Traffic IP Address; Operating System had dropped

# this IP address

faulttolerance_flipperraiseosdrop,

# Fault Tolerance - Raising Traffic IP Address; other machines have failed

faulttolerance_flipperraiseothersdead,

# Fault Tolerance - This Traffic Manager has re-raised traffic IP addresses

# as the remote machine which was hosting them has dropped them

faulttolerance_flipperraiseremotedropped,

# Fault Tolerance - Machine is ready to raise Traffic IP addresses

faulttolerance_flipperrecovered,

# Fault Tolerance - Moving GCE IP Address; local machine is working

faulttolerance_gceflipperraiselocalworking,

# Fault Tolerance - Moving GCE IP Address; other machines have failed

faulttolerance_gceflipperraiseothersdead,

# Fault Tolerance - Problem occurred when managing a GCE IP address

faulttolerance_gceiperr,

# Fault Tolerance - Cannot associate more External IP addresses with this

# instance, all interfaces are allocated

faulttolerance_gcenofreenic,

# Fault Tolerance - Remote machine has failed

faulttolerance_machinefail,

# Fault Tolerance - Remote machine is now working

faulttolerance_machineok,

# Fault Tolerance - Remote machine has recovered and can raise Traffic IP

# addresses

faulttolerance_machinerecovered,

# Fault Tolerance - Remote machine has timed out and been marked as failed

faulttolerance_machinetimeout,

# Fault Tolerance - The amount of load handled by the local machine destined

# for this Traffic IP has changed

faulttolerance_multihostload,

# Fault Tolerance - Some of the monitored OSPF neighbors are not peered

faulttolerance_ospfneighborsdegraded,

# Fault Tolerance - None of the monitored OSPF neighbors are peered

faulttolerance_ospfneighborsfailed,

# Fault Tolerance - All monitored OSPF neighbors are peered

faulttolerance_ospfneighborsok,

# Fault Tolerance - Failed to ping back-end nodes

faulttolerance_pingbackendfail,

# Fault Tolerance - Failed to ping any of the machines used to check the

# front-end connectivity

faulttolerance_pingfrontendfail,

# Fault Tolerance - Failed to ping default gateway

faulttolerance_pinggwfail,

# Fault Tolerance - Failed to send ping packets

faulttolerance_pingsendfail,

# Fault Tolerance - Routing software had a major failure and will be

# restarted

faulttolerance_routingswfailed,

# Fault Tolerance - Routing software has failed and reached its failure limit

faulttolerance_routingswfailurelimitreached,

# Fault Tolerance - Routing software is now operational

faulttolerance_routingswoperational,

# Fault Tolerance - Routing software failed to start

faulttolerance_routingswstartfailed,

# Fault Tolerance - Received an invalid response from another cluster member

faulttolerance_statebaddata,

# Fault Tolerance - Failed to connect to another cluster member for state

# sharing

faulttolerance_stateconnfail,

# Fault Tolerance - Successfully connected to another cluster member for

# state sharing

faulttolerance_stateok,

# Fault Tolerance - Reading state data from another cluster member failed

faulttolerance_statereadfail,

# Fault Tolerance - Timeout while sending state data to another cluster

# member

faulttolerance_statetimeout,

# Fault Tolerance - Received unexpected state data from another cluster

# member

faulttolerance_stateunexpected,

# Fault Tolerance - Writing state data to another cluster member failed

faulttolerance_statewritefail,

# Fault Tolerance - An error occurred when using the zcluster Multi-Hosted IP

# kernel module

faulttolerance_zclustermoderr,

# Special value that matches all events of type General.

general_ALL,

# General - Analytics Transaction Metadata Export connected

general_analyticsconnected,

# General - Analytics Transaction Metadata Export connection failure

general_analyticsconnectionerror,

# General - Analytics Transaction Metadata Export disconnected

general_analyticsdisconnected,

# General - Application firewall control command failed

general_appfirewallcontrolerror,

# General - Application firewall restarted

general_appfirewallcontrolrestarted,

# General - Application firewall started

general_appfirewallcontrolstarted,

# General - Application firewall stopped

general_appfirewallcontrolstopped,

# General - Application firewall control command timed out

general_appfirewallcontroltimeout,

# General - Appliance notification

general_appliance,

# General - An audit log event has occured

general_audit,

# General - An error occurred during user authentication

general_autherror,

# General - A hostname used for DNS-derived Autoscaling doesn't resolve

general_autoscaleresolvefailure,

# General - Autoscaling not permitted by licence key

general_autoscalinglicenseerror,

# General - There was an error communicating with a child process

general_childcommsfail,

# General - SD Communications Channel Agent died

general_commchanneldied,

# General - Failed to start SD Communications Channel Agent

general_commchannelstartfail,

# General - SD Communications Channel Agent failed to terminate

general_commchannelterminatefail,

# General - Replication of configuration has failed

general_confrepfailed,

# General - Replication of configuration has timed out

general_confreptimeout,

# General - Traffic manager failed to get the required output from the

# Service Discovery plugin

general_discopluginfailed,

# General - Service Discovery plugin returned extra logging information

general_discoplugininfo,

# General - Service Discovery plugin returned invalid output

general_discoplugininvalid,

# General - Traffic manager failed to start the Service Discovery Plugin

general_discopluginstartfail,

# General - Traffic manager has now successfully run the Service Discovery

# plugin

general_discopluginstartsuccess,

# General - Service Discovery succeeded but provided a warning

general_discopluginwarning,

# General - The built-in DNS server has failed to create a DNS record

general_dnszonecreaterecord,

# General - The built-in DNS server has failed to parse a DNS zone file

general_dnszoneparse,

# General - The built-in DNS server has failed to validate a DNS zone file

general_dnszonevalidate,

# General - Traffic manager failed to get the required data from Amazon

# servers

general_ec2dataretrievalfailed,

# General - Traffic manager has now successfully retrieved the required data

# from Amazon servers

general_ec2dataretrievalsuccessful,

# General - The EC2 instance is now initialized

general_ec2initialized,

# General - Running out of free file descriptors

general_fewfreefds,

# General - FIPS 140-2 cryptographic module initialization failed

general_fipsfailinit,

# General - FIPS 140-2 cryptographic module operations failed

general_fipsfailops,

# General - Traffic manager failed to get the required data from GCE instance

general_gcedataretrievalfailed,

# General - Traffic manager has now successfully retrieved the required data

# from GCE instance

general_gcedataretrievalsuccessful,

# General - Failed to load geolocation data

general_geodataloadfail,

# General - A location has been disabled because you have exceeded the

# licence limit

general_licensetoomanylocations,

# General - Log disk partition full

general_logdiskfull,

# General - Log disk partition usage has exceeded threshold

general_logdiskoverload,

# General - Log disk partition usage has recovered

general_logdiskrecovered,

# General - DNS-derived Autoscaling will resume updating, as the DNS server

# is now responding

general_nameserveravailable,

# General - DNS-derived Autoscaling will not update, as the DNS server is

# unavailable

general_nameserverunavailable,

# General - Total number of locations exceeded the maximum limit

general_numlocations-exceeded,

# General - Total number of nodes exceeded the maximum number of nodes that

# can be monitored

general_numnodes-exceeded,

# General - Total number of pools exceeded the maximum limit

general_numpools-exceeded,

# General - Total number of traffic IP group exceeded the maximum limit

general_numtipg-exceeded,

# General - OCSP request (for OCSP stapling) failed

general_ocspstaplingfail,

# General - Insufficient memory for OCSP stapling

general_ocspstaplingnomem,

# General - An OCSP request (for OCSP stapling) reported that a certificate

# was revoked

general_ocspstaplingrevoked,

# General - An OCSP request (for OCSP stapling) reported that a certificate

# was unknown

general_ocspstaplingunknown,

# General - An old but good OCSP response was returned for a revoked

# certificate

general_ocspstaplingunrevoked,

# General - Software must be restarted to apply configuration changes

general_restartrequired,

# General - Software is running

general_running,

# General - CRL does not fit in the configured amount of shared memory,

# increase ssl!crl_mem!size and restart software

general_sslcrltoobig,

# General - No SSL ticket encryption key available

general_sslticketencryptionkeyunavailable,

# General - Virtual Traffic Manager Appliance reboot required

general_sysctlreboot,

# General - Time has been moved back

general_timemovedback,

# General - Virtual Traffic Manager restart/reboot required

general_unspecifiedreboot,

# General - Virtual Traffic Manager Appliance reboot required

general_upgradereboot,

# General - Virtual Traffic Manager software restart required

general_upgraderestart,

# General - Traffic Manager process stall detected by the watchdog

general_watchdog,

# General - The number of simultaneously active connections has reached a

# level that the software cannot process in due time because of CPU

# starvation; there is a high risk of connections timing out

general_zxtmcpustarvation,

# General - The number of simultaneously active connections has reached a

# level that the software cannot process in due time; there is a high risk of

# connections timing out

general_zxtmhighload,

# General - Internal software error

general_zxtmswerror,

# Special value that matches all events of type Java.

java_ALL,

# Java - Java runner died

java_javadied,

# Java - Cannot start Java runner, program not found

java_javanotfound,

# Java - Java runner started

java_javastarted,

# Java - Java runner failed to start

java_javastartfail,

# Java - Java support has stopped

java_javastop,

# Java - Java runner failed to terminate

java_javaterminatefail,

# Java - Servlet encountered an error

java_servleterror,

# Special value that matches all events of type License Keys.

licensekeys_ALL,

# License Keys - Realtime Analytics support has been disabled

licensekeys_analyticslicensedisabled,

# License Keys - Realtime Analytics support has been enabled

licensekeys_analyticslicenseenabled,

# License Keys - Autoscaling support has been disabled

licensekeys_autoscalinglicensedisabled,

# License Keys - Autoscaling support has been enabled

licensekeys_autoscalinglicenseenabled,

# License Keys - License key bandwidth limit has been hit

licensekeys_bwlimited,

# License Keys - Configured cache size exceeds license limit, only using

# amount allowed by license

licensekeys_cachesizereduced,

# License Keys - Cluster size exceeds the Community Edition limit

licensekeys_communityeditionclustertoobig,

# License Keys - License expired

licensekeys_expired,

# License Keys - License key expires within 7 days

licensekeys_expiresoon,

# License Keys - License key expires within 15 days

licensekeys_expiresoon15,

# License Keys - License key expires within 30 days

licensekeys_expiresoon30,

# License Keys - License key expires within 60 days

licensekeys_expiresoon60,

# License Keys - License key expires within 90 days

licensekeys_expiresoon90,

# License Keys - License allows less memory for caching

licensekeys_lessmemallowed,

# License Keys - License key authorized

licensekeys_license-authorized,

# License Keys - License key authorized by authorization code

licensekeys_license-authorized-ts,

# License Keys - License key explicitly disabled from authorization code

licensekeys_license-explicitlydisabled-ts,

# License Keys - Unable to authorize license key

licensekeys_license-graceperiodexpired,

# License Keys - Unable to authorize license key

licensekeys_license-graceperiodexpired-ts,

# License Keys - License server rejected license key; key remains authorized

licensekeys_license-rejected-authorized,

# License Keys - License key rejected from authorization code; key remains

# authorized

licensekeys_license-rejected-authorized-ts,

# License Keys - License server rejected license key; key is not authorized

licensekeys_license-rejected-unauthorized,

# License Keys - License key rejected from authorization code

licensekeys_license-rejected-unauthorized-ts,

# License Keys - Unable to contact license server; license key remains

# authorized

licensekeys_license-timedout-authorized,

# License Keys - Unable to run authorization code to completion; key remains

# valid

licensekeys_license-timedout-authorized-ts,

# License Keys - Unable to contact license server; license key is not

# authorized

licensekeys_license-timedout-unauthorized,

# License Keys - Unable to run authorization code to completion

licensekeys_license-timedout-unauthorized-ts,

# License Keys - License not authorized by remote server

licensekeys_license-unauthorized,

# License Keys - Cluster size exceeds license key limit

licensekeys_licenseclustertoobig,

# License Keys - Invalid License

licensekeys_licensecorrupt,

# License Keys - Error detected in LicenseStateFile format

licensekeys_licensestate-malformed,

# License Keys - Unable to preserve license state

licensekeys_licensestate-write-failed,

# License Keys - License allows more memory for caching

licensekeys_morememallowed,

# License Keys - License key SSL transactions-per-second limit has been hit

licensekeys_ssltpslimited,

# License Keys - License key transactions-per-second limit has been hit

licensekeys_tpslimited,

# License Keys - Started without a license

licensekeys_unlicensed,

# License Keys - Using license key

licensekeys_usinglicense,

# License Keys - A new limit on the maximum cache size is in place

licensekeys_webcachelicensenewmax,

# Special value that matches all events of type Locations.

locations_ALL,

# Locations - Location is now available for GLB Service

locations_locationavailable,

# Locations - Location has been disabled for GLB Service

locations_locationdisabled,

# Locations - Location is being drained for GLB Service

locations_locationdraining,

# Locations - Location has just been enabled for GLB Service

locations_locationenabled,

# Locations - Location has failed for GLB Service

locations_locationfail,

# Locations - A monitor has detected a failure in this location

locations_locationmonitorfail,

# Locations - A monitor has indicated this location is now working

locations_locationmonitorok,

# Locations - Location is not being drained for GLB Service

locations_locationnotdraining,

# Locations - Location is now healthy for GLB Service

locations_locationok,

# Locations - An external SOAP agent has detected a failure in this location

locations_locationsoapfail,

# Locations - An external SOAP agent indicates this location is now working

locations_locationsoapok,

# Locations - Location has become unavailable for GLB Service

locations_locationunavailable,

# Locations - Location no longer contains any machines

locations_locempty,

# Locations - Machine now in location

locations_locmovemachine,

# Special value that matches all events of type Monitors.

monitors_ALL,

# Monitors - Monitor has detected a failure

monitors_monitorfail,

# Monitors - Monitor is working

monitors_monitorok,

# Special value that matches all events of type Pools.

pools_ALL,

# Pools - API change process still running after refractory period is over

pools_apichangeprocesshanging,

# Pools - The creation of a new node requested by an autoscaled pool is now

# complete

pools_autonodecreationcomplete,

# Pools - Creation of new node instigated

pools_autonodecreationstarted,

# Pools - A cloud API call to destroy a node has been started

pools_autonodedestroyed,

# Pools - The destruction of a node in an autoscaled pool is now complete

pools_autonodedestructioncomplete,

# Pools - A node in an autoscaled pool has disappeared from the cloud

pools_autonodedisappeared,

# Pools - IP address of newly created instance already existed in pool's node

# list

pools_autonodeexisted,

# Pools - Node has no public IP address

pools_autonodenopublicip,

# Pools - A node in an DNS-derived autoscaled pool has been removed

pools_autonoderemoved,

# Pools - The status of a node in an autoscaled pool has changed

pools_autonodestatuschange,

# Pools - Two pools are trying to use the same instance

pools_autoscalednodecontested,

# Pools - An autoscaled pool is now refractory

pools_autoscaledpoolrefractory,

# Pools - Over maximum size - shrinking

pools_autoscaledpooltoobig,

# Pools - Minimum size undercut - growing

pools_autoscaledpooltoosmall,

# Pools - The 'imageid' was empty when attempting to create a node in an

# autoscaled pool

pools_autoscaleinvalidargforcreatenode,

# Pools - 'unique id' was empty when attempting to destroy a node in an

# autoscaled pool

pools_autoscaleinvalidargfordeletenode,

# Pools - A pool config file has been updated by the autoscaler process

pools_autoscalepoolconfupdate,

# Pools - A node created by the autoscaler has the wrong imageid

pools_autoscalewrongimageid,

# Pools - A node created by the autoscaler has a non-matching name

pools_autoscalewrongname,

# Pools - A node created by the autoscaler has the wrong sizeid

pools_autoscalewrongsizeid,

# Pools - An API process that should have created or destroyed a node has

# failed to produce the expected result

pools_autoscalingchangeprocessfailure,

# Pools - Autoscaling for a pool has been disabled due to errors

# communicating with the cloud API

pools_autoscalingdisabled,

# Pools - Minimum size reached, cannot shrink further

pools_autoscalinghitfloor,

# Pools - Maximum size reached by autoscaled pool, cannot grow further

pools_autoscalinghitroof,

# Pools - An autoscaled pool is waiting to grow

pools_autoscalinghysteresiscantgrow,

# Pools - An autoscaled pool is waiting to shrink

pools_autoscalinghysteresiscantshrink,

# Pools - An autoscaled pool's state has changed

pools_autoscalingpoolstatechange,

# Pools - An autoscaled pool has failed completely

pools_autoscalingresuscitatepool,

# Pools - HTTP response contained an invalid Content-Length header

pools_badcontentlen,

# Pools - Attempt to scale down a pool that only had pending nodes or none at

# all

pools_cannotshrinkemptypool,

# Pools - Node returned invalid EHLO response

pools_ehloinvalid,

# Pools - Removed node is in use and will be drained

pools_nodedrainingtodelete,

# Pools - Draining to delete period for node has expired

pools_nodedrainingtodeletetimeout,

# Pools - Node has failed

pools_nodefail,

# Pools - Failed to resolve node address

pools_noderesolvefailure,

# Pools - Node resolves to multiple IP addresses

pools_noderesolvemultiple,

# Pools - Node is working again

pools_nodeworking,

# Pools - Node doesn't provide STARTTLS support

pools_nostarttls,

# Pools - Pool has no back-end nodes responding

pools_pooldied,

# Pools - Pool configuration contains no valid backend nodes

pools_poolnonodes,

# Pools - Pool now has working nodes

pools_poolok,

# Pools - Node returned invalid STARTTLS response

pools_starttlsinvalid,

# Special value that matches all events of type Service Protection Classes.

protection_ALL,

# Service Protection Classes - Summary of recent service protection events

protection_triggersummary,

# Special value that matches all events of type Rules.

rules_ALL,

# Rules - Rule attempted to use Web Accelerator but it is not enabled

rules_aptimizedisabled,

# Rules - Rule selected an unknown Web Accelerator profile

rules_aptimizeuseunknownprofile,

# Rules - Rule selected an unknown Web Accelerator scope

rules_aptimizeuseunknownscope,

# Rules - data.local.set() has run out of space

rules_datalocalstorefull,

# Rules - data.set() has run out of space

rules_datastorefull,

# Rules - Rule selected an unresolvable host

rules_forwardproxybadhost,

# Rules - Rule used event.emit() with an invalid custom event

rules_invalidemit,

# Rules - Rule selected an unknown rate shaping class

rules_norate,

# Rules - Rule references an unknown pool via pool.activenodes

rules_poolactivenodesunknown,

# Rules - Rule selected an unknown pool

rules_pooluseunknown,

# Rules - Rule aborted during execution

rules_ruleabort,

# Rules - Rule encountered invalid data while uncompressing response

rules_rulebodycomperror,

# Rules - Rule has buffered more data than expected

rules_rulebufferlarge,

# Rules - Rule logged an info message using log.info

rules_rulelogmsginfo,

# Rules - Rule logged an error message using log.error

rules_rulelogmsgserious,

# Rules - Rule logged a warning message using log.warn

rules_rulelogmsgwarn,

# Rules - Rule selected an unknown session persistence class

rules_rulenopersistence,

# Rules - Rule exceeded execution time warning threshold

rules_ruleoverrun,

# Rules - Client sent invalid HTTP request body

rules_rulesinvalidrequestbody,

# Rules - Attempt to use http.getResponse or http.getResponseBody after

# http.stream.startResponse

rules_rulestreamerrorgetresponse,

# Rules - Internal error while processing HTTP stream

rules_rulestreamerrorinternal,

# Rules - Rule did not supply enough data in HTTP stream

rules_rulestreamerrornotenough,

# Rules - Attempt to initialize HTTP stream before previous stream had

# finished

rules_rulestreamerrornotfinished,

# Rules - Attempt to stream data or finish a stream before streaming had been

# initialized

rules_rulestreamerrornotstarted,

# Rules - Data supplied to HTTP stream could not be processed

rules_rulestreamerrorprocessfailure,

# Rules - Rule supplied too much data in HTTP stream

rules_rulestreamerrortoomuch,

# Rules - Rule encountered an XML error

rules_rulexmlerr,

# Rules - GLB service rule aborted during execution

rules_serviceruleabort,

# Rules - GLB service rule specified a location that has either failed or

# been marked as draining in the service configuration

rules_servicerulelocdead,

# Rules - GLB service rule specified a location that is not configured for

# the service

rules_servicerulelocnotconfigured,

# Rules - GLB service rule specified an unknown location

rules_servicerulelocunknown,

# Special value that matches all events of type GLB Services.

services_ALL,

# GLB Services - Active datacentre mismatches among cluster members

services_glbactivedcmismatch,

# GLB Services - A DNS Query returned IP addresses that are not configured

# for any location that is currently alive

services_glbdeadlocmissingips,

# GLB Services - Failed to alter DNS packet for global load balancing

services_glbfailalter,

# GLB Services - Failed to write log file for GLB service

services_glblogwritefail,

# GLB Services - Manual failback triggered

services_glbmanualfailback,

# GLB Services - A DNS Query returned IP addresses that are not configured in

# any location

services_glbmissingips,

# GLB Services - A location has been set as active for a GLB service

services_glbnewmaster,

# GLB Services - No valid location could be chosen for Global Load Balancing

services_glbnolocations,

# GLB Services - GLB Service has failed

services_glbservicedied,

# GLB Services - GLB Service has recovered

services_glbserviceok,

# GLB Services - There are too many Data Centers configured and the Global

# Load Balancing feature is not guaranteed to work reliably with more than

# 255 Data Centres

services_glbtoomanylocations,

# Special value that matches all events of type SLM Classes.

slm_ALL,

# SLM Classes - SLM shared memory limit exceeded

slm_slmclasslimitexceeded,

# SLM Classes - SLM has fallen below serious threshold

slm_slmfallenbelowserious,

# SLM Classes - SLM has fallen below warning threshold

slm_slmfallenbelowwarn,

# SLM Classes - Node information when SLM is non-conforming (no SNMP trap)

slm_slmnodeinfo,

# SLM Classes - SLM has risen above the serious threshold

slm_slmrecoveredserious,

# SLM Classes - SLM has recovered

slm_slmrecoveredwarn,

# Special value that matches all events of type SSL Hardware.

sslhw_ALL,

# SSL Hardware - SSL hardware support failed

sslhw_sslhwfail,

# SSL Hardware - SSL hardware support restarted

sslhw_sslhwrestart,

# SSL Hardware - SSL hardware support started

sslhw_sslhwstart,

# All custom TrafficScript events.

trafficscript_ALL,

# Special value that matches all events of type Virtual Servers.

vservers_ALL,

# Virtual Servers - A protocol error has occurred

vservers_connerror,

# Virtual Servers - A socket connection failure has occurred

vservers_connfail,

# Virtual Servers - The built-in DNS server has successfully added a DNS zone

vservers_dnsaddzone,

# Virtual Servers - The built-in DNS server has failed to add a DNS zone

vservers_dnserroraddzone,

# Virtual Servers - The built-in DNS server has failed to delete a DNS zone

vservers_dnserrordeletezone,

# Virtual Servers - DNSSEC zone contains expired signatures

vservers_dnssecexpired,

# Virtual Servers - DNSSEC zone contains signatures that are about to expire

vservers_dnssecexpires,

# Virtual Servers - DNS zone has been deleted

vservers_dnszonedelete,

# Virtual Servers - IDP certificate expired

vservers_idpcertexpired,

# Virtual Servers - IDP certificate will expire within seven days

vservers_idpcerttoexpire,

# Virtual Servers - A virtual server request log file was deleted (appliances

# only)

vservers_logfiledeleted,

# Virtual Servers - Dropped connection, request exceeded max_client_buffer

# limit

vservers_maxclientbufferdrop,

# Virtual Servers - Pool uses a session persistence class that does not work

# with this virtual server's protocol

vservers_poolpersistencemismatch,

# Virtual Servers - Private key now OK (hardware available)

vservers_privkeyok,

# Virtual Servers - Error compressing HTTP response

vservers_respcompfail,

# Virtual Servers - Response headers from webserver too large

vservers_responsetoolarge,

# Virtual Servers - No suitable ports available for streaming data connection

vservers_rtspstreamnoports,

# Virtual Servers - Failed to compress SAML authentication request

vservers_samlauthnrequestcompressionfailure,

# Virtual Servers - Failed to create SAML authentication request

vservers_samlauthnrequestfailure,

# Virtual Servers - Failed to decrypt SAML session cookie

vservers_samlcookiedecryptfailure,

# Virtual Servers - Failed to encrypt cookie content

vservers_samlcookieencryptfailure,

# Virtual Servers - No user specified in SAML response

vservers_samlnouserinresponse,

# Virtual Servers - Failed to decrypt SAML RelayState

vservers_samlrelaystatedecryptfailure,

# Virtual Servers - Failed to encrypt SAML RelayState

vservers_samlrelaystateencryptfailure,

# Virtual Servers - Failed to extract information from SAML RelayState

vservers_samlrelaystateinvalid,

# Virtual Servers - SAML response parse failure

vservers_samlresponseparsefailure,

# Virtual Servers - SAML response validation failed

vservers_samlresponsevalidationfailure,

# Virtual Servers - SAML response signature verification error

vservers_samlsigverificationfailure,

# Virtual Servers - No suitable ports available for streaming data connection

vservers_sipstreamnoports,

# Virtual Servers - Request(s) received while SSL configuration invalid,

# connection closed

vservers_ssldrop,

# Virtual Servers - One or more SSL connections from clients failed recently

vservers_sslfail,

# Virtual Servers - SSL handshake messages have exceeded the size permitted

# by configuration

vservers_sslhandshakemsgsizelimit,

# Virtual Servers - SSL re-handshake requests have exceeded the frequency

# permitted by configuration

vservers_sslrehandshakemininterval,

# Virtual Servers - Certificate Authority certificate expired

vservers_vscacertexpired,

# Virtual Servers - Certificate Authority certificate will expire within

# seven days

vservers_vscacerttoexpire,

# Virtual Servers - CRL for a Certificate Authority is out of date

vservers_vscrloutofdate,

# Virtual Servers - Failed to write log file for virtual server

vservers_vslogwritefail,

# Virtual Servers - Public SSL certificate expired

vservers_vssslcertexpired,

# Virtual Servers - Public SSL certificate will expire within seven days

vservers_vssslcerttoexpire,

# Virtual Servers - Virtual server started

vservers_vsstart,

# Virtual Servers - Virtual server stopped

vservers_vsstop,

# Special value that matches all events of type Traffic Managers.

zxtms_ALL,

# Traffic Managers - Configuration update refused: traffic manager version

# mismatch

zxtms_versionmismatch

}