-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GenAI][Integrations] Add telemetry to the integration assistant (#18…
…6654) ## Summary Adds telemetry to the Integration assistant. **Staging dashboard**: https://telemetry-v2-staging.elastic.dev/s/securitysolution/app/r/s/nJaND ### Event definitions ``` 'upload_integration_zip_complete' { integrationName?: string; errorMessage?: string; } ``` ``` 'integration_assistant_open' { sessionId: string; // Unique identifier to represent the current generation session } ``` ``` 'integration_assistant_step_complete' { sessionId: string; step: number; // the step number (1-4) stepName: string; durationMs: number; // Time spent in the current step sessionElapsedTime: number; // Total time spent in the current generation session } ``` ``` 'integration_assistant_generation_complete' { sessionId: string; sampleRows: number; // number of rows in the logs sample (1-10) durationMs: number; actionTypeId: string; // connector type (bedrock, gen-ai, gemini) model: string; // LLM used (claude 3 opus, ...) provider: string; // API provider (only for OpenAI) errorMessage?: string; } ``` ``` 'integration_assistant_complete' { sessionId: string; durationMs: number; integrationName: string; integrationDescription: string; dataStreamName: string; inputType: string; actionTypeId: string; // connector type (bedrock, gen-ai, gemini) model: string; // LLM used (claude 3 opus, claude 3.5 sonnet ...) provider: string; // API provider (only for OpenAI) errorMessage?: string; } ``` --------- Co-authored-by: Kibana Machine <[email protected]>
- Loading branch information
1 parent
1e4dba7
commit 2ed3609
Showing
29 changed files
with
677 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.