-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(quickwit): add quickwit integration
Signed-off-by: Idriss Neumann <idriss.neumann@comwork.io>
- Loading branch information
1 parent
5e62411
commit 7cfbb09
Showing
25 changed files
with
548 additions
and
31 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
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"doc_mapping": { | ||
"dynamic_mapping": { | ||
"description": "alerts from elastalert2", | ||
"expand_dots": true, | ||
"fast": true, | ||
"indexed": true, | ||
"record": "basic", | ||
"stored": true, | ||
"tokenizer": "raw" | ||
}, | ||
"field_mappings": [ | ||
{ | ||
"name": "rule_name", | ||
"type": "text" | ||
}, | ||
{ | ||
"name": "aggregate_id", | ||
"type": "text" | ||
}, | ||
{ | ||
"name": "alert_time", | ||
"type": "datetime" | ||
}, | ||
{ | ||
"name": "match_time", | ||
"type": "datetime" | ||
}, | ||
{ | ||
"name": "match_body", | ||
"type": "json" | ||
}, | ||
{ | ||
"name": "@timestamp", | ||
"type": "datetime", | ||
"fast": true | ||
} | ||
], | ||
"store_source": true, | ||
"timestamp_field": "@timestamp" | ||
}, | ||
"index_id": "elastalert", | ||
"search_settings": { | ||
"default_search_fields": [ | ||
"rule_name", | ||
"aggregate_id", | ||
"alert_time", | ||
"match_time", | ||
"@timestamp" | ||
] | ||
}, | ||
"version": "0.8" | ||
} |
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,33 @@ | ||
{ | ||
"doc_mapping": { | ||
"dynamic_mapping": { | ||
"description": "errors from elastalert2", | ||
"expand_dots": true, | ||
"fast": true, | ||
"indexed": true, | ||
"record": "basic", | ||
"stored": true, | ||
"tokenizer": "raw" | ||
}, | ||
"field_mappings": [ | ||
{ | ||
"name": "data", | ||
"type": "json" | ||
}, | ||
{ | ||
"name": "@timestamp", | ||
"type": "datetime", | ||
"fast": true | ||
} | ||
], | ||
"store_source": true, | ||
"timestamp_field": "@timestamp" | ||
}, | ||
"index_id": "elastalert_error", | ||
"search_settings": { | ||
"default_search_fields": [ | ||
"@timestamp" | ||
] | ||
}, | ||
"version": "0.8" | ||
} |
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,34 @@ | ||
{ | ||
"doc_mapping": { | ||
"dynamic_mapping": { | ||
"description": "status alerts from elastalert2", | ||
"expand_dots": true, | ||
"fast": true, | ||
"indexed": true, | ||
"record": "basic", | ||
"stored": true, | ||
"tokenizer": "raw" | ||
}, | ||
"field_mappings": [ | ||
{ | ||
"name": "rule_name", | ||
"type": "text" | ||
}, | ||
{ | ||
"name": "@timestamp", | ||
"type": "datetime", | ||
"fast": true | ||
} | ||
], | ||
"store_source": true, | ||
"timestamp_field": "@timestamp" | ||
}, | ||
"index_id": "elastalert_status", | ||
"search_settings": { | ||
"default_search_fields": [ | ||
"rule_name", | ||
"@timestamp" | ||
] | ||
}, | ||
"version": "0.8" | ||
} |
Oops, something went wrong.