Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport changes to stackdriver exporter #19

Merged
merged 5 commits into from
Sep 19, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exporter/stackdriverexporter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ type Config struct {
EnableMetrics bool `mapstructure:"enable-metrics"`
Prefix string `mapstructure:"metric-prefix"`
Endpoint string `mapstructure:"endpoint"`
NumOfWorkers int `mapstructure:"number-of-workers"`
}
2 changes: 0 additions & 2 deletions exporter/stackdriverexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ const (
type Factory struct {
}

var _ (exporter.Factory) = (*Factory)(nil)

// Type gets the type of the Exporter config created by this factory.
func (f *Factory) Type() string {
return typeStr
Expand Down
11 changes: 6 additions & 5 deletions exporter/stackdriverexporter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ module github.com/open-telemetry/opentelemetry-service-contrib/exporter/stackdri
go 1.12

require (
contrib.go.opencensus.io/exporter/stackdriver v0.12.7
github.com/open-telemetry/opentelemetry-service v0.0.2-0.20190904165913-41a7afa548c8
github.com/stretchr/testify v1.3.0
go.opencensus.io v0.22.1 // indirect
// TODO: pin a released version
contrib.go.opencensus.io/exporter/stackdriver v0.12.8-0.20190917133925-4339afab4a99
github.com/census-instrumentation/opencensus-proto v0.2.1
github.com/open-telemetry/opentelemetry-service v0.0.3-0.20190914010649-b38505c2306b
github.com/stretchr/testify v1.4.0
go.uber.org/zap v1.10.0
google.golang.org/api v0.7.0
google.golang.org/api v0.10.0
)
Loading