-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ruben Vargas <[email protected]>
- Loading branch information
1 parent
9944af6
commit 37e2e95
Showing
8 changed files
with
239 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: enhancement | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action) | ||
component: collector | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: Add usage metrics for the collector | ||
|
||
# One or more tracking issues related to the change | ||
issues: [2829] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: | | ||
This change will add metrics to the OpenTelemetry operator about how the collector is used in the cluster, | ||
it will add the following metrics to the opentelemetry-operator metrics endpoint | ||
opentelemetry_collector_receivers{collector_name="collector_name", namespace="ns", type="otlp"} 1 | ||
opentelemetry_collector_exporters{collector_name="collector_name", namespace="ns", type="otlp"} 1 | ||
opentelemetry_collector_processors{collector_name="collector_name", namespace="ns", type="otlp"} 1 | ||
opentelemetry_collector_processors{collector_name="collector_name", namespace="ns", type="otlp"} 0 |
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,149 @@ | ||
// Copyright The OpenTelemetry 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 v1beta1 | ||
|
||
import ( | ||
"context" | ||
"strings" | ||
|
||
"go.opentelemetry.io/otel" | ||
"go.opentelemetry.io/otel/attribute" | ||
"go.opentelemetry.io/otel/exporters/prometheus" | ||
"go.opentelemetry.io/otel/metric" | ||
sdkmetric "go.opentelemetry.io/otel/sdk/metric" | ||
"sigs.k8s.io/controller-runtime/pkg/metrics" | ||
) | ||
|
||
const ( | ||
meterName = "crd-metrics" | ||
) | ||
|
||
// Metric labels | ||
|
||
const ( | ||
prefix = "opentelemetry_collector_" | ||
receivers = prefix + "receivers" | ||
exporters = prefix + "exporters" | ||
processors = prefix + "processors" | ||
extensions = prefix + "extensions" | ||
mode = prefix + "info" | ||
) | ||
|
||
type components struct { | ||
receivers []string | ||
processors []string | ||
exporters []string | ||
extensions []string | ||
} | ||
|
||
// BootstrapMetrics configures the OpenTelemetry meter provider with the Prometheus exporter. | ||
func BootstrapMetrics() error { | ||
|
||
exporter, err := prometheus.New(prometheus.WithRegisterer(metrics.Registry)) | ||
if err != nil { | ||
return err | ||
} | ||
provider := sdkmetric.NewMeterProvider(sdkmetric.WithReader(exporter)) | ||
otel.SetMeterProvider(provider) | ||
return err | ||
} | ||
|
||
func extractElements(elements map[string]interface{}) []string { | ||
if elements == nil { | ||
return []string{} | ||
} | ||
|
||
itemsMap := map[string]struct{}{} | ||
var items []string | ||
for key := range elements { | ||
itemName := strings.SplitN(key, "/", 2)[0] | ||
itemsMap[itemName] = struct{}{} | ||
} | ||
for key := range itemsMap { | ||
items = append(items, key) | ||
} | ||
return items | ||
} | ||
|
||
func getComponentsFromConfigV1Beta1(yamlContent Config) *components { | ||
|
||
info := &components{ | ||
receivers: extractElements(yamlContent.Receivers.Object), | ||
exporters: extractElements(yamlContent.Exporters.Object), | ||
} | ||
|
||
if yamlContent.Processors != nil { | ||
info.processors = extractElements(yamlContent.Processors.Object) | ||
} | ||
|
||
if yamlContent.Extensions != nil { | ||
info.extensions = extractElements(yamlContent.Extensions.Object) | ||
} | ||
return info | ||
} | ||
|
||
func IncCounters(ctx context.Context, collector *OpenTelemetryCollector) error { | ||
return updateCounter(ctx, collector, true) | ||
} | ||
|
||
func DecCounters(ctx context.Context, collector *OpenTelemetryCollector) error { | ||
return updateCounter(ctx, collector, false) | ||
} | ||
|
||
func updateCounter(ctx context.Context, collector *OpenTelemetryCollector, up bool) error { | ||
meter := otel.Meter(meterName) | ||
receiversCounter, err := meter.Int64UpDownCounter(receivers) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
exporterCounter, err := meter.Int64UpDownCounter(exporters) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
processorCounter, err := meter.Int64UpDownCounter(processors) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
extensionsCounter, err := meter.Int64UpDownCounter(extensions) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
components := getComponentsFromConfigV1Beta1(collector.Spec.Config) | ||
moveCounter(ctx, collector, components.receivers, receiversCounter, up) | ||
moveCounter(ctx, collector, components.exporters, exporterCounter, up) | ||
moveCounter(ctx, collector, components.processors, processorCounter, up) | ||
moveCounter(ctx, collector, components.extensions, extensionsCounter, up) | ||
|
||
return nil | ||
} | ||
|
||
func moveCounter( | ||
ctx context.Context, collector *OpenTelemetryCollector, types []string, upDown metric.Int64UpDownCounter, up bool) { | ||
for _, exporter := range types { | ||
inc := 1 | ||
if !up { | ||
inc = -1 | ||
} | ||
upDown.Add(ctx, int64(inc), metric.WithAttributes( | ||
attribute.Key("collector_name").String(collector.Name), | ||
attribute.Key("namespace").String(collector.Namespace), | ||
attribute.Key("type").String(exporter), | ||
)) | ||
} | ||
} |
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 |
---|---|---|
@@ -1,2 +1,8 @@ | ||
resources: | ||
- manager.yaml | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
images: | ||
- name: controller | ||
newName: quay.io/rvargasp/opentelemetry-operator | ||
newTag: 1714976402.0.0 |
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
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