opentelemetry_provider.go ×4

Frontier kind: Joint frontier

unlabeled · c_02733ba6c653

1 test · 457 LOC · 24 files · introduces 1 test · 20 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
6 ranges20 lines · 2 files
Tests
1 test

Contains — complete concept membership

All code (extent)
65 ranges457 lines · 24 files · Browse complete extent
All tests (intent)
1 testBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Introduced files, introduced tests, and structurally relevant concept specializationstatsd_exporter.go ×5 · 22 introduced LOCstatsd_exporter.go ×5opentelemetry_provider.go ×1 · 3 introduced LOCopentelemetry_provider.g…opentelemetry_provider.go ×3 · 32 introduced LOCopentelemetry_provider.g…defs.go ×5 · 91 introduced LOCdefs.go ×5noop_logger.go ×1 · 3 introduced LOCnoop_logger.go ×1tags.go ×9 · 37 introduced LOCtags.go ×9message.pb.go ×2 · 49 introduced LOCmessage.pb.go ×2cluster.pb.go ×2 · 200 introduced LOCcluster.pb.go ×2TestOperatorServiceMetadata, TestWorkflowServiceMetadata · 0 introduced LOCTestOperatorServiceMetad…go.temporal.io/server/api/deployment/v1/message.pb.go · 4650 LOCv1/message.pb.gogo.temporal.io/server/api/enums/v1/cluster.pb.go · 233 LOCv1/cluster.pb.gogo.temporal.io/server/api/enums/v1/common.pb.go · 288 LOCv1/common.pb.gogo.temporal.io/server/api/enums/v1/dlq.pb.go · 211 LOCv1/dlq.pb.gogo.temporal.io/server/api/enums/v1/fairness_state.pb.go · 147 LOCv1/fairness_state.pb.gogo.temporal.io/server/api/enums/v1/nexus.pb.go · 182 LOCv1/nexus.pb.gogo.temporal.io/server/api/enums/v1/predicate.pb.go · 194 LOCv1/predicate.pb.gogo.temporal.io/server/api/enums/v1/replication.pb.go · 338 LOCv1/replication.pb.gogo.temporal.io/server/api/enums/v1/task.pb.go · 480 LOCv1/task.pb.gogo.temporal.io/server/api/enums/v1/workflow.pb.go · 299 LOCv1/workflow.pb.gogo.temporal.io/server/api/enums/v1/workflow_task_type.pb.go · 148 LOCv1/workflow_task_type.pb…go.temporal.io/server/api/metrics/v1/message.pb.go · 128 LOCv1/message.pb.gogo.temporal.io/server/api/taskqueue/v1/message.pb.go · 1363 LOCv1/message.pb.gogo.temporal.io/server/common/build/build.go · 56 LOCbuild/build.gogo.temporal.io/server/common/log/noop_logger.go · 25 LOClog/noop_logger.gogo.temporal.io/server/common/log/tag/tags.go · 1039 LOCtag/tags.gogo.temporal.io/server/common/log/tag/zap_tag.go · 242 LOCtag/zap_tag.gogo.temporal.io/server/common/metrics/defs.go · 76 LOCmetrics/defs.gogo.temporal.io/server/common/metrics/defs_base.go · 30 LOCmetrics/defs_base.gogo.temporal.io/server/common/metrics/noop_impl.go · 58 LOCmetrics/noop_impl.gogo.temporal.io/server/common/metrics/opentelemetry_provider.go · 184 LOCmetrics/opentelemetry_pr…go.temporal.io/server/common/metrics/option.go · 21 LOCmetrics/option.gogo.temporal.io/server/common/metrics/registry.go · 75 LOCmetrics/registry.gogo.temporal.io/server/common/metrics/statsd_exporter.go · 287 LOCmetrics/statsd_exporter.…TestOperatorServiceMetadata · introduced test · go.temporal.io/server/common/api/TestOperatorServiceMetadataTestOperatorServiceMetad…TestWorkflowServiceMetadata · introduced test · go.temporal.io/server/common/api/TestWorkflowServiceMetadataTestWorkflowServiceMetad…TestMutexMapBaggage · introduced test · go.temporal.io/server/common/metrics/TestBaggageBenchSuite/TestMutexMapBaggageTestMutexMapBaggageTestSyncMapBaggage · introduced test · go.temporal.io/server/common/metrics/TestBaggageBenchSuite/TestSyncMapBaggageTestSyncMapBaggageTestNewOpenTelemetryProviderWithStatsD · introduced test · go.temporal.io/server/common/metrics/TestNewOpenTelemetryProviderWithStatsDTestNewOpenTelemetryProv…Focused concept · opentelemetry_provider.go ×4 · 20 introduced LOCopentelemetry_provider.g…

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

1 test introduced at this concept.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 20 introduced LOC across 6 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/common/metrics/opentelemetry_provider.go 11 introduced LOC · 4 ranges

Open complete file

37 statsdConfig *StatsdConfig,
38 clientConfig *ClientConfig,
39 > ) (*openTelemetryProviderImpl, error) { opentelemetry_provider.go
40 > // Set up StatsD exporter if config is provided
41 > if statsdConfig == nil {
42 return nil, errors.New("statsd config is required to provide statsd metrics")
43 }
44 > var err error opentelemetry_provider.go
45 > statsdExp, err := NewStatsdExporter(statsdConfig, logger)
46 > if err != nil {
47 logger.Error("Failed to initialize statsd exporter.", tag.Error(err))
48 return nil, err
49 }
50 // Create a PeriodicReader with the StatsD exporter
51 > statsdReader := sdkmetrics.NewPeriodicReader(statsdExp) opentelemetry_provider.go
52 > return newOpenTelemetryProvider(logger, statsdReader, statsdConfig, statsdExp, nil, nil, clientConfig)
53 }
54
176 // Shutdown StatsD exporter if it exists
177 if r.statsdExporter != nil {
178 > ctx, closeCtx := context.WithTimeout(context.Background(), time.Second) opentelemetry_provider.go
179 > defer closeCtx()
180 > if err := r.statsdExporter.Shutdown(ctx); err != nil {
181 logger.Error("StatsD exporter shutdown failure.", tag.Error(err))
182 }
go.temporal.io/server/common/metrics/statsd_exporter.go 9 introduced LOC · 2 ranges

Open complete file

53
54 // Temporality implements metric.Exporter
55 > func (e *statsdExporter) Temporality(ik metric.InstrumentKind) metricdata.Temporality { statsd_exporter.go
56 > // StatsD typically uses cumulative temporality for counters and delta for gauges
57 > switch ik {
58 > case metric.InstrumentKindCounter, metric.InstrumentKindObservableCounter:
59 > return metricdata.CumulativeTemporality
60 case metric.InstrumentKindHistogram:
61 return metricdata.CumulativeTemporality
66
67 // Aggregation implements metric.Exporter
68 > func (e *statsdExporter) Aggregation(ik metric.InstrumentKind) metric.Aggregation { statsd_exporter.go
69 > // For StatsD, we use default aggregations since StatsD handles aggregation on the server side
70 > return metric.DefaultAggregationSelector(ik)
71 > }
72
73 // Export implements metric.Exporter