-
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.
v0.4.0
- Add source support for Cisco NX
- Add source support for Symantec Proxy SG and ASG (Formerly bluecoat)
- Add support for mapping network source IP OR parsed host to specific vendor product where MSG parsing is impossible
- Code cleanup and simplification
- Begin using SEMVER for releases- Loading branch information
Ryan Faircloth
authored and
GitHub
committed
Aug 27, 2019
1 parent
8f38c19
commit cb8ebde
Showing
71 changed files
with
1,323 additions
and
665 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,6 @@ | ||
| 0.4.0 | ||
| - Add source support for Cisco NX | ||
| - Add source support for Symantec Proxy SG and ASG (Formerly bluecoat) | ||
| - Add support for mapping network source IP OR parsed host to specific vendor product where MSG parsing is impossible | ||
| - Code cleanup and simplification | ||
| - Begin using SEMVER for releases |
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 |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| #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.2" | ||
| services: | ||
|
|
||
| sc4s: | ||
| image: splunk/scs:latest | ||
| build: | ||
| context: ./package | ||
| args: | ||
| RH_ORG: ${RH_ORG} | ||
| RH_ACTIVATION: ${RH_ACTIVATION} | ||
| entrypoint: | ||
| - "tail" | ||
| - "-f" | ||
| - "/dev/null" | ||
| hostname: sc4s | ||
| ports: | ||
| - "514" | ||
| - "601" | ||
| - "514/udp" | ||
| - "5514" | ||
| - "5514/udp" | ||
| stdin_open: true | ||
| tty: true | ||
| 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} | ||
| 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} | ||
| volumes: | ||
| - ./splunk/SA-syslog-ng:/opt/splunk/etc/apps/SA-syslog-ng |
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.