-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathMetricProbesIntegrationTest.java
More file actions
226 lines (207 loc) · 8.14 KB
/
Copy pathMetricProbesIntegrationTest.java
File metadata and controls
226 lines (207 loc) · 8.14 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package datadog.smoketest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import com.datadog.debugger.agent.ProbeStatus;
import com.datadog.debugger.el.DSL;
import com.datadog.debugger.el.ValueScript;
import com.datadog.debugger.probe.MetricProbe;
import datadog.trace.test.util.Flaky;
import datadog.trace.test.util.NonRetryable;
import java.io.IOException;
import java.util.concurrent.atomic.AtomicBoolean;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
@Flaky
@NonRetryable
public class MetricProbesIntegrationTest extends SimpleAppDebuggerIntegrationTest {
@AfterEach
void teardown() throws Exception {
processRemainingRequests();
}
@Test
@DisplayName("testMethodMetricInc")
void testMethodMetricInc() throws Exception {
doMethodMetric(
"incCallCount",
MetricProbe.MetricKind.COUNT,
null,
"dynamic.instrumentation.metric.probe.%s:1|c|#debugger.probeid:%s");
}
@Test
@DisplayName("testMethodMetricCount")
void testMethodMetricCount() throws Exception {
doMethodMetric(
"fullMethod_count",
MetricProbe.MetricKind.COUNT,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|c|#debugger.probeid:%s");
}
@Test
@DisplayName("testMethodMetricCountInvalidSymbol")
void testMethodMetricCountInvalidSymbol() throws Exception {
doMethodInvalidMetric(
"fullMethod_count",
MetricProbe.MetricKind.COUNT,
new ValueScript(DSL.ref("noarg"), "noarg"),
"Cannot resolve symbol noarg");
}
@Test
@DisplayName("testMethodMetricCountInvalidType")
void testMethodMetricCountInvalidType() throws Exception {
doMethodInvalidMetric(
"fullMethod_count",
MetricProbe.MetricKind.COUNT,
new ValueScript(DSL.ref("argStr"), "argStr"),
"Incompatible type for expression: java.lang.String with expected types: [long]");
}
@Test
@DisplayName("testMethodMetricGauge")
void testMethodMetricGauge() throws Exception {
doMethodMetric(
"fullMethod_gauge",
MetricProbe.MetricKind.GAUGE,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|g|#debugger.probeid:%s");
}
@Test
@DisplayName("testMethodMetricHistogram")
void testMethodMetricHistogram() throws Exception {
doMethodMetric(
"fullMethod_histogram",
MetricProbe.MetricKind.HISTOGRAM,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|h|#debugger.probeid:%s");
}
@Test
@DisplayName("testMethodMetricDistribution")
void testMethodMetricDistribution() throws Exception {
doMethodMetric(
"fullMethod_distribution",
MetricProbe.MetricKind.DISTRIBUTION,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|d|#debugger.probeid:%s");
}
private void doMethodMetric(
String metricName, MetricProbe.MetricKind kind, ValueScript script, String expectedMsgFormat)
throws IOException, InterruptedException {
final String METHOD_NAME = "fullMethod";
final String EXPECTED_UPLOADS =
"-1"; // wait for TIMEOUT_S for letting the metric being sent (async)
MetricProbe metricProbe =
MetricProbe.builder()
.probeId(PROBE_ID)
.where(MAIN_CLASS_NAME, METHOD_NAME)
.kind(kind)
.metricName(metricName)
.valueScript(script)
.build();
setCurrentConfiguration(createMetricConfig(metricProbe));
targetProcess = createProcessBuilder(logFilePath, METHOD_NAME, EXPECTED_UPLOADS).start();
String msgExpected = String.format(expectedMsgFormat, metricName, PROBE_ID.getId());
assertNotNull(retrieveStatsdMessage(msgExpected));
AtomicBoolean statusResult = registerCheckReceivedInstalledEmitting(PROBE_ID);
processRequests(
statusResult::get, () -> String.format("timeout statusResult=%s", statusResult.get()));
}
private void doMethodInvalidMetric(
String metricName, MetricProbe.MetricKind kind, ValueScript script, String expectedMsg)
throws Exception {
final String METHOD_NAME = "fullMethod";
final String EXPECTED_UPLOADS =
"-1"; // wait for TIMEOUT_S for letting the Probe Status to be sent (async)
MetricProbe metricProbe =
MetricProbe.builder()
.probeId(PROBE_ID)
.where(MAIN_CLASS_NAME, METHOD_NAME)
.kind(kind)
.metricName(metricName)
.valueScript(script)
.build();
setCurrentConfiguration(createMetricConfig(metricProbe));
targetProcess = createProcessBuilder(logFilePath, METHOD_NAME, EXPECTED_UPLOADS).start();
AtomicBoolean received = new AtomicBoolean();
AtomicBoolean error = new AtomicBoolean();
registerProbeStatusListener(
probeStatus -> {
if (probeStatus.getDiagnostics().getStatus() == ProbeStatus.Status.RECEIVED) {
received.set(true);
}
if (probeStatus.getDiagnostics().getStatus() == ProbeStatus.Status.ERROR) {
assertEquals(expectedMsg, probeStatus.getDiagnostics().getException().getMessage());
error.set(true);
}
});
processRequests(
() -> received.get() && error.get(),
() -> String.format("timeout received=%s error=%s", received.get(), error.get()));
}
@Test
@DisplayName("testLineMetricInc")
void testLineMetricInc() throws Exception {
doLineMetric(
"fullMethod_incCallCount",
MetricProbe.MetricKind.COUNT,
null,
"dynamic.instrumentation.metric.probe.%s:1|c|#debugger.probeid:%s");
}
@Test
@DisplayName("testLineMetricCount")
void testLineMetricCount() throws Exception {
doLineMetric(
"fullMethod_count",
MetricProbe.MetricKind.COUNT,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|c|#debugger.probeid:%s");
}
@Test
@DisplayName("testLineMetricGauge")
void testLineMetricGauge() throws Exception {
doLineMetric(
"fullMethod_gauge",
MetricProbe.MetricKind.GAUGE,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|g|#debugger.probeid:%s");
}
@Test
@DisplayName("testLineMetricHistogram")
void testLineMetricHistogram() throws Exception {
doLineMetric(
"fullMethod_histogram",
MetricProbe.MetricKind.HISTOGRAM,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|h|#debugger.probeid:%s");
}
@Test
@DisplayName("testLineMetricDistribution")
void testLineMetricDistribution() throws Exception {
doLineMetric(
"fullMethod_distribution",
MetricProbe.MetricKind.DISTRIBUTION,
new ValueScript(DSL.ref("argInt"), "argInt"),
"dynamic.instrumentation.metric.probe.%s:42|d|#debugger.probeid:%s");
}
private void doLineMetric(
String metricName, MetricProbe.MetricKind kind, ValueScript script, String expectedMsgFormat)
throws IOException, InterruptedException {
final String METHOD_NAME = "fullMethod";
final String EXPECTED_UPLOADS =
"-1"; // wait for TIMEOUT_S for letting the metric being sent (async)
MetricProbe metricProbe =
MetricProbe.builder()
.probeId(PROBE_ID)
// on line: System.out.println("fullMethod");
.where("DebuggerTestApplication.java", 95)
.kind(kind)
.metricName(metricName)
.valueScript(script)
.build();
setCurrentConfiguration(createMetricConfig(metricProbe));
targetProcess = createProcessBuilder(logFilePath, METHOD_NAME, EXPECTED_UPLOADS).start();
String msgExpected = String.format(expectedMsgFormat, metricName, PROBE_ID.getId());
assertNotNull(retrieveStatsdMessage(msgExpected));
AtomicBoolean statusResult = registerCheckReceivedInstalledEmitting(PROBE_ID);
processRequests(
statusResult::get, () -> String.format("timeout statusResult=%s", statusResult.get()));
}
}