pkg/metrics/config_observability_test.go

232 lines
8.6 KiB
Go

/*
Copyright 2019 The Knative 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 metrics
import (
"testing"
"github.com/google/go-cmp/cmp"
corev1 "k8s.io/api/core/v1"
_ "knative.dev/pkg/system/testing"
)
func TestObservabilityConfiguration(t *testing.T) {
observabilityConfigTests := []struct {
name string
data map[string]string
wantErr bool
wantConfig *ObservabilityConfig
}{{
name: "observability configuration with all inputs",
wantConfig: &ObservabilityConfig{
EnableProbeRequestLog: true,
EnableProfiling: true,
EnableVarLogCollection: true,
EnableRequestLog: true,
LoggingURLTemplate: "https://logging.io",
RequestLogTemplate: `{"requestMethod": "{{.Request.Method}}"}`,
RequestMetricsBackend: "opencensus",
RequestMetricsReportingPeriodSeconds: defaultOpenCensusReportingPeriod,
},
data: map[string]string{
EnableProbeReqLogKey: "true",
"logging.enable-var-log-collection": "true",
ReqLogTemplateKey: `{"requestMethod": "{{.Request.Method}}"}`,
"logging.revision-url-template": "https://logging.io",
EnableReqLogKey: "true",
"metrics.request-metrics-backend-destination": "opencensus",
"profiling.enable": "true",
},
}, {
name: "observability config with no map",
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.RequestMetricsReportingPeriodSeconds = defaultPrometheusReportingPeriod
return oc
}(),
}, {
name: "invalid request log template",
wantErr: true,
data: map[string]string{
ReqLogTemplateKey: `{{ something }}`,
},
}, {
name: "observability configuration with request log set and template default",
data: map[string]string{
EnableProbeReqLogKey: "true",
EnableReqLogKey: "true",
"logging.revision-url-template": "https://logging.io",
},
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.EnableProbeRequestLog = true
oc.EnableRequestLog = true
oc.LoggingURLTemplate = "https://logging.io"
oc.RequestMetricsReportingPeriodSeconds = defaultPrometheusReportingPeriod
return oc
}(),
}, {
name: "observability configuration with request log and template not set",
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.RequestLogTemplate = ""
oc.EnableProbeRequestLog = true
oc.RequestMetricsReportingPeriodSeconds = defaultPrometheusReportingPeriod
return oc
}(),
data: map[string]string{
EnableProbeReqLogKey: "true",
EnableReqLogKey: "false", // Explicit default.
ReqLogTemplateKey: "",
},
}, {
name: "observability configuration with request log set and template not set",
wantErr: true,
data: map[string]string{
EnableProbeReqLogKey: "true",
EnableReqLogKey: "true",
"logging.enable-var-log-collection": "true",
ReqLogTemplateKey: "",
},
}, {
name: "observability configuration with request log not set and with template set",
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.EnableProbeRequestLog = true
oc.EnableVarLogCollection = true
oc.RequestLogTemplate = `{"requestMethod": "{{.Request.Method}}"}`
oc.RequestMetricsReportingPeriodSeconds = defaultPrometheusReportingPeriod
return oc
}(),
data: map[string]string{
EnableProbeReqLogKey: "true",
"logging.enable-var-log-collection": "true",
ReqLogTemplateKey: `{"requestMethod": "{{.Request.Method}}"}`,
},
}, {
name: "observability configuration with collector address",
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.RequestMetricsBackend = "opencensus"
oc.MetricsCollectorAddress = "otel:55678"
oc.RequestMetricsReportingPeriodSeconds = defaultOpenCensusReportingPeriod
return oc
}(),
data: map[string]string{
"metrics.request-metrics-backend-destination": "opencensus",
"metrics.opencensus-address": "otel:55678",
},
}, {
name: "observability configuration with collector address and reporting period",
wantConfig: func() *ObservabilityConfig {
oc := defaultConfig()
oc.RequestMetricsBackend = "opencensus"
oc.MetricsCollectorAddress = "otel:55678"
oc.RequestMetricsReportingPeriodSeconds = 10
return oc
}(),
data: map[string]string{
"metrics.request-metrics-backend-destination": "opencensus",
"metrics.opencensus-address": "otel:55678",
"metrics.request-metrics-reporting-period-seconds": "10",
},
}}
for _, tt := range observabilityConfigTests {
t.Run(tt.name, func(t *testing.T) {
obsConfig, err := NewObservabilityConfigFromConfigMap(&corev1.ConfigMap{
Data: tt.data,
})
if (err != nil) != tt.wantErr {
t.Fatalf("NewObservabilityFromConfigMap() error = %v, WantErr %v", err, tt.wantErr)
}
if got, want := obsConfig, tt.wantConfig; !cmp.Equal(got, want) {
t.Errorf("Got = %v, want: %v, diff(-want,+got)\n%s", got, want, cmp.Diff(want, got))
}
})
}
}
func TestConfigMapName(t *testing.T) {
if got, want := ConfigMapName(), "config-observability"; got != want {
t.Errorf("ConfigMapName = %q, want: %q", got, want)
}
t.Setenv(configMapNameEnv, "")
if got, want := ConfigMapName(), "config-observability"; got != want {
t.Errorf("ConfigMapName = %q, want: %q", got, want)
}
t.Setenv(configMapNameEnv, "why-is-living-so-hard?")
if got, want := ConfigMapName(), "why-is-living-so-hard?"; got != want {
t.Errorf("ConfigMapName = %q, want: %q", got, want)
}
}
func TestObservabilityConfigMap(t *testing.T) {
observabilityConfigMapTests := []struct {
name string
config *ObservabilityConfig
wantConfigMapData map[string]string
}{{
name: "observability configuration with all inputs",
config: &ObservabilityConfig{
EnableProbeRequestLog: true,
EnableProfiling: true,
EnableVarLogCollection: true,
EnableRequestLog: true,
LoggingURLTemplate: "https://logging.io",
RequestLogTemplate: `{"requestMethod": "{{.Request.Method}}"}`,
RequestMetricsBackend: "opencensus",
},
wantConfigMapData: map[string]string{
EnableProbeReqLogKey: "true",
"logging.enable-var-log-collection": "true",
ReqLogTemplateKey: `{"requestMethod": "{{.Request.Method}}"}`,
"logging.revision-url-template": "https://logging.io",
EnableReqLogKey: "true",
"metrics.request-metrics-backend-destination": "opencensus",
"profiling.enable": "true",
"metrics.opencensus-address": "",
},
}, {
name: "observability configuration default config",
config: defaultConfig(),
wantConfigMapData: map[string]string{
EnableProbeReqLogKey: "false",
"logging.enable-var-log-collection": "false",
ReqLogTemplateKey: `{"httpRequest": {"requestMethod": "{{.Request.Method}}", "requestUrl": "{{js .Request.RequestURI}}", "requestSize": "{{.Request.ContentLength}}", "status": {{.Response.Code}}, "responseSize": "{{.Response.Size}}", "userAgent": "{{js .Request.UserAgent}}", "remoteIp": "{{js .Request.RemoteAddr}}", "serverIp": "{{.Revision.PodIP}}", "referer": "{{js .Request.Referer}}", "latency": "{{.Response.Latency}}s", "protocol": "{{.Request.Proto}}"}, "traceId": "{{index .Request.Header "X-B3-Traceid"}}"}`,
"logging.revision-url-template": "",
EnableReqLogKey: "false",
"metrics.request-metrics-backend-destination": "prometheus",
"profiling.enable": "false",
"metrics.opencensus-address": "",
},
}}
for _, tt := range observabilityConfigMapTests {
t.Run(tt.name, func(t *testing.T) {
cm := tt.config.GetConfigMap()
if got, want := cm.Data, tt.wantConfigMapData; !cmp.Equal(got, want) {
t.Errorf("Got = %v, want: %v, diff(-want,+got)\n%s", got, want, cmp.Diff(want, got))
}
})
}
}