Interface GrafanaEndpointService
-
- All Known Implementing Classes:
GrafanaEndpointServiceImpl
public interface GrafanaEndpointService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteAllEndpoints()
void
deleteEndpoint(GrafanaEndpoint grafanaEndpoint)
List<GrafanaEndpoint>
findEndpoints()
GrafanaClient
getClient(String uid)
GrafanaClient
getClient(GrafanaEndpoint grafanaEndpoint)
GrafanaEndpoint
getEndpointById(Long endpointId)
GrafanaEndpoint
getEndpointByUid(String uid)
void
saveEndpoint(GrafanaEndpoint newGrafanaEndpoint)
void
updateEndpoint(GrafanaEndpoint endpoint)
-
-
-
Method Detail
-
findEndpoints
List<GrafanaEndpoint> findEndpoints()
-
deleteAllEndpoints
void deleteAllEndpoints()
-
updateEndpoint
void updateEndpoint(GrafanaEndpoint endpoint)
-
saveEndpoint
void saveEndpoint(GrafanaEndpoint newGrafanaEndpoint)
-
deleteEndpoint
void deleteEndpoint(GrafanaEndpoint grafanaEndpoint)
-
getEndpointById
GrafanaEndpoint getEndpointById(Long endpointId)
-
getEndpointByUid
GrafanaEndpoint getEndpointByUid(String uid)
-
getClient
GrafanaClient getClient(String uid)
-
getClient
GrafanaClient getClient(GrafanaEndpoint grafanaEndpoint)
-
-