This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathindex.ts
177 lines (155 loc) · 4.77 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
* Copyright 2018, OpenCensus 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.
*/
import { Link, LinkType, Span } from '@opencensus/core';
// tslint:disable-next-line:variable-name
export const UDPSender = require('jaeger-client/dist/src/reporters/udp_sender')
.default;
// tslint:disable-next-line:variable-name
export const Utils = require('jaeger-client/dist/src/util').default;
// tslint:disable-next-line:variable-name
export const ThriftUtils = require('jaeger-client/dist/src/thrift').default;
export type TagValue = string | number | boolean;
export interface Tag {
key: string;
value: TagValue;
}
export interface Log {
timestamp: number;
fields: Tag[];
}
export type SenderCallback = (numSpans: number, err?: string) => void;
export interface ThriftProcess {
serviceName: string;
tags: ThriftTag[];
}
export interface ThriftTag {
key: string;
vType: string;
vStr: string;
vDouble: number;
vBool: boolean;
}
export interface ThriftLog {
timestamp: number;
fields: ThriftTag[];
}
export enum ThriftReferenceType {
CHILD_OF = 'CHILD_OF',
FOLLOWS_FROM = 'FOLLOWS_FROM',
}
export interface ThriftReference {
traceIdLow: Buffer;
traceIdHigh: Buffer;
spanId: Buffer;
refType: ThriftReferenceType;
}
export interface ThriftSpan {
traceIdLow: Buffer;
traceIdHigh: Buffer;
spanId: Buffer;
parentSpanId: string | Buffer;
operationName: string;
references: ThriftReference[];
flags: number;
startTime: number; // milliseconds
duration: number; // milliseconds
tags: ThriftTag[];
logs: ThriftLog[];
}
/**
* Translate opencensus Span to Jaeger Thrift Span
* @param span
*/
export function spanToThrift(span: Span): ThriftSpan {
const tags: Tag[] = [];
if (span.attributes) {
Object.keys(span.attributes).forEach(key => {
tags.push({ key, value: span.attributes[key] });
});
}
const logs: Log[] = [];
if (span.messageEvents) {
span.messageEvents.forEach(msg => {
logs.push({
timestamp: msg.timestamp,
fields: [
{ key: 'message.id', value: msg.id },
{ key: 'message.type', value: msg.type },
],
});
});
}
if (span.annotations) {
span.annotations.forEach(ann => {
const tags: Tag[] = [];
Object.keys(ann.attributes).forEach(key => {
tags.push({ key, value: ann.attributes[key] });
});
tags.push({ key: 'description', value: ann.description });
logs.push({
timestamp: ann.timestamp,
fields: tags,
});
});
}
const parentSpan: string | Buffer = span.parentSpanId
? Utils.encodeInt64(span.parentSpanId)
: ThriftUtils.emptyBuffer;
const traceId = `00000000000000000000000000000000${span.spanContext.traceId}`.slice(
-32
);
const high = traceId.slice(0, 16);
const low = traceId.slice(16);
const spanTags: ThriftTag[] = ThriftUtils.getThriftTags(tags);
const spanLogs: ThriftLog[] = ThriftUtils.getThriftLogs(logs);
return {
traceIdLow: Utils.encodeInt64(low),
traceIdHigh: Utils.encodeInt64(high),
spanId: Utils.encodeInt64(span.spanContext.spanId),
parentSpanId: parentSpan,
operationName: span.name,
references: getThriftReference(span.links),
flags: span.spanContext.options || 0x1,
startTime: Utils.encodeInt64(span.startTime.getTime() * 1000), // to microseconds
duration: Utils.encodeInt64(span.duration * 1000), // to microseconds
tags: spanTags,
logs: spanLogs,
};
}
function getThriftReference(links: Link[]): ThriftReference[] {
return links
.map((link): ThriftReference | null => {
const refType = getThriftType(link.type);
if (!refType) return null;
const traceId = `00000000000000000000000000000000${link.traceId}`.slice(
-32
);
const traceIdHigh = Utils.encodeInt64(traceId.slice(0, 16));
const traceIdLow = Utils.encodeInt64(traceId.slice(16));
const spanId = Utils.encodeInt64(link.spanId);
return { traceIdLow, traceIdHigh, spanId, refType };
})
.filter(ref => !!ref) as ThriftReference[];
}
function getThriftType(type: number): ThriftReferenceType | null {
if (type === LinkType.CHILD_LINKED_SPAN) {
return ThriftReferenceType.CHILD_OF;
}
if (type === LinkType.PARENT_LINKED_SPAN) {
return ThriftReferenceType.FOLLOWS_FROM;
}
return null;
}