-
Notifications
You must be signed in to change notification settings - Fork 475
[HIG-4596] related resources from metric dashboards #8991
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
Conversation
|
| store.DB.Create(&errorObject) | ||
| ids := []int64{int64(errorObject.ID)} | ||
| results, err := store.ListErrorObjects(context.TODO(), errorGroup, ids, 1) | ||
| results, err := store.ListErrorObjects(context.TODO(), ids, 1) |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
| store.DB.Create(&errorObject) | ||
| ids := []int64{int64(errorObject.ID)} | ||
| results, err := store.ListErrorObjects(context.TODO(), errorGroup, ids, 71) | ||
| results, err := store.ListErrorObjects(context.TODO(), ids, 71) |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
|
|
||
| // No error objects | ||
| results, err := store.ListErrorObjects(context.TODO(), errorGroup, make([]int64, 0), 0) | ||
| results, err := store.ListErrorObjects(context.TODO(), make([]int64, 0), 0) |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality
SpennyNDaJets
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
|
monorepo step failing - continuing because there are no new npm versions |
Summary
RelatedResourceList- borrows heavily from the existingTracesTablebut allows for different columns to be used depending on the resourceHow did you test this change?
Are there any deployment considerations?
Does this work require review from our design team?