Package zipkin2.storage
Interface ServiceAndSpanNames
-
- All Known Implementing Classes:
InMemoryStorage
public interface ServiceAndSpanNames
Provides autocomplete functionality by providing values for service and span names, usually derived fromSpanConsumer
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Call<List<String>>
getRemoteServiceNames(String serviceName)
Call<List<String>>
getServiceNames()
Retrieves alllocal
service names
, sorted lexicographically.Call<List<String>>
getSpanNames(String serviceName)
Retrieves allspan names
recorded by aservice
, sorted lexicographically.
-
-
-
Method Detail
-
getServiceNames
Call<List<String>> getServiceNames()
Retrieves alllocal
service names
, sorted lexicographically.
-
-