-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Improve couchbase module #3545
Improve couchbase module #3545
Conversation
ruflin
commented
Feb 7, 2017
- Fix typo spacial to spatial. Change fieldnames couchbase.node.couch..actual_disk_size. to couchbase.node.couch..disk_size. for consistency.
- Add system tests to verify docs
- Update data.json
* Fix typo spacial to spatial. Change fieldnames couchbase.node.couch.*.actual_disk_size.* to couchbase.node.couch.*.disk_size.* for consistency. * Add system tests to verify docs * Update data.json
4c7446b
to
9f1787c
Compare
@@ -625,14 +625,14 @@ | |||
}, | |||
"views": { | |||
"properties": { | |||
"actual_disk_size": { | |||
"data_size": { |
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.
isn't disk_size
instead of data_size
?
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.
The diff is confusing here. disk_size
is acutally on like 635 and data_size
was moved up here (alphabetical sorting).
"properties": { | ||
"bytes": { | ||
"type": "long" | ||
} | ||
} | ||
}, | ||
"data_size": { | ||
"disk_size": { |
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.
Is this by intention?
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.
See comment above.