-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This merge will restore broken metrics functionality
Define metrics using the a hierarchy syslogng.${SourceName} emulating Splunk Connect for Kafka
Configure persistant queuing
Define a new dest for metrics
Remove early metrics collection scripts- Loading branch information
Ryan Faircloth
authored and
GitHub
committed
Jul 30, 2019
1 parent
422071a
commit 8d73e1d
Showing
22 changed files
with
286 additions
and
64 deletions.
There are no files selected for viewing
This file contains 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,77 @@ | ||
| #Splunk Connect for Syslog (SC4S) by Splunk, Inc. | ||
| # | ||
| #To the extent possible under law, the person who associated CC0 with | ||
| #Splunk Connect for Syslog (SC4S) has waived all copyright and related or neighboring rights | ||
| #to Splunk Connect for Syslog (SC4S). | ||
| # | ||
| #You should have received a copy of the CC0 legalcode along with this | ||
| #work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | ||
| version: "3" | ||
| services: | ||
| sc4s: | ||
| image: rfaircloth/scs:edge | ||
| build: | ||
| context: ./package | ||
| args: | ||
| RH_ORG: ${RH_ORG} | ||
| RH_ACTIVATION: ${RH_ACTIVATION} | ||
| hostname: sc4s | ||
| ports: | ||
| - "514" | ||
| - "601" | ||
| - "514/udp" | ||
| - "5514" | ||
| - "5514/udp" | ||
| links: | ||
| - splunk | ||
| environment: | ||
| - SPLUNK_HEC_URL=${SPLUNK_HEC_URL} | ||
| - SPLUNK_HEC_STATSURL=${SPLUNK_HEC_STATSURL} | ||
| - SPLUNK_HEC_TOKEN=${SPLUNK_HEC_TOKEN} | ||
| - SPLUNK_CONNECT_METHOD=${SPLUNK_CONNECT_METHOD} | ||
| - SPLUNK_DEFAULT_INDEX=${SPLUNK_DEFAULT_INDEX} | ||
| - SPLUNK_METRICS_INDEX=${SPLUNK_DEFAULT_INDEX} | ||
| # logging: | ||
| # driver: splunk | ||
| # options: | ||
| # splunk-token: a778f63a-5dff-4e3c-a72c-a03183659e94 | ||
| # splunk-url: https://splunk:8088/services/collector/event | ||
| # splunk-index: main | ||
| # splunk-insecureskipverify: true | ||
| # splunk-verify-connection: false | ||
| splunk: | ||
| image: splunk/splunk:latest | ||
| hostname: splunk | ||
| ports: | ||
| - "8000:8000" | ||
| - "8088:8088" | ||
| - "8089:8089" | ||
| environment: | ||
| - SPLUNK_HEC_TOKEN=${SPLUNK_HEC_TOKEN} | ||
| - SPLUNK_PASSWORD=${SPLUNK_PASSWORD} | ||
| - SPLUNK_START_ARGS=${SPLUNK_START_ARGS} | ||
| - SPLUNK_APPS_URL=${SPLUNK_APPS_URL} | ||
| - SPLUNKBASE_USERNAME=${SPLUNKBASE_USERNAME} | ||
| - SPLUNKBASE_PASSWORD=${SPLUNKBASE_PASSWORD} | ||
| # logging: | ||
| # driver: splunk | ||
| # options: | ||
| # splunk-token: a778f63a-5dff-4e3c-a72c-a03183659e94 | ||
| # splunk-url: https://splunk:8088/services/collector/event | ||
| # splunk-index: main | ||
| # splunk-insecureskipverify: true | ||
| # splunk-verify-connection: false | ||
| egbundles: | ||
| image: rfaircloth/scs:egb-edge | ||
| hostname: egbundles | ||
| build: | ||
| context: perftests/bundlesrv | ||
| eventgen: | ||
| image: rfaircloth/eventgen:edge | ||
| command: standalone | ||
| ports: | ||
| - "9500:9500" | ||
| links: | ||
| - egbundles | ||
| - sc4s | ||
|
|
This file contains 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 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 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 |
|---|---|---|
|
|
@@ -20,5 +20,5 @@ log { | |
|
|
||
| destination(d_hec); #--HEC-- | ||
|
|
||
| flags(final); | ||
| flags(flow-control,final); | ||
| }; | ||
This file contains 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 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 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 |
|---|---|---|
|
|
@@ -57,5 +57,5 @@ log { | |
|
|
||
| destination(d_hec); #--HEC-- | ||
|
|
||
| flags(final); | ||
| flags(flow-control,final); | ||
| }; | ||
This file contains 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 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 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.