Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions generated/attributes/code.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The method or function name, or equivalent (usually rightmost part of the code u
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | false |
| Has PII | maybe |
| Exists in OpenTelemetry | Yes |
| Example | `server_request` |
| Deprecated | Yes, use `code.function.name` instead |
Expand All @@ -100,7 +100,7 @@ The 'namespace' within which code.function is defined. Usually the qualified cla
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | false |
| Has PII | maybe |
| Exists in OpenTelemetry | Yes |
| Example | `http.handler` |
| Deprecated | Yes, use `code.function.name` instead |
Expand Down
12 changes: 6 additions & 6 deletions generated/attributes/gen_ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The input messages sent to the model
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | false |
| Has PII | maybe |
| Exists in OpenTelemetry | Yes |
| Example | `[{"role": "user", "message": "hello"}]` |

Expand Down Expand Up @@ -141,7 +141,7 @@ The messages passed to the model. It has to be a stringified version of an array
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | true |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `[{"role": "system", "content": "Generate a random number."}, {"role": "user", "content": [{"text": "Generate a random number between 0 and 10.", "type": "text"}]}]` |

Expand Down Expand Up @@ -259,7 +259,7 @@ The model's response text messages. It has to be a stringified version of an arr
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | true |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `["The weather in Paris is rainy and overcast, with temperatures around 57°F", "The weather in London is sunny and warm, with temperatures around 65°F"]` |

Expand All @@ -281,7 +281,7 @@ The tool calls in the model's response. It has to be a stringified version of an
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | true |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `[{"name": "get_weather", "arguments": {"location": "Paris"}}]` |

Expand Down Expand Up @@ -326,7 +326,7 @@ The input of the tool being used. It has to be a stringified version of the inpu
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | true |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `{"location": "Paris"}` |

Expand Down Expand Up @@ -360,7 +360,7 @@ The output of the tool being used. It has to be a stringified version of the out
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | true |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `rainy, 57°F` |

Expand Down
4 changes: 2 additions & 2 deletions generated/attributes/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Also used by mobile SDKs to indicate the previous route in the application.
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | false |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `HomeScreen` |

Expand Down Expand Up @@ -177,7 +177,7 @@ The matched route, that is, the path template in the format used by the respecti
| Property | Value |
| --- | --- |
| Type | `string` |
| Has PII | false |
| Has PII | maybe |
| Exists in OpenTelemetry | No |
| Example | `App\Controller::indexAction` |
| Deprecated | Yes, use `http.route` instead |
Expand Down
20 changes: 10 additions & 10 deletions javascript/sentry-conventions/src/attributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1120,7 +1120,7 @@ export type CODE_FILEPATH_TYPE = string;
*
* Attribute Value Type: `string` {@link CODE_FUNCTION_TYPE}
*
* Contains PII: false
* Contains PII: maybe
*
* Attribute defined in OTEL: Yes
*
Expand Down Expand Up @@ -1210,7 +1210,7 @@ export type CODE_LINENO_TYPE = number;
*
* Attribute Value Type: `string` {@link CODE_NAMESPACE_TYPE}
*
* Contains PII: false
* Contains PII: maybe
*
* Attribute defined in OTEL: Yes
*
Expand Down Expand Up @@ -1962,7 +1962,7 @@ export type GEN_AI_OPERATION_NAME_TYPE = string;
*
* Attribute Value Type: `string` {@link GEN_AI_PROMPT_TYPE}
*
* Contains PII: false
* Contains PII: maybe
*
* Attribute defined in OTEL: Yes
*
Expand Down Expand Up @@ -2044,7 +2044,7 @@ export type GEN_AI_REQUEST_MAX_TOKENS_TYPE = number;
*
* Attribute Value Type: `string` {@link GEN_AI_REQUEST_MESSAGES_TYPE}
*
* Contains PII: true
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -2260,7 +2260,7 @@ export type GEN_AI_RESPONSE_MODEL_TYPE = string;
*
* Attribute Value Type: `string` {@link GEN_AI_RESPONSE_TEXT_TYPE}
*
* Contains PII: true
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -2300,7 +2300,7 @@ export type GEN_AI_RESPONSE_TOKENS_PER_SECOND_TYPE = number;
*
* Attribute Value Type: `string` {@link GEN_AI_RESPONSE_TOOL_CALLS_TYPE}
*
* Contains PII: true
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -2382,7 +2382,7 @@ export type GEN_AI_TOOL_DESCRIPTION_TYPE = string;
*
* Attribute Value Type: `string` {@link GEN_AI_TOOL_INPUT_TYPE}
*
* Contains PII: true
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -2444,7 +2444,7 @@ export type GEN_AI_TOOL_NAME_TYPE = string;
*
* Attribute Value Type: `string` {@link GEN_AI_TOOL_OUTPUT_TYPE}
*
* Contains PII: true
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -4718,7 +4718,7 @@ export type PARAMS_KEY_TYPE = string;
*
* Attribute Value Type: `string` {@link PREVIOUS_ROUTE_TYPE}
*
* Contains PII: false
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down Expand Up @@ -4972,7 +4972,7 @@ export type RESOURCE_RENDER_BLOCKING_STATUS_TYPE = string;
*
* Attribute Value Type: `string` {@link ROUTE_TYPE}
*
* Contains PII: false
* Contains PII: maybe
*
* Attribute defined in OTEL: No
*
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/code/code__function.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The method or function name, or equivalent (usually rightmost part of the code unit's name).",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": true,
"example": "server_request",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/code/code__namespace.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The 'namespace' within which code.function is defined. Usually the qualified class or module name, such that code.namespace + some separator + code.function form a unique identifier for the code unit.",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": true,
"example": "http.handler",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/gen_ai/gen_ai__prompt.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The input messages sent to the model",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": true,
"example": "[{\"role\": \"user\", \"message\": \"hello\"}]"
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/gen_ai/gen_ai__request__messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The messages passed to the model. It has to be a stringified version of an array of objects. The \"content\" can be a string or an array of objects.",
"type": "string",
"pii": {
"key": "true"
"key": "maybe"
},
"is_in_otel": false,
"example": "[{\"role\": \"system\", \"content\": \"Generate a random number.\"}, {\"role\": \"user\", \"content\": [{\"text\": \"Generate a random number between 0 and 10.\", \"type\": \"text\"}]}]",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/gen_ai/gen_ai__response__text.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The model's response text messages. It has to be a stringified version of an array of response text messages.",
"type": "string",
"pii": {
"key": "true"
"key": "maybe"
},
"is_in_otel": false,
"example": "[\"The weather in Paris is rainy and overcast, with temperatures around 57°F\", \"The weather in London is sunny and warm, with temperatures around 65°F\"]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The tool calls in the model's response. It has to be a stringified version of an array of objects.",
"type": "string",
"pii": {
"key": "true"
"key": "maybe"
},
"is_in_otel": false,
"example": "[{\"name\": \"get_weather\", \"arguments\": {\"location\": \"Paris\"}}]",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/gen_ai/gen_ai__tool__input.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The input of the tool being used. It has to be a stringified version of the input to the tool.",
"type": "string",
"pii": {
"key": "true"
"key": "maybe"
},
"is_in_otel": false,
"example": "{\"location\": \"Paris\"}",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/gen_ai/gen_ai__tool__output.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The output of the tool being used. It has to be a stringified version of the output of the tool.",
"type": "string",
"pii": {
"key": "true"
"key": "maybe"
},
"is_in_otel": false,
"example": "rainy, 57°F",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/previous_route.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "Also used by mobile SDKs to indicate the previous route in the application.",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": false,
"example": "HomeScreen",
Expand Down
2 changes: 1 addition & 1 deletion model/attributes/route.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"brief": "The matched route, that is, the path template in the format used by the respective server framework. Also used by mobile SDKs to indicate the current route in the application.",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": false,
"example": "App\\Controller::indexAction",
Expand Down
6 changes: 3 additions & 3 deletions shared/deprecated_attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"brief": "The matched route, that is, the path template in the format used by the respective server framework. Also used by mobile SDKs to indicate the current route in the application.",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": false,
"example": "App\\Controller::indexAction",
Expand Down Expand Up @@ -422,7 +422,7 @@
"brief": "The method or function name, or equivalent (usually rightmost part of the code unit's name).",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": true,
"example": "server_request",
Expand Down Expand Up @@ -452,7 +452,7 @@
"brief": "The 'namespace' within which code.function is defined. Usually the qualified class or module name, such that code.namespace + some separator + code.function form a unique identifier for the code unit.",
"type": "string",
"pii": {
"key": "false"
"key": "maybe"
},
"is_in_otel": true,
"example": "http.handler",
Expand Down