-
Notifications
You must be signed in to change notification settings - Fork 988
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
[feature] Add presto db monitor #2234
Conversation
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.
Thank you for your contribution.
There are currently few monitoring indicators, It is recommended to add more, so that it can be better applied:
For example, the monitoring content of /v1/cluster
includes:
{
"runningQueries": 0,
"blockedQueries": 0,
"queuedQueries": 0,
"activeWorkers": 1,
"runningDrivers": 0,
"runningTasks": 0,
"reservedMemory": 0,
"totalInputRows": 188406087,
"totalInputBytes": 466434168,
"totalCpuTimeSecs": 9,
"adjustedQueueSize": 0
}
You can refer to the official documentation:
https://prestodb.io/docs/current/rest/node.html
https://prestodb.io/docs/current/rest/query.html
https://prestodb.io/docs/current/rest/stage.html
https://prestodb.io/docs/current/rest/statement.html
https://prestodb.io/docs/current/rest/task.html
|
@TJxiaobao please,cr |
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.
Cool!👍
add PrestoDB monitor and doc