Follow: https://docs.datastax.com/en/opscenter/5.0/opsc/configure/opscEnableSSLpkg.html
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
| package com.github.ibspoof.connection; | |
| import com.datastax.driver.core.*; | |
| import com.datastax.driver.core.policies.*; | |
| import java.util.concurrent.TimeUnit; | |
| public class ConnectionExample { | |
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
| filter { | |
| if [type] == "cassandralog" { | |
| grok { | |
| break_on_match => true | |
| match => { | |
| "message" => [ | |
| "%{CASS_COMPACTION_LARGE_KEY}", | |
| "%{CASS_SLAB_POOL_CLEANER_1}", | |
| "%{CASS_SLAB_POOL_CLEANER_2}", |
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
| [posturl] | |
| enabled=1 | |
| # levels can be comma delimited list of any of the following: | |
| # DEBUG,INFO,WARN,ERROR,CRITICAL,ALERT | |
| # If left empty, will listen for all levels | |
| levels= | |
| # clusters is a comma delimited list of cluster names for which | |
| # this alert config will be eligible to run. |
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
| /*global $:false */ | |
| var path = require('path'); | |
| var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet; | |
| var folderMount = function folderMount(connect, point) | |
| { | |
| return connect.static(path.resolve(point)); | |
| }; |
NewerOlder