-
Notifications
You must be signed in to change notification settings - Fork 105
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
add logging for remote monitor execution flows #1663
Conversation
Signed-off-by: Surya Sashank Nistala <[email protected]>
@@ -49,7 +49,7 @@ open class RemoteMonitorRunner { | |||
} | |||
|
|||
open fun getFanOutAction(): String { | |||
return DocLevelMonitorFanOutAction.NAME | |||
throw UnsupportedOperationException("Fan out action needs to be implemented by remote monitor."); |
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.
Why is this being thrown as an exception now instead of returning the name?
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.
this class needs to be implemented and registered at
public Map<String, RemoteMonitorRunner> getMonitorTypesToMonitorRunners()
in Plugin
should not have a default fan out action. needs to be specified by the new monitor created by extending this class
Signed-off-by: Surya Sashank Nistala <[email protected]> (cherry picked from commit ba3e715) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Signed-off-by: Surya Sashank Nistala <[email protected]> (cherry picked from commit ba3e715) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Signed-off-by: Surya Sashank Nistala <[email protected]> (cherry picked from commit ba3e715) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit ba3e715) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit ba3e715) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit ba3e715) Signed-off-by: Surya Sashank Nistala <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
add logging for remote monitor execution flows