@opentelemetry/exporter-trace-otlp-http 0.28.0 → 0.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -12
- package/build/esm/index.d.ts +0 -2
- package/build/esm/index.js +0 -3
- package/build/esm/index.js.map +1 -1
- package/build/esm/platform/browser/OTLPTraceExporter.d.ts +4 -5
- package/build/esm/platform/browser/OTLPTraceExporter.js +7 -7
- package/build/esm/platform/browser/OTLPTraceExporter.js.map +1 -1
- package/build/esm/platform/node/OTLPTraceExporter.d.ts +3 -3
- package/build/esm/platform/node/OTLPTraceExporter.js +7 -7
- package/build/esm/platform/node/OTLPTraceExporter.js.map +1 -1
- package/build/esm/version.d.ts +1 -1
- package/build/esm/version.js +1 -1
- package/build/esm/version.js.map +1 -1
- package/build/esnext/index.d.ts +0 -2
- package/build/esnext/index.js +0 -2
- package/build/esnext/index.js.map +1 -1
- package/build/esnext/platform/browser/OTLPTraceExporter.d.ts +4 -5
- package/build/esnext/platform/browser/OTLPTraceExporter.js +7 -7
- package/build/esnext/platform/browser/OTLPTraceExporter.js.map +1 -1
- package/build/esnext/platform/node/OTLPTraceExporter.d.ts +3 -3
- package/build/esnext/platform/node/OTLPTraceExporter.js +7 -7
- package/build/esnext/platform/node/OTLPTraceExporter.js.map +1 -1
- package/build/esnext/version.d.ts +1 -1
- package/build/esnext/version.js +1 -1
- package/build/esnext/version.js.map +1 -1
- package/build/src/index.d.ts +0 -2
- package/build/src/index.js +0 -5
- package/build/src/index.js.map +1 -1
- package/build/src/platform/browser/OTLPTraceExporter.d.ts +4 -5
- package/build/src/platform/browser/OTLPTraceExporter.js +7 -7
- package/build/src/platform/browser/OTLPTraceExporter.js.map +1 -1
- package/build/src/platform/node/OTLPTraceExporter.d.ts +3 -3
- package/build/src/platform/node/OTLPTraceExporter.js +6 -6
- package/build/src/platform/node/OTLPTraceExporter.js.map +1 -1
- package/build/src/version.d.ts +1 -1
- package/build/src/version.js +1 -1
- package/build/src/version.js.map +1 -1
- package/package.json +8 -7
- package/build/esm/transform.d.ts +0 -80
- package/build/esm/transform.js +0 -287
- package/build/esm/transform.js.map +0 -1
- package/build/esm/types.d.ts +0 -209
- package/build/esm/types.js +0 -146
- package/build/esm/types.js.map +0 -1
- package/build/esnext/transform.d.ts +0 -80
- package/build/esnext/transform.js +0 -266
- package/build/esnext/transform.js.map +0 -1
- package/build/esnext/types.d.ts +0 -209
- package/build/esnext/types.js +0 -145
- package/build/esnext/types.js.map +0 -1
- package/build/src/transform.d.ts +0 -80
- package/build/src/transform.js +0 -282
- package/build/src/transform.js.map +0 -1
- package/build/src/types.d.ts +0 -209
- package/build/src/types.js +0 -148
- package/build/src/types.js.map +0 -1
package/build/esm/types.d.ts
DELETED
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import { SpanStatusCode } from '@opentelemetry/api';
|
|
2
|
-
export declare namespace opentelemetryProto {
|
|
3
|
-
namespace collector {
|
|
4
|
-
namespace trace.v1 {
|
|
5
|
-
interface TraceService {
|
|
6
|
-
service: opentelemetryProto.collector.trace.v1.TraceService;
|
|
7
|
-
}
|
|
8
|
-
interface ExportTraceServiceRequest {
|
|
9
|
-
resourceSpans: opentelemetryProto.trace.v1.ResourceSpans[];
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
namespace metrics.v1 {
|
|
13
|
-
interface ExportMetricsServiceRequest {
|
|
14
|
-
resourceMetrics: opentelemetryProto.metrics.v1.ResourceMetrics[];
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
namespace resource.v1 {
|
|
19
|
-
interface Resource {
|
|
20
|
-
attributes: opentelemetryProto.common.v1.KeyValue[];
|
|
21
|
-
droppedAttributesCount: number;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
namespace metrics.v1 {
|
|
25
|
-
interface Metric {
|
|
26
|
-
name: string;
|
|
27
|
-
description: string;
|
|
28
|
-
unit: string;
|
|
29
|
-
intGauge?: opentelemetryProto.metrics.v1.Gauge;
|
|
30
|
-
doubleGauge?: opentelemetryProto.metrics.v1.Gauge;
|
|
31
|
-
intSum?: opentelemetryProto.metrics.v1.Sum;
|
|
32
|
-
doubleSum?: opentelemetryProto.metrics.v1.Sum;
|
|
33
|
-
intHistogram?: opentelemetryProto.metrics.v1.Histogram;
|
|
34
|
-
doubleHistogram?: opentelemetryProto.metrics.v1.Histogram;
|
|
35
|
-
}
|
|
36
|
-
interface Gauge {
|
|
37
|
-
dataPoints: opentelemetryProto.metrics.v1.DataPoint[];
|
|
38
|
-
}
|
|
39
|
-
interface Sum {
|
|
40
|
-
dataPoints: opentelemetryProto.metrics.v1.DataPoint[];
|
|
41
|
-
aggregationTemporality: opentelemetryProto.metrics.v1.AggregationTemporality;
|
|
42
|
-
isMonotonic: boolean;
|
|
43
|
-
}
|
|
44
|
-
interface Histogram {
|
|
45
|
-
dataPoints: opentelemetryProto.metrics.v1.HistogramDataPoint[];
|
|
46
|
-
aggregationTemporality: opentelemetryProto.metrics.v1.AggregationTemporality;
|
|
47
|
-
}
|
|
48
|
-
interface DataPoint {
|
|
49
|
-
labels: opentelemetryProto.common.v1.StringKeyValue[];
|
|
50
|
-
startTimeUnixNano: number;
|
|
51
|
-
timeUnixNano: number;
|
|
52
|
-
value: number;
|
|
53
|
-
exemplars?: opentelemetryProto.metrics.v1.Exemplar[];
|
|
54
|
-
}
|
|
55
|
-
interface Exemplar {
|
|
56
|
-
filteredLabels: opentelemetryProto.common.v1.StringKeyValue[];
|
|
57
|
-
timeUnixNano: number;
|
|
58
|
-
value: number;
|
|
59
|
-
spanId: Uint8Array;
|
|
60
|
-
traceId: Uint8Array;
|
|
61
|
-
}
|
|
62
|
-
interface HistogramDataPoint {
|
|
63
|
-
labels: opentelemetryProto.common.v1.StringKeyValue[];
|
|
64
|
-
startTimeUnixNano: number;
|
|
65
|
-
timeUnixNano: number;
|
|
66
|
-
count: number;
|
|
67
|
-
sum: number;
|
|
68
|
-
bucketCounts?: number[];
|
|
69
|
-
explicitBounds?: number[];
|
|
70
|
-
exemplars?: opentelemetryProto.metrics.v1.Exemplar[][];
|
|
71
|
-
}
|
|
72
|
-
interface InstrumentationLibraryMetrics {
|
|
73
|
-
instrumentationLibrary?: opentelemetryProto.common.v1.InstrumentationLibrary;
|
|
74
|
-
metrics: opentelemetryProto.metrics.v1.Metric[];
|
|
75
|
-
}
|
|
76
|
-
interface ResourceMetrics {
|
|
77
|
-
resource?: opentelemetryProto.resource.v1.Resource;
|
|
78
|
-
instrumentationLibraryMetrics: opentelemetryProto.metrics.v1.InstrumentationLibraryMetrics[];
|
|
79
|
-
}
|
|
80
|
-
enum AggregationTemporality {
|
|
81
|
-
AGGREGATION_TEMPORALITY_UNSPECIFIED = 0,
|
|
82
|
-
AGGREGATION_TEMPORALITY_DELTA = 1,
|
|
83
|
-
AGGREGATION_TEMPORALITY_CUMULATIVE = 2
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
namespace trace.v1 {
|
|
87
|
-
namespace ConstantSampler {
|
|
88
|
-
enum ConstantDecision {
|
|
89
|
-
ALWAYS_OFF = 0,
|
|
90
|
-
ALWAYS_ON = 1,
|
|
91
|
-
ALWAYS_PARENT = 2
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
namespace Span {
|
|
95
|
-
interface Event {
|
|
96
|
-
timeUnixNano: number;
|
|
97
|
-
name: string;
|
|
98
|
-
attributes?: opentelemetryProto.common.v1.KeyValue[];
|
|
99
|
-
droppedAttributesCount: number;
|
|
100
|
-
}
|
|
101
|
-
interface Link {
|
|
102
|
-
traceId: string;
|
|
103
|
-
spanId: string;
|
|
104
|
-
traceState?: opentelemetryProto.trace.v1.Span.TraceState;
|
|
105
|
-
attributes?: opentelemetryProto.common.v1.KeyValue[];
|
|
106
|
-
droppedAttributesCount: number;
|
|
107
|
-
}
|
|
108
|
-
enum SpanKind {
|
|
109
|
-
SPAN_KIND_UNSPECIFIED = 0,
|
|
110
|
-
SPAN_KIND_INTERNAL = 1,
|
|
111
|
-
SPAN_KIND_SERVER = 2,
|
|
112
|
-
SPAN_KIND_CLIENT = 3,
|
|
113
|
-
SPAN_KIND_PRODUCER = 4,
|
|
114
|
-
SPAN_KIND_CONSUMER = 5
|
|
115
|
-
}
|
|
116
|
-
type TraceState = string | undefined;
|
|
117
|
-
}
|
|
118
|
-
interface ConstantSampler {
|
|
119
|
-
decision?: opentelemetryProto.trace.v1.ConstantSampler.ConstantDecision;
|
|
120
|
-
}
|
|
121
|
-
interface InstrumentationLibrarySpans {
|
|
122
|
-
instrumentationLibrary?: opentelemetryProto.common.v1.InstrumentationLibrary;
|
|
123
|
-
spans: opentelemetryProto.trace.v1.Span[];
|
|
124
|
-
}
|
|
125
|
-
interface ProbabilitySampler {
|
|
126
|
-
samplingProbability?: number | null;
|
|
127
|
-
}
|
|
128
|
-
interface RateLimitingSampler {
|
|
129
|
-
qps?: number | null;
|
|
130
|
-
}
|
|
131
|
-
interface ResourceSpans {
|
|
132
|
-
resource?: opentelemetryProto.resource.v1.Resource;
|
|
133
|
-
instrumentationLibrarySpans: opentelemetryProto.trace.v1.InstrumentationLibrarySpans[];
|
|
134
|
-
}
|
|
135
|
-
interface Span {
|
|
136
|
-
traceId: string;
|
|
137
|
-
spanId: string;
|
|
138
|
-
traceState: opentelemetryProto.trace.v1.Span.TraceState;
|
|
139
|
-
parentSpanId?: string;
|
|
140
|
-
name?: string;
|
|
141
|
-
kind?: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
142
|
-
startTimeUnixNano?: number;
|
|
143
|
-
endTimeUnixNano?: number;
|
|
144
|
-
attributes?: opentelemetryProto.common.v1.KeyValue[];
|
|
145
|
-
droppedAttributesCount: number;
|
|
146
|
-
events?: opentelemetryProto.trace.v1.Span.Event[];
|
|
147
|
-
droppedEventsCount: number;
|
|
148
|
-
links?: opentelemetryProto.trace.v1.Span.Link[];
|
|
149
|
-
droppedLinksCount: number;
|
|
150
|
-
status?: SpanStatus;
|
|
151
|
-
}
|
|
152
|
-
interface SpanStatus {
|
|
153
|
-
/** The status code of this message. */
|
|
154
|
-
code: SpanStatusCode;
|
|
155
|
-
/** A developer-facing error message. */
|
|
156
|
-
message?: string;
|
|
157
|
-
}
|
|
158
|
-
interface TraceConfig {
|
|
159
|
-
constantSampler?: ConstantSampler | null;
|
|
160
|
-
probabilitySampler?: ProbabilitySampler | null;
|
|
161
|
-
rateLimitingSampler?: RateLimitingSampler | null;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
namespace common.v1 {
|
|
165
|
-
interface KeyValue {
|
|
166
|
-
key: string;
|
|
167
|
-
value: AnyValue;
|
|
168
|
-
}
|
|
169
|
-
type ArrayValue = {
|
|
170
|
-
values: AnyValue[];
|
|
171
|
-
};
|
|
172
|
-
interface KeyValueList {
|
|
173
|
-
values: KeyValue[];
|
|
174
|
-
}
|
|
175
|
-
type AnyValue = {
|
|
176
|
-
stringValue?: string;
|
|
177
|
-
boolValue?: boolean;
|
|
178
|
-
intValue?: number;
|
|
179
|
-
doubleValue?: number;
|
|
180
|
-
arrayValue?: ArrayValue;
|
|
181
|
-
kvlistValue?: KeyValueList;
|
|
182
|
-
};
|
|
183
|
-
interface InstrumentationLibrary {
|
|
184
|
-
name: string;
|
|
185
|
-
version?: string;
|
|
186
|
-
}
|
|
187
|
-
interface StringKeyValue {
|
|
188
|
-
key: string;
|
|
189
|
-
value: string;
|
|
190
|
-
}
|
|
191
|
-
enum ValueType {
|
|
192
|
-
STRING = 0,
|
|
193
|
-
INT = 1,
|
|
194
|
-
DOUBLE = 2,
|
|
195
|
-
BOOL = 3
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
/**
|
|
200
|
-
* Mapping between api SpanKind and proto SpanKind
|
|
201
|
-
*/
|
|
202
|
-
export declare const OTLP_SPAN_KIND_MAPPING: {
|
|
203
|
-
0: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
204
|
-
1: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
205
|
-
2: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
206
|
-
3: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
207
|
-
4: opentelemetryProto.trace.v1.Span.SpanKind;
|
|
208
|
-
};
|
|
209
|
-
//# sourceMappingURL=types.d.ts.map
|
package/build/esm/types.js
DELETED
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright The OpenTelemetry Authors
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
var _a;
|
|
17
|
-
import { SpanKind } from '@opentelemetry/api';
|
|
18
|
-
/* eslint-disable @typescript-eslint/no-namespace */
|
|
19
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
20
|
-
export var opentelemetryProto;
|
|
21
|
-
(function (opentelemetryProto) {
|
|
22
|
-
var metrics;
|
|
23
|
-
(function (metrics) {
|
|
24
|
-
var v1;
|
|
25
|
-
(function (v1) {
|
|
26
|
-
var AggregationTemporality;
|
|
27
|
-
(function (AggregationTemporality) {
|
|
28
|
-
// UNSPECIFIED is the default AggregationTemporality, it MUST not be used.
|
|
29
|
-
AggregationTemporality[AggregationTemporality["AGGREGATION_TEMPORALITY_UNSPECIFIED"] = 0] = "AGGREGATION_TEMPORALITY_UNSPECIFIED";
|
|
30
|
-
// DELTA is an AggregationTemporality for a metric aggregator which reports
|
|
31
|
-
// changes since last report time. Successive metrics contain aggregation of
|
|
32
|
-
// values from continuous and non-overlapping intervals.
|
|
33
|
-
//
|
|
34
|
-
// The values for a DELTA metric are based only on the time interval
|
|
35
|
-
// associated with one measurement cycle. There is no dependency on
|
|
36
|
-
// previous measurements like is the case for CUMULATIVE metrics.
|
|
37
|
-
//
|
|
38
|
-
// For example, consider a system measuring the number of requests that
|
|
39
|
-
// it receives and reports the sum of these requests every second as a
|
|
40
|
-
// DELTA metric:
|
|
41
|
-
//
|
|
42
|
-
// 1. The system starts receiving at time=t_0.
|
|
43
|
-
// 2. A request is received, the system measures 1 request.
|
|
44
|
-
// 3. A request is received, the system measures 1 request.
|
|
45
|
-
// 4. A request is received, the system measures 1 request.
|
|
46
|
-
// 5. The 1 second collection cycle ends. A metric is exported for the
|
|
47
|
-
// number of requests received over the interval of time t_0 to
|
|
48
|
-
// t_0+1 with a value of 3.
|
|
49
|
-
// 6. A request is received, the system measures 1 request.
|
|
50
|
-
// 7. A request is received, the system measures 1 request.
|
|
51
|
-
// 8. The 1 second collection cycle ends. A metric is exported for the
|
|
52
|
-
// number of requests received over the interval of time t_0+1 to
|
|
53
|
-
// t_0+2 with a value of 2.
|
|
54
|
-
AggregationTemporality[AggregationTemporality["AGGREGATION_TEMPORALITY_DELTA"] = 1] = "AGGREGATION_TEMPORALITY_DELTA";
|
|
55
|
-
// CUMULATIVE is an AggregationTemporality for a metric aggregator which
|
|
56
|
-
// reports changes since a fixed start time. This means that current values
|
|
57
|
-
// of a CUMULATIVE metric depend on all previous measurements since the
|
|
58
|
-
// start time. Because of this, the sender is required to retain this state
|
|
59
|
-
// in some form. If this state is lost or invalidated, the CUMULATIVE metric
|
|
60
|
-
// values MUST be reset and a new fixed start time following the last
|
|
61
|
-
// reported measurement time sent MUST be used.
|
|
62
|
-
//
|
|
63
|
-
// For example, consider a system measuring the number of requests that
|
|
64
|
-
// it receives and reports the sum of these requests every second as a
|
|
65
|
-
// CUMULATIVE metric:
|
|
66
|
-
//
|
|
67
|
-
// 1. The system starts receiving at time=t_0.
|
|
68
|
-
// 2. A request is received, the system measures 1 request.
|
|
69
|
-
// 3. A request is received, the system measures 1 request.
|
|
70
|
-
// 4. A request is received, the system measures 1 request.
|
|
71
|
-
// 5. The 1 second collection cycle ends. A metric is exported for the
|
|
72
|
-
// number of requests received over the interval of time t_0 to
|
|
73
|
-
// t_0+1 with a value of 3.
|
|
74
|
-
// 6. A request is received, the system measures 1 request.
|
|
75
|
-
// 7. A request is received, the system measures 1 request.
|
|
76
|
-
// 8. The 1 second collection cycle ends. A metric is exported for the
|
|
77
|
-
// number of requests received over the interval of time t_0 to
|
|
78
|
-
// t_0+2 with a value of 5.
|
|
79
|
-
// 9. The system experiences a fault and loses state.
|
|
80
|
-
// 10. The system recovers and resumes receiving at time=t_1.
|
|
81
|
-
// 11. A request is received, the system measures 1 request.
|
|
82
|
-
// 12. The 1 second collection cycle ends. A metric is exported for the
|
|
83
|
-
// number of requests received over the interval of time t_1 to
|
|
84
|
-
// t_0+1 with a value of 1.
|
|
85
|
-
//
|
|
86
|
-
// Note: Even though, when reporting changes since last report time, using
|
|
87
|
-
// CUMULATIVE is valid, it is not recommended. This may cause problems for
|
|
88
|
-
// systems that do not use start_time to determine when the aggregation
|
|
89
|
-
// value was reset (e.g. Prometheus).
|
|
90
|
-
AggregationTemporality[AggregationTemporality["AGGREGATION_TEMPORALITY_CUMULATIVE"] = 2] = "AGGREGATION_TEMPORALITY_CUMULATIVE";
|
|
91
|
-
})(AggregationTemporality = v1.AggregationTemporality || (v1.AggregationTemporality = {}));
|
|
92
|
-
})(v1 = metrics.v1 || (metrics.v1 = {}));
|
|
93
|
-
})(metrics = opentelemetryProto.metrics || (opentelemetryProto.metrics = {}));
|
|
94
|
-
var trace;
|
|
95
|
-
(function (trace) {
|
|
96
|
-
var v1;
|
|
97
|
-
(function (v1) {
|
|
98
|
-
var ConstantSampler;
|
|
99
|
-
(function (ConstantSampler) {
|
|
100
|
-
var ConstantDecision;
|
|
101
|
-
(function (ConstantDecision) {
|
|
102
|
-
ConstantDecision[ConstantDecision["ALWAYS_OFF"] = 0] = "ALWAYS_OFF";
|
|
103
|
-
ConstantDecision[ConstantDecision["ALWAYS_ON"] = 1] = "ALWAYS_ON";
|
|
104
|
-
ConstantDecision[ConstantDecision["ALWAYS_PARENT"] = 2] = "ALWAYS_PARENT";
|
|
105
|
-
})(ConstantDecision = ConstantSampler.ConstantDecision || (ConstantSampler.ConstantDecision = {}));
|
|
106
|
-
})(ConstantSampler = v1.ConstantSampler || (v1.ConstantSampler = {}));
|
|
107
|
-
var Span;
|
|
108
|
-
(function (Span) {
|
|
109
|
-
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
110
|
-
var SpanKind;
|
|
111
|
-
(function (SpanKind) {
|
|
112
|
-
SpanKind[SpanKind["SPAN_KIND_UNSPECIFIED"] = 0] = "SPAN_KIND_UNSPECIFIED";
|
|
113
|
-
SpanKind[SpanKind["SPAN_KIND_INTERNAL"] = 1] = "SPAN_KIND_INTERNAL";
|
|
114
|
-
SpanKind[SpanKind["SPAN_KIND_SERVER"] = 2] = "SPAN_KIND_SERVER";
|
|
115
|
-
SpanKind[SpanKind["SPAN_KIND_CLIENT"] = 3] = "SPAN_KIND_CLIENT";
|
|
116
|
-
SpanKind[SpanKind["SPAN_KIND_PRODUCER"] = 4] = "SPAN_KIND_PRODUCER";
|
|
117
|
-
SpanKind[SpanKind["SPAN_KIND_CONSUMER"] = 5] = "SPAN_KIND_CONSUMER";
|
|
118
|
-
})(SpanKind = Span.SpanKind || (Span.SpanKind = {}));
|
|
119
|
-
})(Span = v1.Span || (v1.Span = {}));
|
|
120
|
-
})(v1 = trace.v1 || (trace.v1 = {}));
|
|
121
|
-
})(trace = opentelemetryProto.trace || (opentelemetryProto.trace = {}));
|
|
122
|
-
var common;
|
|
123
|
-
(function (common) {
|
|
124
|
-
var v1;
|
|
125
|
-
(function (v1) {
|
|
126
|
-
var ValueType;
|
|
127
|
-
(function (ValueType) {
|
|
128
|
-
ValueType[ValueType["STRING"] = 0] = "STRING";
|
|
129
|
-
ValueType[ValueType["INT"] = 1] = "INT";
|
|
130
|
-
ValueType[ValueType["DOUBLE"] = 2] = "DOUBLE";
|
|
131
|
-
ValueType[ValueType["BOOL"] = 3] = "BOOL";
|
|
132
|
-
})(ValueType = v1.ValueType || (v1.ValueType = {}));
|
|
133
|
-
})(v1 = common.v1 || (common.v1 = {}));
|
|
134
|
-
})(common = opentelemetryProto.common || (opentelemetryProto.common = {}));
|
|
135
|
-
})(opentelemetryProto || (opentelemetryProto = {}));
|
|
136
|
-
/**
|
|
137
|
-
* Mapping between api SpanKind and proto SpanKind
|
|
138
|
-
*/
|
|
139
|
-
export var OTLP_SPAN_KIND_MAPPING = (_a = {},
|
|
140
|
-
_a[SpanKind.INTERNAL] = opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_INTERNAL,
|
|
141
|
-
_a[SpanKind.SERVER] = opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_SERVER,
|
|
142
|
-
_a[SpanKind.CLIENT] = opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_CLIENT,
|
|
143
|
-
_a[SpanKind.PRODUCER] = opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_PRODUCER,
|
|
144
|
-
_a[SpanKind.CONSUMER] = opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_CONSUMER,
|
|
145
|
-
_a);
|
|
146
|
-
//# sourceMappingURL=types.js.map
|
package/build/esm/types.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright The OpenTelemetry Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { SpanKind, SpanStatusCode } from '@opentelemetry/api';\n\n/* eslint-disable @typescript-eslint/no-namespace */\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\nexport namespace opentelemetryProto {\n export namespace collector {\n export namespace trace.v1 {\n export interface TraceService {\n service: opentelemetryProto.collector.trace.v1.TraceService;\n }\n\n export interface ExportTraceServiceRequest {\n resourceSpans: opentelemetryProto.trace.v1.ResourceSpans[];\n }\n }\n export namespace metrics.v1 {\n export interface ExportMetricsServiceRequest {\n resourceMetrics: opentelemetryProto.metrics.v1.ResourceMetrics[];\n }\n }\n }\n\n export namespace resource.v1 {\n export interface Resource {\n attributes: opentelemetryProto.common.v1.KeyValue[];\n droppedAttributesCount: number;\n }\n }\n\n export namespace metrics.v1 {\n export interface Metric {\n name: string;\n description: string;\n unit: string;\n // data:\n intGauge?: opentelemetryProto.metrics.v1.Gauge;\n doubleGauge?: opentelemetryProto.metrics.v1.Gauge;\n intSum?: opentelemetryProto.metrics.v1.Sum;\n doubleSum?: opentelemetryProto.metrics.v1.Sum;\n intHistogram?: opentelemetryProto.metrics.v1.Histogram;\n doubleHistogram?: opentelemetryProto.metrics.v1.Histogram;\n }\n\n export interface Gauge {\n dataPoints: opentelemetryProto.metrics.v1.DataPoint[];\n }\n\n export interface Sum {\n dataPoints: opentelemetryProto.metrics.v1.DataPoint[];\n aggregationTemporality: opentelemetryProto.metrics.v1.AggregationTemporality;\n isMonotonic: boolean;\n }\n\n export interface Histogram {\n dataPoints: opentelemetryProto.metrics.v1.HistogramDataPoint[];\n aggregationTemporality: opentelemetryProto.metrics.v1.AggregationTemporality;\n }\n\n export interface DataPoint {\n labels: opentelemetryProto.common.v1.StringKeyValue[];\n startTimeUnixNano: number;\n timeUnixNano: number;\n value: number;\n exemplars?: opentelemetryProto.metrics.v1.Exemplar[];\n }\n\n export interface Exemplar {\n filteredLabels: opentelemetryProto.common.v1.StringKeyValue[];\n timeUnixNano: number;\n value: number;\n spanId: Uint8Array;\n traceId: Uint8Array;\n }\n\n export interface HistogramDataPoint {\n labels: opentelemetryProto.common.v1.StringKeyValue[];\n startTimeUnixNano: number;\n timeUnixNano: number;\n count: number;\n sum: number;\n bucketCounts?: number[];\n explicitBounds?: number[];\n exemplars?: opentelemetryProto.metrics.v1.Exemplar[][];\n }\n\n export interface InstrumentationLibraryMetrics {\n instrumentationLibrary?: opentelemetryProto.common.v1.InstrumentationLibrary;\n metrics: opentelemetryProto.metrics.v1.Metric[];\n }\n\n export interface ResourceMetrics {\n resource?: opentelemetryProto.resource.v1.Resource;\n instrumentationLibraryMetrics: opentelemetryProto.metrics.v1.InstrumentationLibraryMetrics[];\n }\n\n export enum AggregationTemporality {\n // UNSPECIFIED is the default AggregationTemporality, it MUST not be used.\n AGGREGATION_TEMPORALITY_UNSPECIFIED = 0,\n\n // DELTA is an AggregationTemporality for a metric aggregator which reports\n // changes since last report time. Successive metrics contain aggregation of\n // values from continuous and non-overlapping intervals.\n //\n // The values for a DELTA metric are based only on the time interval\n // associated with one measurement cycle. There is no dependency on\n // previous measurements like is the case for CUMULATIVE metrics.\n //\n // For example, consider a system measuring the number of requests that\n // it receives and reports the sum of these requests every second as a\n // DELTA metric:\n //\n // 1. The system starts receiving at time=t_0.\n // 2. A request is received, the system measures 1 request.\n // 3. A request is received, the system measures 1 request.\n // 4. A request is received, the system measures 1 request.\n // 5. The 1 second collection cycle ends. A metric is exported for the\n // number of requests received over the interval of time t_0 to\n // t_0+1 with a value of 3.\n // 6. A request is received, the system measures 1 request.\n // 7. A request is received, the system measures 1 request.\n // 8. The 1 second collection cycle ends. A metric is exported for the\n // number of requests received over the interval of time t_0+1 to\n // t_0+2 with a value of 2.\n AGGREGATION_TEMPORALITY_DELTA = 1,\n\n // CUMULATIVE is an AggregationTemporality for a metric aggregator which\n // reports changes since a fixed start time. This means that current values\n // of a CUMULATIVE metric depend on all previous measurements since the\n // start time. Because of this, the sender is required to retain this state\n // in some form. If this state is lost or invalidated, the CUMULATIVE metric\n // values MUST be reset and a new fixed start time following the last\n // reported measurement time sent MUST be used.\n //\n // For example, consider a system measuring the number of requests that\n // it receives and reports the sum of these requests every second as a\n // CUMULATIVE metric:\n //\n // 1. The system starts receiving at time=t_0.\n // 2. A request is received, the system measures 1 request.\n // 3. A request is received, the system measures 1 request.\n // 4. A request is received, the system measures 1 request.\n // 5. The 1 second collection cycle ends. A metric is exported for the\n // number of requests received over the interval of time t_0 to\n // t_0+1 with a value of 3.\n // 6. A request is received, the system measures 1 request.\n // 7. A request is received, the system measures 1 request.\n // 8. The 1 second collection cycle ends. A metric is exported for the\n // number of requests received over the interval of time t_0 to\n // t_0+2 with a value of 5.\n // 9. The system experiences a fault and loses state.\n // 10. The system recovers and resumes receiving at time=t_1.\n // 11. A request is received, the system measures 1 request.\n // 12. The 1 second collection cycle ends. A metric is exported for the\n // number of requests received over the interval of time t_1 to\n // t_0+1 with a value of 1.\n //\n // Note: Even though, when reporting changes since last report time, using\n // CUMULATIVE is valid, it is not recommended. This may cause problems for\n // systems that do not use start_time to determine when the aggregation\n // value was reset (e.g. Prometheus).\n AGGREGATION_TEMPORALITY_CUMULATIVE = 2,\n }\n }\n\n export namespace trace.v1 {\n export namespace ConstantSampler {\n export enum ConstantDecision {\n ALWAYS_OFF = 0,\n ALWAYS_ON = 1,\n ALWAYS_PARENT = 2,\n }\n }\n export namespace Span {\n export interface Event {\n timeUnixNano: number;\n name: string;\n attributes?: opentelemetryProto.common.v1.KeyValue[];\n droppedAttributesCount: number;\n }\n\n export interface Link {\n traceId: string;\n spanId: string;\n traceState?: opentelemetryProto.trace.v1.Span.TraceState;\n attributes?: opentelemetryProto.common.v1.KeyValue[];\n droppedAttributesCount: number;\n }\n\n // eslint-disable-next-line @typescript-eslint/no-shadow\n export enum SpanKind {\n SPAN_KIND_UNSPECIFIED,\n SPAN_KIND_INTERNAL,\n SPAN_KIND_SERVER,\n SPAN_KIND_CLIENT,\n SPAN_KIND_PRODUCER,\n SPAN_KIND_CONSUMER,\n }\n\n export type TraceState = string | undefined;\n }\n\n export interface ConstantSampler {\n decision?: opentelemetryProto.trace.v1.ConstantSampler.ConstantDecision;\n }\n\n export interface InstrumentationLibrarySpans {\n instrumentationLibrary?: opentelemetryProto.common.v1.InstrumentationLibrary;\n spans: opentelemetryProto.trace.v1.Span[];\n }\n\n export interface ProbabilitySampler {\n samplingProbability?: number | null;\n }\n\n export interface RateLimitingSampler {\n qps?: number | null;\n }\n\n export interface ResourceSpans {\n resource?: opentelemetryProto.resource.v1.Resource;\n instrumentationLibrarySpans: opentelemetryProto.trace.v1.InstrumentationLibrarySpans[];\n }\n\n export interface Span {\n traceId: string;\n spanId: string;\n traceState: opentelemetryProto.trace.v1.Span.TraceState;\n parentSpanId?: string;\n name?: string;\n kind?: opentelemetryProto.trace.v1.Span.SpanKind;\n startTimeUnixNano?: number;\n endTimeUnixNano?: number;\n attributes?: opentelemetryProto.common.v1.KeyValue[];\n droppedAttributesCount: number;\n events?: opentelemetryProto.trace.v1.Span.Event[];\n droppedEventsCount: number;\n links?: opentelemetryProto.trace.v1.Span.Link[];\n droppedLinksCount: number;\n status?: SpanStatus;\n }\n\n export interface SpanStatus {\n /** The status code of this message. */\n code: SpanStatusCode;\n /** A developer-facing error message. */\n message?: string;\n }\n\n export interface TraceConfig {\n constantSampler?: ConstantSampler | null;\n probabilitySampler?: ProbabilitySampler | null;\n rateLimitingSampler?: RateLimitingSampler | null;\n }\n }\n export namespace common.v1 {\n export interface KeyValue {\n key: string;\n value: AnyValue;\n }\n\n export type ArrayValue = {\n values: AnyValue[];\n };\n\n export interface KeyValueList {\n values: KeyValue[];\n }\n\n export type AnyValue = {\n stringValue?: string;\n boolValue?: boolean;\n intValue?: number;\n doubleValue?: number;\n arrayValue?: ArrayValue;\n kvlistValue?: KeyValueList;\n };\n\n export interface InstrumentationLibrary {\n name: string;\n version?: string;\n }\n\n export interface StringKeyValue {\n key: string;\n value: string;\n }\n\n export enum ValueType {\n STRING,\n INT,\n DOUBLE,\n BOOL,\n }\n }\n}\n\n/**\n * Mapping between api SpanKind and proto SpanKind\n */\nexport const OTLP_SPAN_KIND_MAPPING = {\n [SpanKind.INTERNAL]:\n opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_INTERNAL,\n [SpanKind.SERVER]: opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_SERVER,\n [SpanKind.CLIENT]: opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_CLIENT,\n [SpanKind.PRODUCER]:\n opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_PRODUCER,\n [SpanKind.CONSUMER]:\n opentelemetryProto.trace.v1.Span.SpanKind.SPAN_KIND_CONSUMER,\n};\n"]}
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import { SpanAttributes, SpanKind, SpanStatus, TraceState } from '@opentelemetry/api';
|
|
2
|
-
import * as core from '@opentelemetry/core';
|
|
3
|
-
import { Resource } from '@opentelemetry/resources';
|
|
4
|
-
import { ReadableSpan, TimedEvent } from '@opentelemetry/sdk-trace-base';
|
|
5
|
-
import { opentelemetryProto } from './types';
|
|
6
|
-
import { OTLPExporterBase, OTLPExporterConfigBase } from '@opentelemetry/otlp-exporter-base';
|
|
7
|
-
/**
|
|
8
|
-
* Converts attributes to KeyValue array
|
|
9
|
-
* @param attributes
|
|
10
|
-
*/
|
|
11
|
-
export declare function toCollectorAttributes(attributes: SpanAttributes): opentelemetryProto.common.v1.KeyValue[];
|
|
12
|
-
/**
|
|
13
|
-
* Converts array of unknown value to ArrayValue
|
|
14
|
-
* @param values
|
|
15
|
-
*/
|
|
16
|
-
export declare function toCollectorArrayValue(values: unknown[]): opentelemetryProto.common.v1.ArrayValue;
|
|
17
|
-
/**
|
|
18
|
-
* Converts attributes to KeyValueList
|
|
19
|
-
* @param attributes
|
|
20
|
-
*/
|
|
21
|
-
export declare function toCollectorKeyValueList(attributes: SpanAttributes): opentelemetryProto.common.v1.KeyValueList;
|
|
22
|
-
/**
|
|
23
|
-
* Converts key and unknown value to KeyValue
|
|
24
|
-
* @param value event value
|
|
25
|
-
*/
|
|
26
|
-
export declare function toCollectorAttributeKeyValue(key: string, value: unknown): opentelemetryProto.common.v1.KeyValue;
|
|
27
|
-
/**
|
|
28
|
-
* Converts unknown value to AnyValue
|
|
29
|
-
* @param value
|
|
30
|
-
*/
|
|
31
|
-
export declare function toCollectorAnyValue(value: unknown): opentelemetryProto.common.v1.AnyValue;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* Converts events
|
|
35
|
-
* @param events array of events
|
|
36
|
-
*/
|
|
37
|
-
export declare function toCollectorEvents(timedEvents: TimedEvent[]): opentelemetryProto.trace.v1.Span.Event[];
|
|
38
|
-
/**
|
|
39
|
-
* Converts span
|
|
40
|
-
* @param span
|
|
41
|
-
* @param useHex - if ids should be kept as hex without converting to base64
|
|
42
|
-
*/
|
|
43
|
-
export declare function toCollectorSpan(span: ReadableSpan, useHex?: boolean): opentelemetryProto.trace.v1.Span;
|
|
44
|
-
/**
|
|
45
|
-
* Converts status
|
|
46
|
-
* @param status
|
|
47
|
-
*/
|
|
48
|
-
export declare function toCollectorStatus(status: SpanStatus): opentelemetryProto.trace.v1.SpanStatus;
|
|
49
|
-
/**
|
|
50
|
-
* Converts resource
|
|
51
|
-
* @param resource
|
|
52
|
-
* @param additionalAttributes
|
|
53
|
-
*/
|
|
54
|
-
export declare function toCollectorResource(resource?: Resource, additionalAttributes?: {
|
|
55
|
-
[key: string]: unknown;
|
|
56
|
-
}): opentelemetryProto.resource.v1.Resource;
|
|
57
|
-
/**
|
|
58
|
-
* Converts span kind
|
|
59
|
-
* @param kind
|
|
60
|
-
*/
|
|
61
|
-
export declare function toCollectorKind(kind: SpanKind): opentelemetryProto.trace.v1.Span.SpanKind;
|
|
62
|
-
/**
|
|
63
|
-
* Converts traceState
|
|
64
|
-
* @param traceState
|
|
65
|
-
*/
|
|
66
|
-
export declare function toCollectorTraceState(traceState?: TraceState): opentelemetryProto.trace.v1.Span.TraceState | undefined;
|
|
67
|
-
/**
|
|
68
|
-
* Prepares trace service request to be sent to collector
|
|
69
|
-
* @param spans spans
|
|
70
|
-
* @param collectorExporterBase
|
|
71
|
-
* @param useHex - if ids should be kept as hex without converting to base64
|
|
72
|
-
*/
|
|
73
|
-
export declare function toOTLPExportTraceServiceRequest<T extends OTLPExporterConfigBase>(spans: ReadableSpan[], collectorTraceExporterBase: OTLPExporterBase<T, ReadableSpan, opentelemetryProto.collector.trace.v1.ExportTraceServiceRequest>, useHex?: boolean): opentelemetryProto.collector.trace.v1.ExportTraceServiceRequest;
|
|
74
|
-
/**
|
|
75
|
-
* Takes an array of spans and groups them by resource and instrumentation
|
|
76
|
-
* library
|
|
77
|
-
* @param spans spans
|
|
78
|
-
*/
|
|
79
|
-
export declare function groupSpansByResourceAndLibrary(spans: ReadableSpan[]): Map<Resource, Map<core.InstrumentationLibrary, ReadableSpan[]>>;
|
|
80
|
-
//# sourceMappingURL=transform.d.ts.map
|