Kafka v2 (Deprecated)
Kafka Pack.#
This Integration is part of theDeprecated
Use the Kafka v3 integration instead.
Use the Kafka integration to manage messages and partitions.
This integration was integrated and tested with version 2.6 of Kafka.
Configure Kafka v2 on Cortex XSOAR
- Navigate to Settings > Integrations > Servers & Services .
- Search for Kafka v2.
-
Click
Add instance
to create and configure a new integration instance.
- Name : a meaningful name for the integration instance.
- Use proxy
-
CSV list of Kafka brokers to connect to
, e.g.,
ip:port,ip2:port2
- Do not validate server certificate (insecure)
- CA certificate of Kafka server (.cer)
- Client certificate (.cer)
- Client certificate key (.key)
- Additional password (if required)
- Topic to fetch incidents from
- Offset to fetch incidents from
- Max number of messages to fetch
- Incident type
- Enable debug (will post Kafka connection logs to the War Room)
- Click Test to validate the URLs, token, and connection.
Commands
You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.
- Print all partitions for a topic: kafka-print-topics
- Publish a message to Kafka: kafka-publish-msg
- Consume a single Kafka message: kafka-consume-msg
- Print all partitions for a topic: kafka-fetch-partitions
1. Print all partitions for a topic
Prints all partitions of a topic.
Base Command
kafka-print-topics
Input
There is no input for this command.
Context Output
Path | Type | Description |
Kafka.Topic.Name | string | Topic name. |
Kafka.Topic.Partitions.ID | Number | Topic partition ID. |
Kafka.Topic.Partitions.EarliestOffset | Number | Topic partition earliest offset. |
Kafka.Topic.Partitions.LatestOffset | Number | Topic partition latest offset. |
Command Example
!kafka-print-topics
Context Example
Human Readable Output
2. Publish a message to Kafka
Publishes a message to Kafka.
Base Command
kafka-publish-msg
Input
Argument Name | Description | Required |
topic | A topic to filter by. | Required |
value | Message value (string) | Required |
partitioning_key | Message partition key (number) | Optional |
Context Output
There is no context output for this command.
Command Example
!kafka-publish-msg topic=test value="test message"
Human Readable Output
3. Consume a single Kafka message
Consumes a single Kafka message.
Base Command
kafka-consume-msg
Input
Argument Name | Description | Required |
topic | A topic to filter by | Required |
offset | Message offset to filter by ("Earliest", "Latest", or any other offset number) | Optional |
partition | Partition (number) | Optional |
Context Output
Path | Type | Description |
Kafka.Topic.Name | string | Topic name |
Kafka.Topic.Message.Value | string | Message value |
Kafka.Topic.Message.Offset | number | Offset of the value in the topic |
Command Example
!kafka-consume-msg topic=test offset=latest
Context Example
Human Readable Output
4. Print all partitions for a topic
Prints all partitions for a topic.
Base Command
kafka-fetch-partitions
Input
Argument Name | Description | Required |
topic | A topic to filter by | Required |
Context Output
Path | Type | Description |
Kafka.Topic.Name | string | Topic name |
Kafka.Topic.Partition | number | Number of partitions for the topic |
Command Example
!kafka-fetch-partitions topic=test
Context Example
Human Readable Output