application_event_lists
Creates, updates, deletes, gets or lists an application_event_lists resource.
Overview
| Name | application_event_lists |
| Type | Resource |
| Id | azure.service_fabric_dataplane.application_event_lists |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_application_event_list | exec | application_id, EndTimeUtc, StartTimeUtc, endpoint | timeout, EventsTypesFilter, ExcludeAnalysisEvents, SkipCorrelationLookup | Gets an Application-related events. The response is list of ApplicationEvent objects. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
EndTimeUtc | string | The end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. |
StartTimeUtc | string | The start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. |
application_id | string | The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the " |
endpoint | string | The service endpoint host (no scheme). (default: ) |
EventsTypesFilter | string | This is a comma separated string specifying the types of FabricEvents that should only be included in the response. |
ExcludeAnalysisEvents | boolean | This param disables the retrieval of AnalysisEvents if true is passed. |
SkipCorrelationLookup | boolean | This param disables the search of CorrelatedEvents information if true is passed. otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets populated. |
timeout | integer (int64) | The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds. |
Lifecycle Methods
- get_application_event_list
Gets an Application-related events. The response is list of ApplicationEvent objects.
EXEC azure.service_fabric_dataplane.application_event_lists.get_application_event_list
@application_id='{{ application_id }}' --required,
@EndTimeUtc='{{ EndTimeUtc }}' --required,
@StartTimeUtc='{{ StartTimeUtc }}' --required,
@endpoint='{{ endpoint }}' --required,
@timeout='{{ timeout }}',
@EventsTypesFilter='{{ EventsTypesFilter }}',
@ExcludeAnalysisEvents={{ ExcludeAnalysisEvents }},
@SkipCorrelationLookup={{ SkipCorrelationLookup }}
;