mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-04-23 11:58:56 +02:00
* Push->basic * Repackage * Rename away from push * Make exporter optional; export from a separate goroutine * Move pull_test into controller_test * Precommit pass * New OTLP/Prom example * Precommit * Fix the example * Shorten the example * Test starting controller w/o exporter * Test export timeout * Remove ancient example & lint * go.mod revert & tidy * Comments * Tidy a diff * Tidy a diff * Move export kind selector in the new example * Split this test into its original parts * Reduce diff size * Changelog * Remove extra Add/Done pair * Remove unused stopCh param; document the Stop behavior * Typo * Use ctx * Missed v0.15 * Apply PR feedback * Precommit pass * 0.14 -> 0.15 in new file * Remove diff chunk markers * Fix OTLP example * Upstream * dashpole comments * aneurysm9 feedback * Tidy go.sum
121 lines
3.6 KiB
Go
121 lines
3.6 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 basic // import "go.opentelemetry.io/otel/sdk/metric/controller/basic"
|
|
|
|
import (
|
|
"time"
|
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
)
|
|
|
|
// Config contains configuration for a basic Controller.
|
|
type Config struct {
|
|
// Resource is the OpenTelemetry resource associated with all Meters
|
|
// created by the Controller.
|
|
Resource *resource.Resource
|
|
|
|
// CollectPeriod is the interval between calls to Collect a
|
|
// checkpoint.
|
|
//
|
|
// When pulling metrics and not exporting, this is the minimum
|
|
// time between calls to Collect. In a pull-only
|
|
// configuration, collection is performed on demand; set
|
|
// CollectPeriod to 0 always recompute the export record set.
|
|
//
|
|
// When exporting metrics, this must be > 0.
|
|
//
|
|
// Default value is 10s.
|
|
CollectPeriod time.Duration
|
|
|
|
// CollectTimeout is the timeout of the Context passed to
|
|
// Collect() and subsequently to Observer instrument callbacks.
|
|
//
|
|
// Default value is 10s. If zero, no Collect timeout is applied.
|
|
CollectTimeout time.Duration
|
|
|
|
// Pusher is used for exporting metric data.
|
|
//
|
|
// Note: Exporters such as Prometheus that pull data do not implement
|
|
// export.Exporter. These will directly call Collect() and ForEach().
|
|
Pusher export.Exporter
|
|
|
|
// PushTimeout is the timeout of the Context when a Pusher is configured.
|
|
//
|
|
// Default value is 10s. If zero, no Export timeout is applied.
|
|
PushTimeout time.Duration
|
|
}
|
|
|
|
// Option is the interface that applies the value to a configuration option.
|
|
type Option interface {
|
|
// Apply sets the Option value of a Config.
|
|
Apply(*Config)
|
|
}
|
|
|
|
// WithResource sets the Resource configuration option of a Config.
|
|
func WithResource(r *resource.Resource) Option {
|
|
return resourceOption{r}
|
|
}
|
|
|
|
type resourceOption struct{ *resource.Resource }
|
|
|
|
func (o resourceOption) Apply(config *Config) {
|
|
config.Resource = o.Resource
|
|
}
|
|
|
|
// WithCollectPeriod sets the CollectPeriod configuration option of a Config.
|
|
func WithCollectPeriod(period time.Duration) Option {
|
|
return collectPeriodOption(period)
|
|
}
|
|
|
|
type collectPeriodOption time.Duration
|
|
|
|
func (o collectPeriodOption) Apply(config *Config) {
|
|
config.CollectPeriod = time.Duration(o)
|
|
}
|
|
|
|
// WithCollectTimeout sets the CollectTimeout configuration option of a Config.
|
|
func WithCollectTimeout(timeout time.Duration) Option {
|
|
return collectTimeoutOption(timeout)
|
|
}
|
|
|
|
type collectTimeoutOption time.Duration
|
|
|
|
func (o collectTimeoutOption) Apply(config *Config) {
|
|
config.CollectTimeout = time.Duration(o)
|
|
}
|
|
|
|
// WithPusher sets the Pusher configuration option of a Config.
|
|
func WithPusher(pusher export.Exporter) Option {
|
|
return pusherOption{pusher}
|
|
}
|
|
|
|
type pusherOption struct{ pusher export.Exporter }
|
|
|
|
func (o pusherOption) Apply(config *Config) {
|
|
config.Pusher = o.pusher
|
|
}
|
|
|
|
// WithPushTimeout sets the PushTimeout configuration option of a Config.
|
|
func WithPushTimeout(timeout time.Duration) Option {
|
|
return pushTimeoutOption(timeout)
|
|
}
|
|
|
|
type pushTimeoutOption time.Duration
|
|
|
|
func (o pushTimeoutOption) Apply(config *Config) {
|
|
config.PushTimeout = time.Duration(o)
|
|
}
|