mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 01:32:47 +01:00
disable logstash and redis if kafka enabled
This commit is contained in:
@@ -135,7 +135,7 @@ kafka:
|
|||||||
helpLink: kafka.html
|
helpLink: kafka.html
|
||||||
client:
|
client:
|
||||||
security_x_protocol:
|
security_x_protocol:
|
||||||
description: Broker communication protocol. Options are: SASL_SSL, PLAINTEXT, SSL, SASL_PLAINTEXT
|
description: 'Broker communication protocol. Options are: SASL_SSL, PLAINTEXT, SSL, SASL_PLAINTEXT'
|
||||||
title: security.protocol
|
title: security.protocol
|
||||||
regex: ^(SASL_SSL|PLAINTEXT|SSL|SASL_PLAINTEXT)
|
regex: ^(SASL_SSL|PLAINTEXT|SSL|SASL_PLAINTEXT)
|
||||||
helpLink: kafka.html
|
helpLink: kafka.html
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
# Elastic License 2.0.
|
# Elastic License 2.0.
|
||||||
|
|
||||||
{% from 'logstash/map.jinja' import LOGSTASH_MERGED %}
|
{% from 'logstash/map.jinja' import LOGSTASH_MERGED %}
|
||||||
|
{% from 'kafka/map.jinja' import KAFKAMERGED %}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
{% if LOGSTASH_MERGED.enabled %}
|
{% if LOGSTASH_MERGED.enabled and not KAFKAMERGED.enabled %}
|
||||||
- logstash.enabled
|
- logstash.enabled
|
||||||
{% else %}
|
{% else %}
|
||||||
- logstash.disabled
|
- logstash.disabled
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
# Elastic License 2.0.
|
# Elastic License 2.0.
|
||||||
|
|
||||||
{% from 'redis/map.jinja' import REDISMERGED %}
|
{% from 'redis/map.jinja' import REDISMERGED %}
|
||||||
|
{% from 'kafka/map.jinja' import KAFKAMERGED %}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
{% if REDISMERGED.enabled %}
|
{% if REDISMERGED.enabled and not KAFKAMERGED.enabled %}
|
||||||
- redis.enabled
|
- redis.enabled
|
||||||
{% else %}
|
{% else %}
|
||||||
- redis.disabled
|
- redis.disabled
|
||||||
|
|||||||
Reference in New Issue
Block a user