-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat: add page for ai-bridge interception logs #20331
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
Merged
Merged
Conversation
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
request logs routingrequest logs routing
321ce8c to
cd9b38b
Compare
jakehwll
added a commit
that referenced
this pull request
Oct 23, 2025
…#20410) Thanks to the great work in #20393, we’ve successfully introduced offset-based pagination for this endpoint. However, the frontend expects a `count` field in the response rather than `total`. This PR updates the response payload to rename the returned key to `count` for consistency with frontend expectations and existing API patterns. This is necessary to unblock the work in #20331
Member
|
also, the pr title may pass the bots vibe check but it's not very clear to me. maybe something like...
|
jaaydenh
reviewed
Oct 30, 2025
site/src/pages/AIGovernancePage/RequestLogsPage/RequestLogsRow/RequestLogsRow.tsx
Outdated
Show resolved
Hide resolved
jaaydenh
reviewed
Oct 30, 2025
jaaydenh
reviewed
Oct 30, 2025
site/src/pages/AIGovernancePage/RequestLogsPage/RequestLogsRow/RequestLogsRow.tsx
Outdated
Show resolved
Hide resolved
jaaydenh
reviewed
Oct 30, 2025
request logs routing
jakehwll
added a commit
that referenced
this pull request
Oct 31, 2025
Resolved issue from #20331 where the article `an` was incorrectly used before words not beginning with a vowel sound. Updated affected instances to use the correct article `a`. ```diff - You need an Premium license to use this feature. + You need a Premium license to use this feature. ``` This was already correct on the following pages. * [`ConnectionLogPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/ConnectionLogPage/ConnectionLogPageView.tsx#L130) * [`GroupsPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/GroupsPage/GroupsPageView.tsx#L49)
david-fraley
approved these changes
Oct 31, 2025
jaaydenh
approved these changes
Oct 31, 2025
jakehwll
added a commit
that referenced
this pull request
Nov 11, 2025
Resolved issue from #20331 where the article `an` was incorrectly used before words not beginning with a vowel sound. Updated affected instances to use the correct article `a`. ```diff - You need an Premium license to use this feature. + You need a Premium license to use this feature. ``` This was already correct on the following pages. * [`ConnectionLogPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/ConnectionLogPage/ConnectionLogPageView.tsx#L130) * [`GroupsPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/GroupsPage/GroupsPageView.tsx#L49)
a2a08c7 to
a115cc9
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Relates #20287
This pull-request introduces a basic routing for
AI Governance's Request Logs feature. Currently we're just pulling back the basics from the database and rendering it into the table. Nothing exciting.The idea is to extend further upon the
/aigovernanceroute so it has been appropriately wrapped with a<AIGovernanceLayout />to introduce a navigation later.