-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from Issif/v2.5.0
## 2.5.0 - 2019-08-12 #### New - New output : **AWS Lambda** - New output : **AWS SQS** ([issue #5](https://github.com/Issif/falcosidekick/issues/5)) - New output : **Teams** ([issue #30](https://github.com/Issif/falcosidekick/issues/30)) - A github page has been created : https://issif.github.io/falcosidekick/ #### Enhancement - Slack tests are now consistant (order of fields in JSON output wasn't always the same, tests failed sometimes for that) - README : clean up of several typos
- Loading branch information
Showing
22 changed files
with
640 additions
and
70 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 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 |
---|---|---|
@@ -1,35 +1,52 @@ | ||
#listenport: 2801 #port to listen for daemon (default: 2801) | ||
debug: false #if true all outputs will print in stdout the payload they send (default: false) | ||
customfields: #custom fields are added to falco events | ||
#listenport: 2801 # port to listen for daemon (default: 2801) | ||
debug: false # if true all outputs will print in stdout the payload they send (default: false) | ||
customfields: # custom fields are added to falco events | ||
Akey: "AValue" | ||
Bkey: "BValue" | ||
Ckey: "CValue" | ||
|
||
slack: | ||
webhookurl: "" #Slack WebhookURL (ex: https://hooks.slack.com/services/XXXX/YYYY/ZZZZ), if not empty, Slack output is enabled | ||
#footer: "" #Slack footer | ||
#icon: "" #Slack icon (avatar) | ||
outputformat: "text" #all (default), text, fields | ||
minimumpriority: "debug" #minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
webhookurl: "" # Slack WebhookURL (ex: https://hooks.slack.com/services/XXXX/YYYY/ZZZZ), if not empty, Slack output is enabled | ||
#footer: "" # Slack footer | ||
#icon: "" # Slack icon (avatar) | ||
outputformat: "text" # all (default), text, fields | ||
minimumpriority: "debug" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
|
||
teams: | ||
webhookurl: "" # Teams WebhookURL (ex: https://hooks.slack.com/services/XXXX/YYYY/ZZZZ), if not empty, Teams output is enabled | ||
#activityimage: "" # Image for message section | ||
outputformat: "text" # all (default), text, facts | ||
minimumpriority: "debug" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
|
||
datadog: | ||
#apikey: "" #Datadog API Key, if not empty, Datadog output is enabled | ||
# minimumpriority: "" #minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
#apikey: "" # Datadog API Key, if not empty, Datadog output is enabled | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
|
||
alertmanager: | ||
# hostport: "" # http://{domain or ip}:{port}, if not empty, Alertmanager output is enabled | ||
# minimumpriority: "" #minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
|
||
elasticsearch: | ||
# hostport: "" # http://{domain or ip}:{port}, if not empty, Elasticsearch output is enabled | ||
# index: "falco" # index (default: falco) | ||
# type: "event" | ||
# minimumpriority: "" #minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
# suffix: "daily" #date suffix for index rotation : daily (default), monthly, annually, none | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
# suffix: "daily" # date suffix for index rotation : daily (default), monthly, annually, none | ||
|
||
influxdb: | ||
# hostport: "" # http://{domain or ip}:{port}, if not empty, Influxdb output is enabled | ||
# database: "falco" # Influxdb database (default: falco) | ||
# user: "" # user to use if auth is enabled in Influxdb | ||
# password: "" # pasword to use if auth is enabled in Influxdb | ||
# minimumpriority: "" #minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
|
||
aws: | ||
# accesskeyid: "" # aws access key (optionnal if you use EC2 Instance Profile) | ||
# secretaccesskey: "" # aws secret access key (optionnal if you use EC2 Instance Profile) | ||
# region : "" # aws region (optionnal if you use EC2 Instance Profile) | ||
lambda: | ||
# functionname : "" # Lambda function name, if not empty, AWS Lambda output is enabled | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) | ||
sqs: | ||
# url : "" # SQS Queue URL, if not empty, AWS SQS output is enabled | ||
# minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informationnal|debug or "" (default) |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
apiVersion: v1 | ||
appVersion: "2.4.0" | ||
appVersion: "2.5.0" | ||
description: A simple daemon to help you with falco's outputs | ||
icon: https://raw.githubusercontent.com/Issif/falcosidekick/master/imgs/falcosidekick.png | ||
name: falcosidekick | ||
version: 0.1.0 | ||
version: 0.1.1 | ||
maintainers: | ||
- name: SweetOps | ||
- name: Issif |
Oops, something went wrong.