Draft
Conversation
Implements the Loki integration (#2486) with: Backend: - Loki integration with URL + auth (none/basic/bearer) + optional tenant ID - Push Logs component: pushes log entries via POST /loki/api/v1/push - Query Logs component: queries logs via GET /loki/api/v1/query_range using LogQL - HTTP client with auth, tenant ID header, and response size limits - Comprehensive tests for integration, client, and both components Frontend: - Component mappers for Push Logs and Query Logs - Loki SVG icon - Integration registered in mapper index and icon registry Documentation: - Loki.mdx with connection instructions and component docs
Author
|
Cursor Agent can help with this pull request. Just |
Collaborator
|
/sp start |
13 similar comments
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
Collaborator
|
/sp start |
|
✅ SSH is available on the new machine. |
Collaborator
|
/sp start |
|
✅ SSH is available on the new machine. |
Collaborator
|
/sp stop |
Collaborator
|
/sp start |
|
✅ SSH is available on the new machine. |
Collaborator
|
/sp stop |
2 similar comments
Collaborator
|
/sp stop |
Collaborator
|
/sp stop |
Collaborator
|
/sp start |
|
✅ SSH is available on the new machine. |
Collaborator
|
/sp stop |
Collaborator
|
/sp start |
Collaborator
|
/sp stop |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: Implement Loki integration (issue #2486) to allow pushing and querying logs from Loki, following existing integration patterns.
The implementation includes backend components for authentication, pushing logs (
loki.pushLogs), and querying logs (loki.queryLogs), along with comprehensive unit tests. Frontend mappers, a Loki SVG icon, and documentation have also been added to provide a complete integration experience.