Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prep 2.1.2, update docs #409

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ Use the below schema to configure Splunk Connect for Kafka
"enable.timestamp.extraction": "<true|false>",
"timestamp.regex": "<regex for timestamp extraction>",
"timestamp.format": "<time-format for timestamp extraction>"
"timestamp.timezone": "<timezone to use if the event timestamp doesn't contain timezone suffix>"
}
}
```
Expand Down Expand Up @@ -233,6 +234,7 @@ Use the below schema to configure Splunk Connect for Kafka
| `enable.timestamp.extraction` | To enable timestamp extraction ,set the value of this field to `true`. <br/> **NOTE:** <br/> Applicable only if `splunk.hec.raw` is `false` | `false` |
| `timestamp.regex` | Regex for timestamp extraction. <br/> **NOTE:** <br/> Regex must have name captured group `"time"` For eg.: `\\\"time\\\":\\s*\\\"(?<time>.*?)\"` | `""` |
| `timestamp.format` | Time-format for timestamp extraction .<br/>For eg.: <br/>If timestamp is `1555209605000` , set `timestamp.format` to `"epoch"` format.<br/> If timestamp is `Jun 13 2010 23:11:52.454 UTC` , set `timestamp.format` to `"MMM dd yyyy HH:mm:ss.SSS zzz".`. <br/> If timestamp is in ISO8601 format `2022-03-29'T'23:11:52.054` , set `timestamp.format` to `"yyyy-MM-dd'\''T'\''HH:mm:ss.SSS"` | `""` |
| `timestamp.timezone` | Timezone used for extracted timestamp. Defaults to local timezone if nothing is specified | `""` |

### Out-of-band Health Checks and In-band Health Checks
| Health Checks | Description |
Expand Down
8 changes: 7 additions & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.splunk.kafka.connect</groupId>
<artifactId>splunk-kafka-connect</artifactId>
<name>splunk-kafka-connect</name>
<version>v2.1.1</version>
<version>v2.1.2</version>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -107,6 +107,12 @@
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>confluent</id>
<url>https://packages.confluent.io/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.splunk.kafka.connect</groupId>
<artifactId>splunk-kafka-connect</artifactId>
<version>v2.1.1</version>
<version>v2.1.2</version>
<name>splunk-kafka-connect</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
githash=
gitbranch=release/2.1.x
gitversion=v2.1.1
gitversion=v2.1.2