caching/vendor/contrib.go.opencensus.io/exporter/ocagent
Paul Schweigert 230ac69ffc
bump go.mod to v1.18 (#660)
Signed-off-by: Paul S. Schweigert <paulschw@us.ibm.com>
2022-08-03 17:51:18 +00:00
..
.gitignore Migrate caching to go mod (#258) 2020-04-27 14:35:51 -07:00
.travis.yml [master] Auto-update dependencies (#337) 2020-09-21 10:47:50 -07:00
CONTRIBUTING.md Migrate caching to go mod (#258) 2020-04-27 14:35:51 -07:00
LICENSE Auto-update dependencies (#181) 2020-01-14 07:04:05 -08:00
README.md Migrate caching to go mod (#258) 2020-04-27 14:35:51 -07:00
common.go Auto-update dependencies (#181) 2020-01-14 07:04:05 -08:00
connection.go Auto-update dependencies (#181) 2020-01-14 07:04:05 -08:00
nodeinfo.go Auto-update dependencies (#181) 2020-01-14 07:04:05 -08:00
ocagent.go [master] Auto-update dependencies (#337) 2020-09-21 10:47:50 -07:00
options.go [master] Auto-update dependencies (#337) 2020-09-21 10:47:50 -07:00
span_config.go [master] Auto-update dependencies (#337) 2020-09-21 10:47:50 -07:00
transform_spans.go [master] Auto-update dependencies (#337) 2020-09-21 10:47:50 -07:00
transform_stats_to_metrics.go [master] Auto-update dependencies (#290) 2020-07-21 09:33:56 -07:00
version.go Auto-update dependencies (#181) 2020-01-14 07:04:05 -08:00

README.md

OpenCensus Agent Go Exporter

Build Status GoDoc

This repository contains the Go implementation of the OpenCensus Agent (OC-Agent) Exporter. OC-Agent is a deamon process running in a VM that can retrieve spans/stats/metrics from OpenCensus Library, export them to other backends and possibly push configurations back to Library. See more details on OC-Agent Readme.

Note: This is an experimental repository and is likely to get backwards-incompatible changes. Ultimately we may want to move the OC-Agent Go Exporter to OpenCensus Go core library.

Installation

$ go get -u contrib.go.opencensus.io/exporter/ocagent

Usage

import (
	"context"
	"fmt"
	"log"
	"time"

	"contrib.go.opencensus.io/exporter/ocagent"
	"go.opencensus.io/trace"
)

func Example() {
	exp, err := ocagent.NewExporter(ocagent.WithInsecure(), ocagent.WithServiceName("your-service-name"))
	if err != nil {
		log.Fatalf("Failed to create the agent exporter: %v", err)
	}
	defer exp.Stop()

	// Now register it as a trace exporter.
	trace.RegisterExporter(exp)

	// Then use the OpenCensus tracing library, like we normally would.
	ctx, span := trace.StartSpan(context.Background(), "AgentExporter-Example")
	defer span.End()

	for i := 0; i < 10; i++ {
		_, iSpan := trace.StartSpan(ctx, fmt.Sprintf("Sample-%d", i))
		<-time.After(6 * time.Millisecond)
		iSpan.End()
	}
}