-
Notifications
You must be signed in to change notification settings - Fork 913
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 monitor module #737
add monitor module #737
Conversation
this module's feature: 1. get all SQL's data in runtime 2. monitor the sqlOperation 3. for auto-configuring
kyuubi-monitor/README.md
Outdated
@@ -0,0 +1 @@ | |||
## for kyuubi-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.
##
-> #
we can add some simple description in this md. For example:
This module is used to monitor kyuubi which include kyuubi server and kyuubi engine.
Codecov Report
@@ Coverage Diff @@
## master #737 +/- ##
=======================================
Coverage 80.49% 80.49%
=======================================
Files 122 122
Lines 4748 4748
Branches 576 576
=======================================
Hits 3822 3822
Misses 605 605
Partials 321 321
Continue to review full report at Codecov.
|
kyuubi-monitor/pom.xml
Outdated
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>kyuubi-monitor</artifactId> |
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.
kyuubi-spark-monitor
kyuubi-monitor/pom.xml
Outdated
|
||
<artifactId>kyuubi-monitor</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Kyuubi Project Monitor</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.
Kyuubi Project Spark Monitor
pom.xml
Outdated
@@ -35,6 +35,7 @@ | |||
<module>kyuubi-main</module> | |||
<module>kyuubi-metrics</module> | |||
<module>kyuubi-zookeeper</module> | |||
<module>kyuubi-monitor</module> |
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.
move up to L37
@@ -28,6 +28,7 @@ | |||
<module>dev/kyuubi-codecov</module> | |||
<module>externals/kyuubi-download</module> | |||
<module>externals/kyuubi-spark-sql-engine</module> | |||
<module>externals/kyuubi-spark-monitor</module> |
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.
Sort alphabetically
Thanks, merged! |
This module's feature: