-
Notifications
You must be signed in to change notification settings - Fork 37
Configurable baseDir and bastionBaseDir #189
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
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| # | ||
| # tlp_collector configuration file | ||
| # | ||
| # | ||
|
|
||
| # base cassandra log and configuration directories | ||
| # update if you aren't using the default directory | ||
| # | ||
| #logHome="/var/log/cassandra" | ||
| #configHome="/etc/cassandra" | ||
|
|
||
| # When the Cassandra nodes are inside docker containers | ||
| # Use docker commands to connect to nodes instead of ssh | ||
| # hostFile and hostName settings then need to use docker container IDs | ||
| # | ||
| # It is typical to also `skipSudo=true` (see below) on docker containers. | ||
| # | ||
| #use_docker="true" | ||
|
|
||
| # When the Cassandra nodes are inside kubernetes pods | ||
| # Use kubectl commands to connect to nodes instead of ssh | ||
| # hostFile and hostName settings then need to use k8s pod names | ||
| # | ||
| # It is typical to also `skipSudo=true` (see below) | ||
| # | ||
| #use_k8s="true" | ||
| #k8s_namespace="default" | ||
|
|
||
| # base ssh options, do not override defaults | ||
| # without completing a connection test | ||
| # | ||
| #sshOptionHostkeyCheck="false" | ||
| #sshOptionAgentForwarding="true" | ||
| #sshOptionVerbose="false" | ||
| #sshOptionConnectTimeout="true" | ||
| #sshOptionConnectAttempts="true" | ||
|
|
||
| # if an identity file to authenticate to the target nodes | ||
| # is needed, specify it in sshIdentity | ||
| # | ||
| #sshIdentity="" | ||
|
|
||
| # if using password authentication for ssh and scp, specify | ||
| # it in sshPassword (requires sshpass command) | ||
| # | ||
| sshPassword="root" | ||
|
|
||
| # add additional binary path if needed | ||
| # | ||
| addPath="/opt/java/openjdk/bin" | ||
|
|
||
| # specify additional ssh options as needed for your environment | ||
| # complete a connection test before adding extra options | ||
| # | ||
| sshArgs="-tt" | ||
| #scpArgs="-tt" | ||
|
|
||
| # if you want to specify a file containing a list of hosts | ||
| # use the qualified path to the list in hostFile | ||
| # | ||
| #hostFile="" | ||
|
|
||
| # if you only have a single target node you want to collect from | ||
| # you can enter the connection details here | ||
| # setting a hostFile above will take precedence | ||
| # | ||
| #hostName="" | ||
|
|
||
| # the user name to use when connecting to the target nodes(), | ||
| # the user should have sudo access. | ||
| # commenting userName will set the default to root | ||
| # | ||
| #userName="ubuntu" | ||
|
|
||
| # the provided issue id to reference the artifacts | ||
| # a generic issueId will be generated if not provided here | ||
| # | ||
| issueId="TEST_DS_COLLECTOR-000" | ||
|
|
||
| # the JMX port to connect to when when gathering metrics via JMX | ||
| # this will be the value that JMX_PORT is set to in the cassandra-env.sh file | ||
| # | ||
| #jmxPort="7199" | ||
| #jmxUsername="" | ||
| #jmxPassword="" | ||
|
|
||
| # skip iostat and vmstat collection | ||
| # | ||
| #skipStat="true" | ||
|
|
||
| # skip any calls that require sudo | ||
| # | ||
| #skipSudo="true" | ||
|
|
||
| # skip pushing artifacts to s3 | ||
| # | ||
| skipS3="true" | ||
|
|
||
| # uploads are encrypted by default | ||
| # | ||
| encrypt_uploads="false" | ||
|
|
||
| # skip deleting artifact from central host after successful push to s3 | ||
| # this will keep a local copy of the artifact on the central host | ||
| # | ||
| keepArtifact="true" | ||
|
|
||
| # s3 key | ||
| # default key provided, only use to override | ||
| # | ||
| #keyId="" | ||
| #keySecret="" | ||
|
|
||
| # s3 auth | ||
| # default is to use s3Auth to upload | ||
| # | ||
|
|
||
| # cqlsh authentication | ||
| # Used to extract the schema | ||
| #cqlshUsername="" | ||
| #cqlshPassword="" | ||
|
|
||
| # cqlsh SSL encryption | ||
| # | ||
| #$cqlshSSL="false" | ||
|
|
||
| baseDir="/tmp/datastax-different-directory" | ||
| bastionBaseDir="/tmp/datastax-yet-different-directory" |
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
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.
Uh oh!
There was an error while loading. Please reload this page.