-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Collect logs per session individually #2225
base: main
Are you sure you want to change the base?
Conversation
3060c0a
to
858340d
Compare
Bundle ReportBundle size has no change ✅ |
The generated OpenAPI client is not up to date with the latest changes in the OpenAPI specification. |
API Changelog 4.18.2.dev9+gf4cce811GET /api/v1/projects/{project_slug}/models
POST /api/v1/projects/{project_slug}/models
GET /api/v1/projects/{project_slug}/models/{model_slug}
PATCH /api/v1/projects/{project_slug}/models/{model_slug}
GET /api/v1/projects/{project_slug}/models/{model_slug}/provisioning
GET /api/v1/projects/{project_slug}/tools
POST /api/v1/projects/{project_slug}/tools
GET /api/v1/sessions
POST /api/v1/sessions
GET /api/v1/sessions/{session_id}
GET /api/v1/tools
POST /api/v1/tools
GET /api/v1/tools/*/versions
GET /api/v1/tools/default
GET /api/v1/tools/{tool_id}
PUT /api/v1/tools/{tool_id}
GET /api/v1/users/{user_id}/sessions
|
This comment has been minimized.
This comment has been minimized.
A Storybook preview is available for commit f4cce81. |
This comment has been minimized.
This comment has been minimized.
Logs are collected from `/var/log/session` instead of the custom paths. This enabled better separation between logs for specific sessions. Also enables support for logs in read-only sessions. Signed-off-by: MoritzWeber <[email protected]>
858340d
to
add7cda
Compare
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## bump-grafana-loki #2225 +/- ##
=====================================================
+ Coverage 87.62% 87.64% +0.01%
=====================================================
Files 240 240
Lines 8268 8269 +1
Branches 568 567 -1
=====================================================
+ Hits 7245 7247 +2
+ Misses 863 862 -1
Partials 160 160 ☔ View full report in Codecov by Sentry. |
Logs are collected from
/var/log/session
instead of the custom paths. This enabled better separation between logs for specific sessions. Also enables support for logs in read-only sessions.Requires DSD-DBS/capella-dockerimages#386 for continuous log collection.