-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Add labels to sys.server #18547
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
Merged
Merged
Add labels to sys.server #18547
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
b2d8bb8
Add labels to servers
GabrielCWT 71e549f
Add labels to FE
GabrielCWT 7dee2ca
Fix missing assignment to labels variable
GabrielCWT 1c24c13
Update docs
GabrielCWT 22de456
Remove labels default value
GabrielCWT da63bf9
Return labels as JSON object instead of string
GabrielCWT 69a6025
Fix checkstyle
GabrielCWT 8113e17
Update tests
GabrielCWT adb0f92
Revert Intellij change
GabrielCWT 34e5656
Update spelling
GabrielCWT 71fddfb
Update IT json
GabrielCWT 440be3b
Fix format for scss
GabrielCWT 0b8e2c2
Update snapshot
GabrielCWT fec3d61
Fix based on comments
GabrielCWT 466e00f
Add DruidNode tests
GabrielCWT 01f49f0
Refactor to use JacksonUtils.writeValueAsString
GabrielCWT b722389
Remove unused case for columnType
GabrielCWT ff9bed7
Update services-view to expect string return for labels
GabrielCWT 8ae4dfd
Throw InternalServerError instead of InvalidInput
GabrielCWT b0cc6b6
Merge branch 'master' into gh-82-add-label
GabrielCWT 89d4d19
Update snapshot and format
GabrielCWT b03bc3d
Update test with new row size
GabrielCWT 5cda052
Hide labels during aggregation
GabrielCWT 632be3e
Merge branch 'master' into gh-82-add-label
GabrielCWT 2261145
Merge branch 'master' into gh-82-add-label
GabrielCWT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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.
Currently all variables are being assigned in the
init
function, this prevents the object's variables from being final. I will be following this convention and as such not be assigningfinal
to the variableThere 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.
Ah, I missed the
init()
call.final
is always better for such bean fields.But you are right, we cannot do it in this PR.