Skip to content
Merged
398 changes: 398 additions & 0 deletions javascript/sentry-conventions/src/attributes.ts

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__blocking_count.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.blocking_count",
"brief": "Total number of blocking (stop-the-world) garbage collections performed by the Android Runtime",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 1,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.blocking_count attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__blocking_time.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.blocking_time",
"brief": "Total time spent in blocking (stop-the-world) garbage collections by the Android Runtime, in milliseconds",
"type": "double",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 11.873,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.blocking_time attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__pre_oome_count.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.pre_oome_count",
"brief": "Total number of garbage collections triggered as a last resort before an OutOfMemoryError by the Android Runtime",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 0,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.pre_oome_count attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__total_count.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.total_count",
"brief": "Total number of garbage collections performed by the Android Runtime",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 1,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.total_count attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__total_time.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.total_time",
"brief": "Total time spent in garbage collection by the Android Runtime, in milliseconds",
"type": "double",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 11.807,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.total_time attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__gc__waiting_time.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.gc.waiting_time",
"brief": "Total time threads spent waiting for garbage collection to complete in the Android Runtime, in milliseconds",
"type": "double",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 8.054,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.gc.waiting_time attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__memory__free.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.memory.free",
"brief": "Free memory available to the process as reported by the Android Runtime, in bytes",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 3181568,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.memory.free attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__memory__free_until_gc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.memory.free_until_gc",
"brief": "Free memory available before a garbage collection would be triggered by the Android Runtime, in bytes",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 3181568,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.memory.free_until_gc attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__memory__free_until_oome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.memory.free_until_oome",
"brief": "Free memory available before an OutOfMemoryError would be thrown by the Android Runtime, in bytes",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 196083712,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.memory.free_until_oome attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__memory__max.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.memory.max",
"brief": "Maximum memory the process is allowed to use as reported by the Android Runtime, in bytes",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 201326592,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.memory.max attribute"
}
]
}
19 changes: 19 additions & 0 deletions model/attributes/art/art__memory__total.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"key": "art.memory.total",
"brief": "Total memory currently allocated to the process by the Android Runtime, in bytes",
"type": "integer",
"pii": {
"key": "false"
},
"is_in_otel": false,
"visibility": "public",
"example": 7774208,
"sdks": ["sentry.java.android"],
"changelog": [
{
"version": "next",
"prs": [382],
"description": "Added art.memory.total attribute"
}
]
}
Loading
Loading