forked from tikv/client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlowLogImpl.java
More file actions
170 lines (141 loc) · 4.58 KB
/
SlowLogImpl.java
File metadata and controls
170 lines (141 loc) · 4.58 KB
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
/*
* Copyright 2021 TiKV Project 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 org.tikv.common.log;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import java.math.BigInteger;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Random;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class SlowLogImpl implements SlowLog {
private static final Logger logger = LoggerFactory.getLogger(SlowLogImpl.class);
private static final int MAX_SPAN_SIZE = 1024;
private static final Random random = new Random();
private final List<SlowLogSpan> slowLogSpans = new ArrayList<>();
private final HashMap<String, Object> fields = new HashMap<>();
private Throwable error = null;
private final long startMS;
/**
* use System.nanoTime() to calculate duration, cause System.currentTimeMillis() is not monotonic
*/
private final long startNS;
private final long slowThresholdMS;
private final long traceId;
private long durationMS;
public SlowLogImpl(long slowThresholdMS) {
this.startMS = System.currentTimeMillis();
this.startNS = System.nanoTime();
this.slowThresholdMS = slowThresholdMS;
this.traceId = random.nextLong();
}
@Override
public synchronized SlowLogSpan start(String name) {
SlowLogSpan slowLogSpan = new SlowLogSpanImpl(name, startMS, startNS);
if (slowLogSpans.size() < MAX_SPAN_SIZE) {
slowLogSpans.add(slowLogSpan);
}
slowLogSpan.start();
return slowLogSpan;
}
@Override
public long getTraceId() {
return traceId;
}
@Override
public long getThresholdMS() {
return slowThresholdMS;
}
@Override
public void setError(Throwable err) {
this.error = err;
}
@Override
public SlowLog withFields(Map<String, Object> fields) {
this.fields.putAll(fields);
return this;
}
@Override
public Object getField(String key) {
return fields.get(key);
}
@Override
public void log() {
recordTime();
if (error != null || timeExceeded()) {
SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS");
logger.warn(
String.format(
"A request spent %s ms. start=%s, end=%s, SlowLog:%s",
durationMS,
dateFormat.format(startMS),
dateFormat.format(startMS + durationMS),
getSlowLogJson().toString()));
}
}
private void recordTime() {
long currentNS = System.nanoTime();
durationMS = (currentNS - startNS) / 1_000_000;
}
boolean timeExceeded() {
return slowThresholdMS >= 0 && durationMS > slowThresholdMS;
}
JsonObject getSlowLogJson() {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("trace_id", toUnsignedBigInteger(traceId));
if (error != null) {
jsonObject.addProperty("error", error.getMessage());
}
JsonArray jsonArray = new JsonArray();
for (SlowLogSpan slowLogSpan : slowLogSpans) {
jsonArray.add(slowLogSpan.toJsonElement());
}
jsonObject.add("spans", jsonArray);
for (Entry<String, Object> entry : fields.entrySet()) {
Object value = entry.getValue();
if (value instanceof List) {
JsonArray field = new JsonArray();
for (Object o : (List<?>) value) {
field.add(o.toString());
}
jsonObject.add(entry.getKey(), field);
} else if (value instanceof Map) {
JsonObject field = new JsonObject();
for (Entry<?, ?> e : ((Map<?, ?>) value).entrySet()) {
field.addProperty(e.getKey().toString(), e.getValue().toString());
}
jsonObject.add(entry.getKey(), field);
} else {
jsonObject.addProperty(entry.getKey(), value.toString());
}
}
return jsonObject;
}
static BigInteger toUnsignedBigInteger(long i) {
if (i >= 0) {
return BigInteger.valueOf(i);
} else {
long withoutSign = i & ~(1L << 63);
return (BigInteger.valueOf(1)).shiftLeft(63).add(BigInteger.valueOf(withoutSign));
}
}
}