-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Moved back the configuration steps business logic into their own component - Added support for severity and source types in the fetch event requests - Created components for severity options and a source type list - Created a constants file - Block the user from going to the next step if the form isn't valid
- Loading branch information
Marc-Antoine Hinse
committed
Nov 26, 2024
1 parent
7ee82cc
commit 97d9b2a
Showing
35 changed files
with
1,129 additions
and
311 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
15 changes: 15 additions & 0 deletions
15
packages/flare/src/main/resources/splunk/default/restmap.conf
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,4 +1,19 @@ | ||
[script:flare_external_requests_api_key_validation] | ||
match=/fetch_api_key_validation | ||
handler=flare_external_requests.FlareValidateApiKey | ||
python.version = python3 | ||
|
||
[script:flare_external_requests_user_tenants] | ||
match=/fetch_user_tenants | ||
handler=flare_external_requests.FlareUserTenants | ||
python.version = python3 | ||
|
||
[script:flare_external_requests_filters_severities] | ||
match=/fetch_filters_severities | ||
handler=flare_external_requests.FlareFiltersSeverity | ||
python.version = python3 | ||
|
||
[script:flare_external_requests_filters_source_types] | ||
match=/fetch_filters_source_types | ||
handler=flare_external_requests.FlareFiltersSourceTypes | ||
python.version = python3 |
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,3 +1,15 @@ | ||
[expose:flare_external_requests_api_key_validation] | ||
pattern=fetch_api_key_validation | ||
methods=POST | ||
|
||
[expose:flare_external_requests_user_tenants] | ||
pattern=fetch_user_tenants | ||
methods=POST | ||
|
||
[expose:flare_external_requests_filters_severities] | ||
pattern=fetch_filters_severities | ||
methods=POST | ||
|
||
[expose:flare_external_requests_filters_source_types] | ||
pattern=fetch_filters_source_types | ||
methods=POST |
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
width: 800px; | ||
gap: 1.5rem; | ||
align-self: center; | ||
padding-bottom: 2rem; | ||
} | ||
|
||
.content-step { | ||
|
Oops, something went wrong.