mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-14 21:57:49 +08:00
28 lines
955 B
Go
28 lines
955 B
Go
package functions
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/gravitl/netmaker/models"
|
|
)
|
|
|
|
// GetNodeMetrics - fetch a single node's metrics
|
|
func GetNodeMetrics(networkName, nodeID string) *models.Metrics {
|
|
return request[models.Metrics](http.MethodGet, fmt.Sprintf("/api/metrics/%s/%s", networkName, nodeID), nil)
|
|
}
|
|
|
|
// GetNetworkNodeMetrics - fetch an entire network's metrics
|
|
func GetNetworkNodeMetrics(networkName string) *models.NetworkMetrics {
|
|
return request[models.NetworkMetrics](http.MethodGet, "/api/metrics/"+networkName, nil)
|
|
}
|
|
|
|
// GetAllMetrics - fetch all metrics
|
|
func GetAllMetrics() *models.NetworkMetrics {
|
|
return request[models.NetworkMetrics](http.MethodGet, "/api/metrics", nil)
|
|
}
|
|
|
|
// GetNetworkExtMetrics - fetch external client metrics belonging to a network
|
|
func GetNetworkExtMetrics(networkName string) *map[string]models.Metric {
|
|
return request[map[string]models.Metric](http.MethodGet, "/api/metrics-ext/"+networkName, nil)
|
|
}
|