Skip to content

Commit f22a59a

Browse files
Merge pull request #288 from splunk/maven-build
Resolve build failure problem and update readme file
2 parents cc14cba + 07388c2 commit f22a59a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ Splunk Connect for Kafka is a Kafka Connect Sink for Splunk with the following f
1919

2020
1. Clone the repo from https://github.com/splunk/kafka-connect-splunk
2121
2. Verify that Java8 JRE or JDK is installed.
22-
3. Run `mvn package`. This will build the jar in the /target directory. The name will be `splunk-kafka-connect-[VERSION].jar`.
22+
3. Verify that maven is installed.
23+
4. Run `mvn package`. This will build the jar in the /target directory. The name will be `splunk-kafka-connect-[VERSION].jar`.
2324

2425
## Quick Start
2526

@@ -137,7 +138,7 @@ Use the below schema to configure Splunk Connect for Kafka
137138
#### General Optional Parameters
138139
| Name | Description | Default Value |
139140
|-------- |----------------------------|-----------------------|
140-
| `splunk.indexes` | Target Splunk indexes to send data to. It can be a list of indexes which shall be the same sequence / order as topics. It is possible to inject data from different kafka topics to different splunk indexes. For example, prod-topic1,prod-topic2,prod-topic3 can be sent to index prod-index1,prod-index2,prod-index3. If you would like to index all data from multiple topics to the main index, then "main" can be specified. Leaving this setting unconfigured will result in data being routed to the default index configured against the HEC token being used. Verify the indexes configured here are in the index list of HEC tokens, otherwise Splunk HEC will drop the data. |`""`|
141+
| `splunk.indexes` | Target Splunk indexes to send data to. It can be a list of indexes which shall be the same sequence / order as topics. It is possible to inject data from different kafka topics to different splunk indexes. For example, prod-topic1,prod-topic2,prod-topic3 can be sent to index prod-index1,prod-index2,prod-index3. In that case, the configuration `topics` count must match the `splunk.indexes` count. If you would like to index all data from multiple topics to the main index, then "main" can be specified. Leaving this setting unconfigured will result in data being routed to the default index configured against the HEC token being used. Verify the indexes configured here are in the index list of HEC tokens, otherwise Splunk HEC will drop the data. |`""`|
141142
| `splunk.sources` | Splunk event source metadata for Kafka topic data. The same configuration rules as indexes can be applied. If left unconfigured, the default source binds to the HEC token. | `""` |
142143
| `splunk.sourcetypes` | Splunk event sourcetype metadata for Kafka topic data. The same configuration rules as indexes can be applied here. If left unconfigured, the default source binds to the HEC token. | `""` |
143144
| `splunk.flush.window` | The interval in seconds at which the events from kafka connect will be flushed to Splunk. | `30` |

dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<plugin>
5858
<groupId>org.jacoco</groupId>
5959
<artifactId>jacoco-maven-plugin</artifactId>
60-
<version>0.8.4</version>
60+
<version>0.8.6</version>
6161
<executions>
6262
<execution>
6363
<id>pre-unit-test</id>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
<plugin>
223223
<groupId>org.jacoco</groupId>
224224
<artifactId>jacoco-maven-plugin</artifactId>
225-
<version>0.8.4</version>
225+
<version>0.8.6</version>
226226
<configuration>
227227
<excludes>
228228
<exclude>**/*com/splunk/hecclient/examples/**/*</exclude>

0 commit comments

Comments
 (0)