-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support cumulative, delta, and pass-through exporters (#840)
* Update Process() * Checkpoint * Add subtractor; fix test * Fix all simple integrator tests * Build the rest (checkpoint) * Pass all but Prometheus tests * Precommit pass * Add aggregation.Kind argument to ExportKindFor * Remove Subtractor support * Remove dead test code * Restore the Subtractor code * Fix the tests * Comments * Add tests for MetricKind * Add ChangeSign test * Test ExportKind * New file * Rename ChangeSign * Remove a TODO, add a TODO * Remove Stateful remnants * Typo * Typo * Test an invalid export kind * Comments * Lint * Apply suggestions from code review Co-authored-by: Tyler Yahn <[email protected]> Co-authored-by: Tyler Yahn <[email protected]>
- Loading branch information
Showing
26 changed files
with
971 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
// 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 metric_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
"go.opentelemetry.io/otel/api/metric" | ||
) | ||
|
||
var ( | ||
syncKinds = []metric.Kind{ | ||
metric.ValueRecorderKind, | ||
metric.CounterKind, | ||
metric.UpDownCounterKind, | ||
} | ||
asyncKinds = []metric.Kind{ | ||
metric.ValueObserverKind, | ||
metric.SumObserverKind, | ||
metric.UpDownSumObserverKind, | ||
} | ||
addingKinds = []metric.Kind{ | ||
metric.CounterKind, | ||
metric.UpDownCounterKind, | ||
metric.SumObserverKind, | ||
metric.UpDownSumObserverKind, | ||
} | ||
groupingKinds = []metric.Kind{ | ||
metric.ValueRecorderKind, | ||
metric.ValueObserverKind, | ||
} | ||
|
||
monotonicKinds = []metric.Kind{ | ||
metric.CounterKind, | ||
metric.SumObserverKind, | ||
} | ||
|
||
nonMonotonicKinds = []metric.Kind{ | ||
metric.UpDownCounterKind, | ||
metric.UpDownSumObserverKind, | ||
metric.ValueRecorderKind, | ||
metric.ValueObserverKind, | ||
} | ||
|
||
precomputedSumKinds = []metric.Kind{ | ||
metric.SumObserverKind, | ||
metric.UpDownSumObserverKind, | ||
} | ||
|
||
nonPrecomputedSumKinds = []metric.Kind{ | ||
metric.CounterKind, | ||
metric.UpDownCounterKind, | ||
metric.ValueRecorderKind, | ||
metric.ValueObserverKind, | ||
} | ||
) | ||
|
||
func TestSynchronous(t *testing.T) { | ||
for _, k := range syncKinds { | ||
require.True(t, k.Synchronous()) | ||
require.False(t, k.Asynchronous()) | ||
} | ||
for _, k := range asyncKinds { | ||
require.True(t, k.Asynchronous()) | ||
require.False(t, k.Synchronous()) | ||
} | ||
} | ||
|
||
func TestGrouping(t *testing.T) { | ||
for _, k := range groupingKinds { | ||
require.True(t, k.Grouping()) | ||
require.False(t, k.Adding()) | ||
} | ||
for _, k := range addingKinds { | ||
require.True(t, k.Adding()) | ||
require.False(t, k.Grouping()) | ||
} | ||
} | ||
|
||
func TestMonotonic(t *testing.T) { | ||
for _, k := range monotonicKinds { | ||
require.True(t, k.Monotonic()) | ||
} | ||
for _, k := range nonMonotonicKinds { | ||
require.False(t, k.Monotonic()) | ||
} | ||
} | ||
|
||
func TestPrecomputedSum(t *testing.T) { | ||
for _, k := range precomputedSumKinds { | ||
require.True(t, k.PrecomputedSum()) | ||
} | ||
for _, k := range nonPrecomputedSumKinds { | ||
require.False(t, k.PrecomputedSum()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.