-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Configuration for Metrics Cardinality Simplification
Number of metrics produced can be reduced by controlling the depth or the level using configmap. Available levels are namespace, run pipelinerun/taskrun or pipeline/task. Also, type of metrics can be changed from histogram to prometheus gauge/opencensus last value. Doing this will reduce the load on metrics databases.
- Loading branch information
1 parent
c975119
commit bda40ea
Showing
19 changed files
with
835 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
/* | ||
Copyright 2021 The Tekton Authors | ||
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. | ||
*/ | ||
|
||
package config | ||
|
||
import ( | ||
corev1 "k8s.io/api/core/v1" | ||
"knative.dev/pkg/metrics" | ||
) | ||
|
||
const ( | ||
// metricsTaskrunLevel determines to what level to aggregate metrics | ||
// for taskrun | ||
metricsTaskrunLevelKey = "metrics.taskrun.level" | ||
|
||
// metricsPipelinerunLevel determines to what level to aggregate metrics | ||
// for pipelinerun | ||
metricsPipelinerunLevelKey = "metrics.pipelinerun.level" | ||
// metricsDurationTaskrunType determines what type of | ||
// metrics to use for aggregating duration for taskrun | ||
metricsDurationTaskrunType = "metrics.taskrun.duration-type" | ||
// metricsDurationPipelinerunType determines what type of | ||
// metrics to use for aggregating duration for pipelinerun | ||
metricsDurationPipelinerunType = "metrics.pipelinerun.duration-type" | ||
|
||
// DefaultTaskrunLevel determines to what level to aggregate metrics | ||
// when it isn't specified in configmap | ||
// TBD: Change to task in next | ||
// relase and taskrun level will be deprecated | ||
DefaultTaskrunLevel = "taskrun" | ||
// TaskrunLevelAtTaskrun specify that aggregation will be done at | ||
// taskrun level | ||
TaskrunLevelAtTaskrun = "taskrun" | ||
// TaskrunLevelAtTask specify that aggregation will be done at task level | ||
TaskrunLevelAtTask = "task" | ||
// TaskrunLevelAtNS specify that aggregation will be done at namespace level | ||
TaskrunLevelAtNS = "namespace" | ||
// DefaultPipelinerunLevel determines to what level to aggregate metrics | ||
// when it isn't specified in configmap | ||
// TBD: Change to pipeline in next | ||
// relase and pipelinerun level will be deprecated | ||
DefaultPipelinerunLevel = "pipelinerun" | ||
// PipelinerunLevelAtPipelinerun specify that aggregation will be done at | ||
// pipelienrun level | ||
PipelinerunLevelAtPipelinerun = "pipelinerun" | ||
// PipelinerunLevelAtPipeline specify that aggregation will be done at | ||
// pipeline level | ||
PipelinerunLevelAtPipeline = "pipeline" | ||
// PipelinerunLevelAtNS specify that aggregation will be done at | ||
// namespace level | ||
PipelinerunLevelAtNS = "namespace" | ||
|
||
// DefaultDurationTaskrunType determines what type | ||
// of metrics to use when we don't specify one in | ||
// configmap | ||
DefaultDurationTaskrunType = "histogram" | ||
// DurationTaskrunTypeHistogram specify that histogram | ||
// type metrics need to be use for Duration of Taskrun | ||
DurationTaskrunTypeHistogram = "histogram" | ||
// DurationTaskrunTypeHistogram specify that lastValue or | ||
// gauge type metrics need to be use for Duration of Taskrun | ||
DurationTaskrunTypeLastValue = "lastvalue" | ||
|
||
// DefaultDurationPipelinerunType determines what type | ||
// of metrics to use when we don't specify one in | ||
// configmap | ||
DefaultDurationPipelinerunType = "histogram" | ||
// DurationPipelinerunTypeHistogram specify that histogram | ||
// type metrics need to be use for Duration of Pipelinerun | ||
DurationPipelinerunTypeHistogram = "histogram" | ||
// DurationPipelinerunTypeHistogram specify that lastValue or | ||
// gauge type metrics need to be use for Duration of Pipelinerun | ||
DurationPipelinerunTypeLastValue = "lastvalue" | ||
) | ||
|
||
// Metrics holds the configurations for the metrics | ||
// +k8s:deepcopy-gen=true | ||
type Metrics struct { | ||
TaskrunLevel string | ||
PipelinerunLevel string | ||
DurationTaskrunType string | ||
DurationPipelinerunType string | ||
} | ||
|
||
// GetArtifactBucketConfigName returns the name of the configmap containing all | ||
// customizations for the storage bucket. | ||
func GetMetricsConfigName() string { | ||
return metrics.ConfigMapName() | ||
} | ||
|
||
// Equals returns true if two Configs are identical | ||
func (cfg *Metrics) Equals(other *Metrics) bool { | ||
if cfg == nil && other == nil { | ||
return true | ||
} | ||
|
||
if cfg == nil || other == nil { | ||
return false | ||
} | ||
|
||
return other.TaskrunLevel == cfg.TaskrunLevel && | ||
other.PipelinerunLevel == cfg.PipelinerunLevel && | ||
other.DurationTaskrunType == cfg.DurationTaskrunType && | ||
other.DurationPipelinerunType == cfg.DurationPipelinerunType | ||
} | ||
|
||
// NewMetricsFromMap returns a Config given a map corresponding to a ConfigMap | ||
func NewMetricsFromMap(cfgMap map[string]string) (*Metrics, error) { | ||
This comment has been minimized.
Sorry, something went wrong. |
||
tc := Metrics{ | ||
TaskrunLevel: DefaultTaskrunLevel, | ||
PipelinerunLevel: DefaultPipelinerunLevel, | ||
DurationTaskrunType: DefaultDurationTaskrunType, | ||
DurationPipelinerunType: DefaultDurationPipelinerunType, | ||
} | ||
|
||
if taskrunLevel, ok := cfgMap[metricsTaskrunLevelKey]; ok { | ||
tc.TaskrunLevel = taskrunLevel | ||
} | ||
|
||
if pipelinerunLevel, ok := cfgMap[metricsPipelinerunLevelKey]; ok { | ||
tc.PipelinerunLevel = pipelinerunLevel | ||
} | ||
if durationTaskrun, ok := cfgMap[metricsDurationTaskrunType]; ok { | ||
tc.DurationTaskrunType = durationTaskrun | ||
} | ||
if durationPipelienrun, ok := cfgMap[metricsDurationPipelinerunType]; ok { | ||
tc.DurationPipelinerunType = durationPipelienrun | ||
} | ||
return &tc, nil | ||
} | ||
|
||
// NewArtifactBucketFromConfigMap returns a Config for the given configmap | ||
func NewMetricsFromConfigMap(config *corev1.ConfigMap) (*Metrics, error) { | ||
return NewMetricsFromMap(config.Data) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
Copyright 2021 The Tekton Authors | ||
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. | ||
*/ | ||
|
||
package config_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
"github.com/tektoncd/pipeline/pkg/apis/config" | ||
test "github.com/tektoncd/pipeline/pkg/reconciler/testing" | ||
"github.com/tektoncd/pipeline/test/diff" | ||
) | ||
|
||
func TestNewMetricsFromConfigMap(t *testing.T) { | ||
type testCase struct { | ||
expectedConfig *config.Metrics | ||
fileName string | ||
} | ||
|
||
testCases := []testCase{ | ||
{ | ||
expectedConfig: &config.Metrics{ | ||
TaskrunLevel: config.TaskrunLevelAtTaskrun, | ||
PipelinerunLevel: config.PipelinerunLevelAtPipelinerun, | ||
DurationTaskrunType: config.DurationPipelinerunTypeHistogram, | ||
DurationPipelinerunType: config.DurationPipelinerunTypeHistogram, | ||
}, | ||
fileName: config.GetMetricsConfigName(), | ||
}, | ||
{ | ||
expectedConfig: &config.Metrics{ | ||
TaskrunLevel: config.TaskrunLevelAtNS, | ||
PipelinerunLevel: config.PipelinerunLevelAtNS, | ||
DurationTaskrunType: config.DurationTaskrunTypeHistogram, | ||
DurationPipelinerunType: config.DurationPipelinerunTypeLastValue, | ||
}, | ||
fileName: "config-observability-namespacelevel", | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
verifyConfigFileWithExpectedMetricsConfig(t, tc.fileName, tc.expectedConfig) | ||
} | ||
} | ||
|
||
func TestNewMetricsFromEmptyConfigMap(t *testing.T) { | ||
MetricsConfigEmptyName := "config-observability-empty" | ||
expectedConfig := &config.Metrics{ | ||
TaskrunLevel: config.TaskrunLevelAtTaskrun, | ||
PipelinerunLevel: config.PipelinerunLevelAtPipelinerun, | ||
DurationTaskrunType: config.DurationPipelinerunTypeHistogram, | ||
DurationPipelinerunType: config.DurationPipelinerunTypeHistogram, | ||
} | ||
verifyConfigFileWithExpectedMetricsConfig(t, MetricsConfigEmptyName, expectedConfig) | ||
} | ||
|
||
func verifyConfigFileWithExpectedMetricsConfig(t *testing.T, fileName string, expectedConfig *config.Metrics) { | ||
cm := test.ConfigMapFromTestFile(t, fileName) | ||
if ab, err := config.NewMetricsFromConfigMap(cm); err == nil { | ||
if d := cmp.Diff(ab, expectedConfig); d != "" { | ||
t.Errorf("Diff:\n%s", diff.PrintWantGot(d)) | ||
} | ||
} else { | ||
t.Errorf("NewMetricsFromConfigMap(actual) = %v", err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2019 The Tekton Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: config-observability | ||
namespace: tekton-pipelines | ||
labels: | ||
app.kubernetes.io/instance: default | ||
app.kubernetes.io/part-of: tekton-pipelines | ||
data: | ||
metrics.backend-destination: prometheus | ||
metrics.stackdriver-project-id: "<your stackdriver project id>" | ||
metrics.allow-stackdriver-custom-metrics: "false" |
30 changes: 30 additions & 0 deletions
30
pkg/apis/config/testdata/config-observability-namespacelevel.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 2019 The Tekton Authors | ||
# | ||
# 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 | ||
# | ||
# https://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. | ||
|
||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: config-observability | ||
namespace: tekton-pipelines | ||
labels: | ||
app.kubernetes.io/instance: default | ||
app.kubernetes.io/part-of: tekton-pipelines | ||
data: | ||
metrics.backend-destination: prometheus | ||
metrics.stackdriver-project-id: "<your stackdriver project id>" | ||
metrics.allow-stackdriver-custom-metrics: "false" | ||
metrics.taskrun.level: "namespace" | ||
metrics.taskrun.duration-type: "histogram" | ||
metrics.pipelinerun.level: "namespace" | ||
metrics.pipelinerun.duration-type: "lastvalue" |
Oops, something went wrong.
As we are not returning any errors so can we skip error returning part ?
So that we no need to use
_
here bda40ea#diff-53111604d68d48131535543df6ca244e68a5a6a69290bce0650534c7b789ce74R124