mirror of
https://github.com/block/goose.git
synced 2026-04-30 20:49:36 +00:00
Add more posthog analytics (privacy aware) (#6122)
This commit is contained in:
parent
036f4f74d9
commit
8a91f15731
34 changed files with 1339 additions and 48 deletions
|
|
@ -2381,6 +2381,29 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/telemetry/event": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"super::routes::telemetry"
|
||||
],
|
||||
"operationId": "send_telemetry_event",
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/TelemetryEventRequest"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"responses": {
|
||||
"202": {
|
||||
"description": "Event accepted for processing"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/tunnel/start": {
|
||||
"post": {
|
||||
"tags": [
|
||||
|
|
@ -5301,6 +5324,21 @@
|
|||
"inlineMessage"
|
||||
]
|
||||
},
|
||||
"TelemetryEventRequest": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"event_name"
|
||||
],
|
||||
"properties": {
|
||||
"event_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"additionalProperties": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"TextContent": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue