mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-20 19:52:56 +02:00
18f4cb85ec
* Empty All of the metrics dir * Add instrument api with documentation * Add a NoOp implementation. * Updated to the new config standard * Address PR comments * This change moves components to sdk/metrics The Moved components are: - metric/metrictest - metric/number - metric/internal/registry - metric/sdkapi * The SDK changes necessary to satasify the new api * This fixes the remaing tests. * Update changelog * refactor the Noop meter and instruments into one package. * Renamed pkg.Instruments to pkg.InstrumentProvider Co-authored-by: Aaron Clawson <MadVikingGod@users.noreply.github.com>
209 lines
6.1 KiB
Go
209 lines
6.1 KiB
Go
// 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 otlpmetricgrpc_test
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"time"
|
|
|
|
"google.golang.org/grpc/credentials"
|
|
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric"
|
|
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc"
|
|
"go.opentelemetry.io/otel/metric/instrument"
|
|
controller "go.opentelemetry.io/otel/sdk/metric/controller/basic"
|
|
processor "go.opentelemetry.io/otel/sdk/metric/processor/basic"
|
|
"go.opentelemetry.io/otel/sdk/metric/selector/simple"
|
|
)
|
|
|
|
func Example_insecure() {
|
|
ctx := context.Background()
|
|
client := otlpmetricgrpc.NewClient(otlpmetricgrpc.WithInsecure())
|
|
exp, err := otlpmetric.New(ctx, client)
|
|
if err != nil {
|
|
log.Fatalf("Failed to create the collector exporter: %v", err)
|
|
}
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
if err := exp.Shutdown(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
pusher := controller.New(
|
|
processor.NewFactory(
|
|
simple.NewWithHistogramDistribution(),
|
|
exp,
|
|
),
|
|
controller.WithExporter(exp),
|
|
controller.WithCollectPeriod(2*time.Second),
|
|
)
|
|
// TODO Bring back Global package
|
|
// global.SetMeterProvider(pusher)
|
|
|
|
if err := pusher.Start(ctx); err != nil {
|
|
log.Fatalf("could not start metric controoler: %v", err)
|
|
}
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
// pushes any last exports to the receiver
|
|
if err := pusher.Stop(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
// TODO Bring Back Global package
|
|
// meter := global.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
meter := pusher.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
|
|
// Recorder metric example
|
|
|
|
counter, err := meter.SyncFloat64().Counter("an_important_metric", instrument.WithDescription("Measures the cumulative epicness of the app"))
|
|
if err != nil {
|
|
log.Fatalf("Failed to create the instrument: %v", err)
|
|
}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
log.Printf("Doing really hard work (%d / 10)\n", i+1)
|
|
counter.Add(ctx, 1.0)
|
|
}
|
|
}
|
|
|
|
func Example_withTLS() {
|
|
// Please take at look at https://pkg.go.dev/google.golang.org/grpc/credentials#TransportCredentials
|
|
// for ways on how to initialize gRPC TransportCredentials.
|
|
creds, err := credentials.NewClientTLSFromFile("my-cert.pem", "")
|
|
if err != nil {
|
|
log.Fatalf("failed to create gRPC client TLS credentials: %v", err)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
client := otlpmetricgrpc.NewClient(otlpmetricgrpc.WithTLSCredentials(creds))
|
|
exp, err := otlpmetric.New(ctx, client)
|
|
if err != nil {
|
|
log.Fatalf("failed to create the collector exporter: %v", err)
|
|
}
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
if err := exp.Shutdown(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
pusher := controller.New(
|
|
processor.NewFactory(
|
|
simple.NewWithHistogramDistribution(),
|
|
exp,
|
|
),
|
|
controller.WithExporter(exp),
|
|
controller.WithCollectPeriod(2*time.Second),
|
|
)
|
|
// TODO Bring back Global package
|
|
// global.SetMeterProvider(pusher)
|
|
|
|
if err := pusher.Start(ctx); err != nil {
|
|
log.Fatalf("could not start metric controoler: %v", err)
|
|
}
|
|
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
// pushes any last exports to the receiver
|
|
if err := pusher.Stop(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
// TODO Bring back Global package
|
|
// meter := global.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
meter := pusher.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
|
|
// Recorder metric example
|
|
counter, err := meter.SyncFloat64().Counter("an_important_metric", instrument.WithDescription("Measures the cumulative epicness of the app"))
|
|
if err != nil {
|
|
log.Fatalf("Failed to create the instrument: %v", err)
|
|
}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
log.Printf("Doing really hard work (%d / 10)\n", i+1)
|
|
counter.Add(ctx, 1.0)
|
|
}
|
|
}
|
|
|
|
func Example_withDifferentSignalCollectors() {
|
|
client := otlpmetricgrpc.NewClient(
|
|
otlpmetricgrpc.WithInsecure(),
|
|
otlpmetricgrpc.WithEndpoint("localhost:30080"),
|
|
)
|
|
ctx := context.Background()
|
|
exp, err := otlpmetric.New(ctx, client)
|
|
if err != nil {
|
|
log.Fatalf("failed to create the collector exporter: %v", err)
|
|
}
|
|
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
if err := exp.Shutdown(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
pusher := controller.New(
|
|
processor.NewFactory(
|
|
simple.NewWithHistogramDistribution(),
|
|
exp,
|
|
),
|
|
controller.WithExporter(exp),
|
|
controller.WithCollectPeriod(2*time.Second),
|
|
)
|
|
// TODO Bring back Global package
|
|
// global.SetMeterProvider(pusher)
|
|
|
|
if err := pusher.Start(ctx); err != nil {
|
|
log.Fatalf("could not start metric controoler: %v", err)
|
|
}
|
|
defer func() {
|
|
ctx, cancel := context.WithTimeout(ctx, time.Second)
|
|
defer cancel()
|
|
// pushes any last exports to the receiver
|
|
if err := pusher.Stop(ctx); err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
}()
|
|
|
|
// TODO Bring back Global package
|
|
// meter := global.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
meter := pusher.Meter("go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc_test")
|
|
|
|
// Recorder metric example
|
|
counter, err := meter.SyncFloat64().Counter("an_important_metric", instrument.WithDescription("Measures the cumulative epicness of the app"))
|
|
if err != nil {
|
|
log.Fatalf("Failed to create the instrument: %v", err)
|
|
}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
log.Printf("Doing really hard work (%d / 10)\n", i+1)
|
|
counter.Add(ctx, 1.0)
|
|
}
|
|
|
|
log.Printf("Done!")
|
|
}
|