-
Notifications
You must be signed in to change notification settings - Fork 94
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
Accept of list of monitor ids in findings and alerts request dtos #277
Conversation
Signed-off-by: Surya Sashank Nistala <[email protected]>
|
||
class GetAlertsRequest : ActionRequest { | ||
val table: Table | ||
val severityLevel: String | ||
val alertState: String | ||
val monitorId: String? | ||
val alertIndex: String? | ||
val monitorIds: List<String>? |
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.
If we've defined monitorIds
as nullable here, we should also make it nullable in the constructor (or non-nullable for both so it's consistent)
Same goes for the GetFindingsRequest
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.
ack. done
Signed-off-by: Surya Sashank Nistala <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #277 +/- ##
============================================
+ Coverage 71.42% 71.52% +0.09%
- Complexity 662 666 +4
============================================
Files 108 108
Lines 4466 4477 +11
Branches 605 605
============================================
+ Hits 3190 3202 +12
+ Misses 1025 1024 -1
Partials 251 251
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
…ensearch-project#277) Signed-off-by: Surya Sashank Nistala <[email protected]>
…) (#278) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: Surya Sashank Nistala <[email protected]>
…ensearch-project#277) (opensearch-project#278) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: Surya Sashank Nistala <[email protected]>
…ensearch-project#277) (opensearch-project#278) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: AWSHurneyt <[email protected]>
Signed-off-by: Surya Sashank Nistala [email protected]
Relates to :
[FEATURE] Support fetching bulk alerts for multiple monitors in get alerts API #587
[FEATURE]Support fetching bulk findings for multiple monitors in get findings API #588