Skip to content

Commit a1f929c

Browse files
committed
1 parent 07c0332 commit a1f929c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/data/relay_metrics.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
11
[
2+
{
3+
"type": "Histogram",
4+
"name": "dynamic_sampling.change_duration",
5+
"description": "Time in milliseconds from the start of transaction until the final name is determined.\n\nIf the transaction name changes multiple times, this records only the last instance. This\nmetric is not logged if there were no changes to the transaction name.\n\nThis metric is tagged with:\n\n- `source`: The transaction source value in the final event payload.\n- `platform`: The SDK platform value of the event payload.\n- `sdk_name`: The name of the client SDK as reported in the event payload.\n- `sdk_version`: The version of the client SDK as reported in the event payload.",
6+
"features": []
7+
},
8+
{
9+
"type": "Histogram",
10+
"name": "dynamic_sampling.change_pct",
11+
"description": "Timing relative to the transaction duration until the final name is determined.\n\nThis is a percentage between `0.0` and `1.0`.\n\nThis metric is tagged with:\n\n- `source`: The transaction source value in the final event payload.\n- `platform`: The SDK platform value of the event payload.\n- `sdk_name`: The name of the client SDK as reported in the event payload.\n- `sdk_version`: The version of the client SDK as reported in the event payload.",
12+
"features": []
13+
},
14+
{
15+
"type": "Histogram",
16+
"name": "dynamic_sampling.changes",
17+
"description": "Counts how often a transaction name was changed before submitting the final transaction.\n\nA value of `0` indicates that the transaction was created with the final transaction name.\nIn this case, the DSC will have the correct transaction name guaranteed. However, to\ndetermine how many traces had wrong transaction names propagated, check the\n`dynamic_sampling.propagations`.\n\nThis metric is tagged with:\n\n- `source`: The transaction source value in the final event payload.\n- `platform`: The SDK platform value of the event payload.\n- `sdk_name`: The name of the client SDK as reported in the event payload.\n- `sdk_version`: The version of the client SDK as reported in the event payload.",
18+
"features": []
19+
},
20+
{
21+
"type": "Histogram",
22+
"name": "dynamic_sampling.propagations",
23+
"description": "Counts the number of propagations before the final transaction name has been determined.\n\nA value of `0` indicates that the entire trace had identical transaction names in the\nDynamic Sampling Context (DSC). This means that the entire trace is sampled consistently.\n\nNote that this differs from `dynamic_sampling.changes`, which indicates changes even in the\nabsence of propagations.\n\nThis metric is tagged with:\n\n- `source`: The transaction source value in the final event payload.\n- `platform`: The SDK platform value of the event payload.\n- `sdk_name`: The name of the client SDK as reported in the event payload.\n- `sdk_version`: The version of the client SDK as reported in the event payload.",
24+
"features": []
25+
},
226
{
327
"type": "Counter",
428
"name": "event.accepted",

0 commit comments

Comments
 (0)