-
Notifications
You must be signed in to change notification settings - Fork 851
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: processor export phases interface
Add start/finish method to processor interface
- Loading branch information
1 parent
781b30f
commit 2bc3352
Showing
5 changed files
with
94 additions
and
49 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
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
66 changes: 66 additions & 0 deletions
66
packages/opentelemetry-metrics/src/export/UngroupedProcessor.ts
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,66 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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. | ||
*/ | ||
|
||
import { Processor } from './Processor'; | ||
import * as aggregators from './aggregators'; | ||
import { | ||
MetricRecord, | ||
MetricKind, | ||
Aggregator, | ||
MetricDescriptor, | ||
} from './types'; | ||
|
||
/** | ||
* Processor which retains all dimensions/labels. It accepts all records and | ||
* passes them for exporting. | ||
*/ | ||
export class UngroupedProcessor extends Processor { | ||
aggregatorFor(metricDescriptor: MetricDescriptor): Aggregator { | ||
switch (metricDescriptor.metricKind) { | ||
case MetricKind.COUNTER: | ||
case MetricKind.UP_DOWN_COUNTER: | ||
return new aggregators.SumAggregator(); | ||
|
||
case MetricKind.SUM_OBSERVER: | ||
case MetricKind.UP_DOWN_SUM_OBSERVER: | ||
case MetricKind.VALUE_OBSERVER: | ||
return new aggregators.LastValueAggregator(); | ||
|
||
case MetricKind.VALUE_RECORDER: | ||
return new aggregators.HistogramAggregator( | ||
metricDescriptor.boundaries || [Infinity] | ||
); | ||
|
||
default: | ||
return new aggregators.LastValueAggregator(); | ||
} | ||
} | ||
|
||
start() { | ||
/** Nothing to do with UngroupedProcessor on start */ | ||
} | ||
|
||
process(record: MetricRecord): void { | ||
const labels = Object.keys(record.labels) | ||
.map(k => `${k}=${record.labels[k]}`) | ||
.join(','); | ||
this._batchMap.set(record.descriptor.name + labels, record); | ||
} | ||
|
||
finish() { | ||
/** Nothing to do with UngroupedProcessor on finish */ | ||
} | ||
} |
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