Skip to main content

service_event_lists

Creates, updates, deletes, gets or lists a service_event_lists resource.

Overview

Nameservice_event_lists
TypeResource
Idazure.service_fabric_dataplane.service_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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_service_event_listexecEndTimeUtc, service_id, StartTimeUtc, endpointtimeout, EventsTypesFilter, ExcludeAnalysisEvents, SkipCorrelationLookupGets a Service-related events. The response is list of ServiceEvent 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.

NameDatatypeDescription
EndTimeUtcstringThe end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ.
StartTimeUtcstringThe start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ.
endpointstringThe service endpoint host (no scheme). (default: )
service_idstringThe identity of the service. This ID is typically the full name of the service without the 'fabric:' URI scheme. Starting from version 6.0, hierarchical names are delimited with the "" character. For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be "myappapp1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions.
EventsTypesFilterstringThis is a comma separated string specifying the types of FabricEvents that should only be included in the response.
ExcludeAnalysisEventsbooleanThis param disables the retrieval of AnalysisEvents if true is passed.
SkipCorrelationLookupbooleanThis param disables the search of CorrelatedEvents information if true is passed. otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets populated.
timeoutinteger (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

Gets a Service-related events. The response is list of ServiceEvent objects.

EXEC azure.service_fabric_dataplane.service_event_lists.get_service_event_list 
@EndTimeUtc='{{ EndTimeUtc }}' --required,
@service_id='{{ service_id }}' --required,
@StartTimeUtc='{{ StartTimeUtc }}' --required,
@endpoint='{{ endpoint }}' --required,
@timeout='{{ timeout }}',
@EventsTypesFilter='{{ EventsTypesFilter }}',
@ExcludeAnalysisEvents={{ ExcludeAnalysisEvents }},
@SkipCorrelationLookup={{ SkipCorrelationLookup }}
;