We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da46d0b commit 22694c8Copy full SHA for 22694c8
samples/script.sh
@@ -21,7 +21,6 @@ do
21
sleep 1
22
time_end=$SECONDS
23
duration=$(( $time_end - $time_start ))
24
- counter=$(( $counter + 1 ))
25
echo "loop time_start: ${time_start}. time_end: ${time_end}. duration: ${duration}"
26
27
python3 tracepusher.py \
@@ -34,6 +33,9 @@ do
34
33
--span-id=${sub_span_id} \
35
--time-shift=True
36
echo "pushing subspan: ${sub_span_id} with span name: subspan${counter}. trace id: ${trace_id} and parent span id: ${span_id} and time shifted"
+
37
+ counter=$(( $counter + 1 ))
38
39
done
40
41
0 commit comments