-
Notifications
You must be signed in to change notification settings - Fork 8
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 cpu_info, describecluster and Sstable cluster #3
base: main
Are you sure you want to change the base?
Conversation
|
@@ -7,7 +7,7 @@ LOG_PATH=/var/log/cassandra | |||
|
|||
#List of data directories; if more than one list all with delimiter ',' | |||
#e.g. DATA_PATHS=path/to/dir1,path/to/dir2 | |||
DATA_PATHS=/var/lib/cassandra/data/data | |||
DATA_PATHS=/var/lib/cassandra/data |
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.
Fix default path
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.
Seems default for DSE, apache cassandra, Ubuntu distro all use /var/lib/cassandra/data
rather than /var/lib/cassandra/data/data
node_collector.sh
Outdated
@@ -25,7 +34,7 @@ local config_files=("$CONFIG_PATH/cassandra.yaml" "$CONFIG_PATH/cassandra-env.sh | |||
|
|||
if [ "$GC_LOGGING_ENABLED" == "yes" ] | |||
then | |||
config_files+=( "$GC_LOG_PATH/gc.log*" ) | |||
config_files+=( "$GC_LOG_PATH/gc.log*" ) |
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.
Replace tab with 4 spaces
Murilo has recently added a few different things as a PR. |
This is a modified version from Div's initial changes