1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
package api
import (
"context"
"net/http"
"gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/internal/gitlab"
)
const (
UsagePingAPIPath = "/api/v4/internal/kubernetes/usage_metrics"
)
type UsagePingData struct {
Counters map[string]int64 `json:"counters,omitempty"`
UniqueCounters map[string][]int64 `json:"unique_counters,omitempty"`
}
func SendUsagePing(ctx context.Context, client gitlab.ClientInterface, data UsagePingData, opts ...gitlab.DoOption) error {
return client.Do(ctx,
joinOpts(opts,
gitlab.WithMethod(http.MethodPost),
gitlab.WithPath(UsagePingAPIPath),
gitlab.WithJSONRequestBody(data),
gitlab.WithResponseHandler(gitlab.NoContentResponseHandler()),
gitlab.WithJWT(true),
)...,
)
}
|