1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/pkg/deployment/metrics.go

94 lines
3.4 KiB
Go
Raw Normal View History

2018-08-31 14:08:21 +00:00
//
// DISCLAIMER
//
2022-01-10 11:35:49 +00:00
// Copyright 2016-2022 ArangoDB GmbH, Cologne, Germany
2018-08-31 14:08:21 +00:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package deployment
2021-12-07 03:11:54 +00:00
import (
"github.com/arangodb/kube-arangodb/pkg/generated/metric_descriptions"
2021-12-07 03:11:54 +00:00
"github.com/arangodb/kube-arangodb/pkg/util/metrics"
2018-08-31 14:08:21 +00:00
)
2021-12-07 03:11:54 +00:00
type Metrics struct {
Agency struct {
Errors uint64
Fetches uint64
Index uint64
2021-12-07 03:11:54 +00:00
}
2022-08-25 11:44:28 +00:00
Errors struct {
DeploymentValidationErrors, DeploymentImmutableErrors, StatusRestores uint64
2022-08-25 11:44:28 +00:00
}
2022-09-22 09:07:39 +00:00
ArangodbOperatorEngineOpsAlerts int
2022-08-25 11:44:28 +00:00
Deployment struct {
Accepted, UpToDate, Propagated bool
2022-08-25 11:44:28 +00:00
}
2021-12-07 03:11:54 +00:00
}
func (d *Deployment) CollectMetrics(m metrics.PushMetric) {
m.Push(metric_descriptions.ArangodbOperatorAgencyErrorsCounter(float64(d.metrics.Agency.Errors), d.namespace, d.name))
m.Push(metric_descriptions.ArangodbOperatorAgencyFetchesCounter(float64(d.metrics.Agency.Fetches), d.namespace, d.name))
m.Push(metric_descriptions.ArangodbOperatorAgencyIndexGauge(float64(d.metrics.Agency.Index), d.namespace, d.name))
2022-08-25 11:44:28 +00:00
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentValidationErrorsCounter(float64(d.metrics.Errors.DeploymentValidationErrors), d.namespace, d.name))
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentImmutableErrorsCounter(float64(d.metrics.Errors.DeploymentImmutableErrors), d.namespace, d.name))
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentStatusRestoresCounter(float64(d.metrics.Errors.StatusRestores), d.namespace, d.name))
2022-08-25 11:44:28 +00:00
if d.metrics.Deployment.Accepted {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentAcceptedGauge(1, d.namespace, d.name))
} else {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentAcceptedGauge(0, d.namespace, d.name))
}
if d.metrics.Deployment.UpToDate {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentUptodateGauge(1, d.namespace, d.name))
} else {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentUptodateGauge(0, d.namespace, d.name))
}
if d.metrics.Deployment.Propagated {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentPropagatedGauge(1, d.namespace, d.name))
} else {
m.Push(metric_descriptions.ArangodbOperatorResourcesArangodeploymentPropagatedGauge(0, d.namespace, d.name))
}
2022-08-25 11:44:28 +00:00
if c := d.agencyCache; c != nil {
2022-06-30 19:58:13 +00:00
m.Push(metric_descriptions.ArangodbOperatorAgencyCachePresentGauge(1, d.namespace, d.name))
if h, ok := c.Health(); ok {
2022-06-30 19:58:13 +00:00
m.Push(metric_descriptions.ArangodbOperatorAgencyCacheHealthPresentGauge(1, d.namespace, d.name))
h.CollectMetrics(m)
} else {
2022-06-30 19:58:13 +00:00
m.Push(metric_descriptions.ArangodbOperatorAgencyCacheHealthPresentGauge(0, d.namespace, d.name))
}
} else {
2022-06-30 19:58:13 +00:00
m.Push(metric_descriptions.ArangodbOperatorAgencyCachePresentGauge(0, d.namespace, d.name))
}
// Reconcile
if c := d.reconciler; c != nil {
c.CollectMetrics(m)
}
// Resources
if r := d.resources; r != nil {
r.CollectMetrics(m)
}
}