service_map
Creates, updates, deletes, gets or lists a service_map
resource.
Overview
Name | service_map |
Type | Resource |
Id | sumologic.tracing.service_map |
Fields
The following fields are returned by SELECT
queries:
- getServiceMap
List of nodes and list of edges.
Name | Datatype | Description |
---|---|---|
edges | array | List of service map edges. |
nodes | array | List of service map nodes. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getServiceMap | select | region | Run a search request to get a map of services and connections between them. |
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 |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT
examples
- getServiceMap
Run a search request to get a map of services and connections between them.
SELECT
edges,
nodes
FROM sumologic.tracing.service_map
WHERE region = '{{ region }}' -- required
;