Interface DatadogEvent
-
- All Known Implementing Classes:
AbstractDatadogBuildEvent
,AbstractDatadogEvent
,AbstractDatadogSimpleEvent
,BuildAbortedEventImpl
,BuildFinishedEventImpl
,BuildStartedEventImpl
,ComputerLaunchFailedEventImpl
,ComputerOfflineEventImpl
,ComputerOnlineEventImpl
,ItemCopiedEventImpl
,ItemCRUDEventImpl
,ItemLocationChangedEventImpl
,SCMCheckoutCompletedEventImpl
,UserAuthenticationEventImpl
public interface DatadogEvent
Interface for Datadog events.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
DatadogEvent.AlertType
static class
DatadogEvent.Priority
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_EVENT_TYPE
static String
SECURITY_EVENT_TYPE
static String
SYSTEM_EVENT_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAggregationKey()
DatadogEvent.AlertType
getAlertType()
Long
getDate()
String
getHost()
String
getJenkinsUrl()
DatadogEvent.Priority
getPriority()
Map<String,Set<String>>
getTags()
String
getText()
String
getTitle()
-
-
-
Field Detail
-
DEFAULT_EVENT_TYPE
static final String DEFAULT_EVENT_TYPE
- See Also:
- Constant Field Values
-
SECURITY_EVENT_TYPE
static final String SECURITY_EVENT_TYPE
- See Also:
- Constant Field Values
-
SYSTEM_EVENT_TYPE
static final String SYSTEM_EVENT_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTitle
String getTitle()
-
getText
String getText()
-
getHost
String getHost()
-
getJenkinsUrl
String getJenkinsUrl()
-
getPriority
DatadogEvent.Priority getPriority()
-
getAlertType
DatadogEvent.AlertType getAlertType()
-
getAggregationKey
String getAggregationKey()
-
getDate
Long getDate()
-
-