package processortest
import "go.opentelemetry.io/otel/sdk/metric/processor/processortest"
Index ¶
- func AggregatorSelector() export.AggregatorSelector
- func Checkpointer(p *Processor) export.Checkpointer
- type Exporter
- func NewExporter(selector export.ExportKindSelector, encoder label.Encoder) *Exporter
- func (e *Exporter) Export(_ context.Context, ckpt export.CheckpointSet) error
- func (e *Exporter) ExportCount() int
- func (e *Exporter) Reset()
- func (e *Exporter) Values() map[string]float64
- type Output
- func NewOutput(labelEncoder label.Encoder) *Output
- func (o *Output) AddAccumulation(acc export.Accumulation) error
- func (o *Output) AddRecord(rec export.Record) error
- func (o *Output) ForEach(_ export.ExportKindSelector, ff func(export.Record) error) error
- func (o *Output) Map() map[string]float64
- func (o *Output) Reset()
- type Processor
Functions ¶
func AggregatorSelector ¶
func AggregatorSelector() export.AggregatorSelector
AggregatorSelector returns a policy that is consistent with the test descriptors above. I.e., it returns sum.New() for counter instruments and lastvalue.New() for lastValue instruments.
func Checkpointer ¶
func Checkpointer(p *Processor) export.Checkpointer
Checkpointer returns a checkpointer that computes a single interval.
Types ¶
type Exporter ¶
type Exporter struct { export.ExportKindSelector // InjectErr supports returning conditional errors from // the Export() routine. This must be set before the // Exporter is first used. InjectErr func(export.Record) error // contains filtered or unexported fields }
Exporter is a testing implementation of export.Exporter that assembles its results as a map[string]float64.
func NewExporter ¶
func NewExporter(selector export.ExportKindSelector, encoder label.Encoder) *Exporter
NewExporter returns a new testing Exporter implementation. Verify exporter outputs using Values(), e.g.,:
require.EqualValues(t, map[string]float64{ "counter.sum/A=1,B=2/R=V": 100, }, exporter.Values())
Where in the example A=1,B=2 is the encoded labels and R=V is the encoded resource value.
func (*Exporter) Export ¶
func (*Exporter) ExportCount ¶
ExportCount returns the number of times Export() has been called since the last Reset().
func (*Exporter) Reset ¶
func (e *Exporter) Reset()
Reset sets the exporter's output to the initial, empty state and resets the export count to zero.
func (*Exporter) Values ¶
Values returns the mapping from label set to point values for the accumulations that were processed. Point values are chosen as either the Sum or the LastValue, whichever is implemented. (All the built-in Aggregators implement one of these interfaces.)
type Output ¶
Output implements export.CheckpointSet.
func NewOutput ¶
NewOutput is a helper for testing an expected set of Accumulations (from an Accumulator) or an expected set of Records (from a Processor). If testing with an Accumulator, it may be simpler to use the test Processor in this package.
func (*Output) AddAccumulation ¶
func (o *Output) AddAccumulation(acc export.Accumulation) error
AddAccumulation adds a string representation of the exported metric data to a map for use in testing. The value taken from the accumulation is either the Sum() or the LastValue() of its Aggregator().Aggregation(), whichever is defined.
func (*Output) AddRecord ¶
AddRecord adds a string representation of the exported metric data to a map for use in testing. The value taken from the record is either the Sum() or the LastValue() of its Aggregation(), whichever is defined. Record timestamps are ignored.
func (*Output) ForEach ¶
ForEach implements export.CheckpointSet.
func (*Output) Map ¶
Map returns the calculated values for test validation from a set of Accumulations or a set of Records. When mapping records or accumulations into floating point values, the Sum() or LastValue() is chosen, whichever is implemented by the underlying Aggregator.
func (*Output) Reset ¶
func (o *Output) Reset()
Reset restores the Output to its initial state, with no accumulated metric data.
type Processor ¶
type Processor struct { export.AggregatorSelector // contains filtered or unexported fields }
Processor is a testing implementation of export.Processor that assembles its results as a map[string]float64.
func NewProcessor ¶
func NewProcessor(selector export.AggregatorSelector, encoder label.Encoder) *Processor
NewProcessor returns a new testing Processor implementation. Verify expected outputs using Values(), e.g.:
require.EqualValues(t, map[string]float64{ "counter.sum/A=1,B=2/R=V": 100, }, processor.Values())
Where in the example A=1,B=2 is the encoded labels and R=V is the encoded resource value.
func (*Processor) Process ¶
func (p *Processor) Process(accum export.Accumulation) error
Process implements export.Processor.
func (*Processor) Values ¶
Values returns the mapping from label set to point values for the accumulations that were processed. Point values are chosen as either the Sum or the LastValue, whichever is implemented. (All the built-in Aggregators implement one of these interfaces.)
Source Files ¶
test.go
- Version
- v0.13.0
- Published
- Oct 8, 2020
- Platform
- linux/amd64
- Imports
- 16 packages
- Last checked
- 10 minutes ago –
Tools for package owners.