Skip to main content

service_map

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

Overview

Nameservice_map
TypeResource
Idsumologic.tracing.service_map

Fields

The following fields are returned by SELECT queries:

List of nodes and list of edges.

NameDatatypeDescription
edgesarrayList of service map edges.
nodesarrayList of service map nodes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getServiceMapselectregionRun 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.

NameDatatypeDescription
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

SELECT examples

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
;