-
Notifications
You must be signed in to change notification settings - Fork 162
feat(audit-trail): improve visualization for event list #4579
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
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4d871f7
feat(audit-trail): improve visualization for event list
4f1d9ca
Update internal/namespaces/audit_trail/v1alpha1/custom_event.go
remyleone 530654d
Update internal/namespaces/audit_trail/v1alpha1/custom_event.go
remyleone 9fa838f
Update internal/namespaces/audit_trail/v1alpha1/custom_event.go
remyleone f8bd24c
Merge branch 'master' into event_list
remyleone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| package audit_trail | ||
|
|
||
| import ( | ||
| "context" | ||
|
|
||
| "github.com/scaleway/scaleway-cli/v2/core" | ||
| audit_trail "github.com/scaleway/scaleway-sdk-go/api/audit_trail/v1alpha1" | ||
| ) | ||
|
|
||
| func eventListBuilder(c *core.Command) *core.Command { | ||
| c.View = &core.View{ | ||
| Fields: []*core.ViewField{ | ||
| { | ||
| Label: "Recorded at", | ||
| FieldName: "RecordedAt", | ||
| }, | ||
| { | ||
| Label: "Name", | ||
| FieldName: "Resource.Name", | ||
| }, | ||
| { | ||
| Label: "StatusCode", | ||
| FieldName: "StatusCode", | ||
| }, | ||
| { | ||
| Label: "MethodName", | ||
| FieldName: "MethodName", | ||
| }, | ||
| { | ||
| Label: "Principal", | ||
| FieldName: "Principal.ID", | ||
| }, | ||
| { | ||
| Label: "Source IP", | ||
|
remyleone marked this conversation as resolved.
Outdated
|
||
| FieldName: "SourceIP", | ||
| }, | ||
| { | ||
| Label: "ProjectID", | ||
| FieldName: "ProjectID", | ||
| }, | ||
| { | ||
| Label: "ProductName", | ||
| FieldName: "ProductName", | ||
| }, | ||
| { | ||
| Label: "RequestBody", | ||
| FieldName: "RequestBody", | ||
| }, | ||
| { | ||
| Label: "RequestID", | ||
| FieldName: "RequestID", | ||
| }, | ||
| { | ||
| Label: "User-Agent", | ||
| FieldName: "UserAgent", | ||
| }, | ||
| { | ||
| Label: "ID", | ||
| FieldName: "ID", | ||
| }, | ||
| { | ||
| Label: "ServiceName", | ||
| FieldName: "ServiceName", | ||
| }, | ||
| { | ||
| Label: "Type", | ||
| FieldName: "Resource.Type", | ||
| }, | ||
| { | ||
| Label: "Resource ID", | ||
|
remyleone marked this conversation as resolved.
Outdated
|
||
| FieldName: "Resource.ID", | ||
| }, | ||
| { | ||
| Label: "Resource Created At", | ||
|
remyleone marked this conversation as resolved.
|
||
| FieldName: "Resource.CreatedAt", | ||
| }, | ||
| { | ||
| Label: "Resource Updated At", | ||
|
remyleone marked this conversation as resolved.
|
||
| FieldName: "Resource.UpdatedAt", | ||
| }, | ||
| }, | ||
| } | ||
|
|
||
| c.AddInterceptors(func(ctx context.Context, argsI interface{}, runner core.CommandRunner) (interface{}, error) { | ||
| originalRes, err := runner(ctx, argsI) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| eventsResponse := originalRes.(*audit_trail.ListEventsResponse) | ||
|
|
||
| return eventsResponse.Events, nil | ||
| }) | ||
|
|
||
| return c | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.