2022-09-20 21:14:28 +02:00
|
|
|
// 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 opencensus // import "go.opentelemetry.io/otel/bridge/opencensus"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
ocmetricdata "go.opencensus.io/metric/metricdata"
|
|
|
|
"go.opencensus.io/metric/metricexport"
|
2022-12-19 18:05:46 +02:00
|
|
|
"go.opencensus.io/metric/metricproducer"
|
2022-09-20 21:14:28 +02:00
|
|
|
|
2022-10-11 17:50:09 +02:00
|
|
|
"go.opentelemetry.io/otel"
|
2022-09-20 21:14:28 +02:00
|
|
|
internal "go.opentelemetry.io/otel/bridge/opencensus/internal/ocmetric"
|
|
|
|
"go.opentelemetry.io/otel/sdk/instrumentation"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/metricdata"
|
|
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
)
|
|
|
|
|
2022-10-11 17:50:09 +02:00
|
|
|
const scopeName = "go.opentelemetry.io/otel/bridge/opencensus"
|
|
|
|
|
2022-12-19 18:05:46 +02:00
|
|
|
type producer struct {
|
|
|
|
manager *metricproducer.Manager
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMetricProducer returns a metric.Producer that fetches metrics from
|
|
|
|
// OpenCensus.
|
|
|
|
func NewMetricProducer() metric.Producer {
|
|
|
|
return &producer{
|
|
|
|
manager: metricproducer.GlobalManager(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *producer) Produce(context.Context) ([]metricdata.ScopeMetrics, error) {
|
|
|
|
producers := p.manager.GetAll()
|
|
|
|
data := []*ocmetricdata.Metric{}
|
|
|
|
for _, ocProducer := range producers {
|
|
|
|
data = append(data, ocProducer.Read()...)
|
|
|
|
}
|
|
|
|
otelmetrics, err := internal.ConvertMetrics(data)
|
|
|
|
if len(otelmetrics) == 0 {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return []metricdata.ScopeMetrics{{
|
|
|
|
Scope: instrumentation.Scope{
|
|
|
|
Name: scopeName,
|
|
|
|
},
|
|
|
|
Metrics: otelmetrics,
|
|
|
|
}}, err
|
|
|
|
}
|
|
|
|
|
2022-09-20 21:14:28 +02:00
|
|
|
// exporter implements the OpenCensus metric Exporter interface using an
|
|
|
|
// OpenTelemetry base exporter.
|
|
|
|
type exporter struct {
|
|
|
|
base metric.Exporter
|
|
|
|
res *resource.Resource
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMetricExporter returns an OpenCensus exporter that exports to an
|
2022-10-11 17:50:09 +02:00
|
|
|
// OpenTelemetry (push) exporter.
|
2022-12-19 18:05:46 +02:00
|
|
|
// Deprecated: Use NewMetricProducer instead.
|
2022-09-20 21:14:28 +02:00
|
|
|
func NewMetricExporter(base metric.Exporter, res *resource.Resource) metricexport.Exporter {
|
2022-10-02 17:45:13 +02:00
|
|
|
return &exporter{base: base, res: res}
|
2022-09-20 21:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExportMetrics implements the OpenCensus metric Exporter interface by sending
|
|
|
|
// to an OpenTelemetry exporter.
|
|
|
|
func (e *exporter) ExportMetrics(ctx context.Context, ocmetrics []*ocmetricdata.Metric) error {
|
|
|
|
otelmetrics, err := internal.ConvertMetrics(ocmetrics)
|
|
|
|
if err != nil {
|
2022-10-11 17:50:09 +02:00
|
|
|
otel.Handle(err)
|
|
|
|
}
|
|
|
|
if len(otelmetrics) == 0 {
|
|
|
|
return nil
|
2022-09-20 21:14:28 +02:00
|
|
|
}
|
2023-03-16 19:58:43 +02:00
|
|
|
return e.base.Export(ctx, &metricdata.ResourceMetrics{
|
2022-09-20 21:14:28 +02:00
|
|
|
Resource: e.res,
|
|
|
|
ScopeMetrics: []metricdata.ScopeMetrics{
|
|
|
|
{
|
|
|
|
Scope: instrumentation.Scope{
|
2022-10-11 17:50:09 +02:00
|
|
|
Name: scopeName,
|
2022-09-20 21:14:28 +02:00
|
|
|
},
|
|
|
|
Metrics: otelmetrics,
|
|
|
|
},
|
|
|
|
}})
|
|
|
|
}
|