Merge pull request #9454 from Security-Onion-Solutions/kilo

fix redis defaults to force string keys instead of numeric
This commit is contained in:
Jason Ertel
2022-12-21 18:16:40 -05:00
committed by GitHub
3 changed files with 10 additions and 8 deletions

View File

@@ -29,9 +29,9 @@ redis:
databases: 16 databases: 16
always-show-logo: 'yes' always-show-logo: 'yes'
save: save:
900: 1 '900': 1
300: 10 '300': 10
60: 1000 '60': 1000
stop-writes-on-bgsave-error: 'yes' stop-writes-on-bgsave-error: 'yes'
rdbcompression: 'yes' rdbcompression: 'yes'
rdbchecksum: 'yes' rdbchecksum: 'yes'

View File

@@ -117,15 +117,15 @@ redis:
advanced: True advanced: True
helpLink: redis.html helpLink: redis.html
save: save:
900: '900':
description: Set the amount of keys that need to change to save after 15 minutes. description: Set the amount of keys that need to change to save after 15 minutes.
global: True global: True
helpLink: redis.html helpLink: redis.html
300: '300':
description: Set the amount of keys that need to change to save after 5 minutes. description: Set the amount of keys that need to change to save after 5 minutes.
global: True global: True
helpLink: redis.html helpLink: redis.html
60: '60':
description: Set the amount of keys that need to change to save after 1 minute description: Set the amount of keys that need to change to save after 1 minute
global: True global: True
helpLink: redis.html helpLink: redis.html

View File

@@ -42,8 +42,9 @@ soc:
description: A list of actions a user can take from the SOC UI against a hunt, alert, and other records. The action must be defined in JSON object format, and contain a "name" key and "links" key. The links is a list of URLs, where the most suitable URL in the list will be the selected URL when the user clicks the action. description: A list of actions a user can take from the SOC UI against a hunt, alert, and other records. The action must be defined in JSON object format, and contain a "name" key and "links" key. The links is a list of URLs, where the most suitable URL in the list will be the selected URL when the user clicks the action.
global: True global: True
eventFields: eventFields:
description: A map of event metadata groupings to field lists. The field list specifies all the columns to show when displaying individual events (not groups). The event metadata grouping uses the format ":event.module:event.dataset". default:
global: True description: The list of fields to show as columns in the Hunt/Dashboards event table, when no other specific mapping applies. Mappings are defined by the format ":event.module:event.dataset".
global: True
server: server:
maxPacketCount: maxPacketCount:
description: Maximum number of packets to show in the PCAP viewer. Larger values can cause more resource utilization on both the SOC server and the browser. description: Maximum number of packets to show in the PCAP viewer. Larger values can cause more resource utilization on both the SOC server and the browser.
@@ -146,6 +147,7 @@ soc:
global: True global: True
queries: queries:
description: List of default queries to show in the query list. Each query is represented in JSON object notation, and must include the "name" key and "query" key. description: List of default queries to show in the query list. Each query is represented in JSON object notation, and must include the "name" key and "query" key.
global: True
alerts: *appSettings alerts: *appSettings
cases: *appSettings cases: *appSettings
dashboards: *appSettings dashboards: *appSettings