API reference

Kubernetes Resources API Reference


Get known services

Get known services allows you to query the services that Metoro has detected in the cluster.

GET https://us-east.metoro.io/api/v1/knownServices

The response will be a GetKnownServicesResponse object.


type GetKnownServicesResponse struct {
    // The known services in the cluster
    Services []KnownService `json:"services"`
}

type KnownService struct {
    // The display name of the service
    DisplayName       string  `json:"displayName"`
    
    // The name of the service
    ServiceName       string  `json:"serviceName"`
    
    // The number of requests per second the service is making
    RequestsPerSecond float64 `json:"requestsPerSecond"`

    // The number of logs per second the service is emitting
    LogsPerSecond     float64 `json:"logsPerSecond"`
}
Previous
Metrics

We use cookies

We use cookies to ensure you get the best experience on our website. For more information on how we use cookies, please see our cookie policy.