Skip to content

Commit 8fa380c

Browse files
authored
Merge pull request #409 from splunk/prep-2.1.2
chore: prep 2.1.2, update docs
2 parents 6d910c5 + 245e857 commit 8fa380c

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ Use the below schema to configure Splunk Connect for Kafka
139139
"enable.timestamp.extraction": "<true|false>",
140140
"timestamp.regex": "<regex for timestamp extraction>",
141141
"timestamp.format": "<time-format for timestamp extraction>"
142+
"timestamp.timezone": "<timezone to use if the event timestamp doesn't contain timezone suffix>"
142143
}
143144
}
144145
```
@@ -233,6 +234,7 @@ Use the below schema to configure Splunk Connect for Kafka
233234
| `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` |
234235
| `timestamp.regex` | Regex for timestamp extraction. <br/> **NOTE:** <br/> Regex must have name captured group `"time"` For eg.: `\\\"time\\\":\\s*\\\"(?<time>.*?)\"` | `""` |
235236
| `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"` | `""` |
237+
| `timestamp.timezone` | Timezone used for extracted timestamp. Defaults to local timezone if nothing is specified | `""` |
236238

237239
### Out-of-band Health Checks and In-band Health Checks
238240
| Health Checks | Description |

dependency-reduced-pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.splunk.kafka.connect</groupId>
55
<artifactId>splunk-kafka-connect</artifactId>
66
<name>splunk-kafka-connect</name>
7-
<version>v2.1.1</version>
7+
<version>v2.1.2</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -107,6 +107,12 @@
107107
</plugin>
108108
</plugins>
109109
</build>
110+
<repositories>
111+
<repository>
112+
<id>confluent</id>
113+
<url>https://packages.confluent.io/maven/</url>
114+
</repository>
115+
</repositories>
110116
<dependencies>
111117
<dependency>
112118
<groupId>org.junit.jupiter</groupId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.splunk.kafka.connect</groupId>
88
<artifactId>splunk-kafka-connect</artifactId>
9-
<version>v2.1.1</version>
9+
<version>v2.1.2</version>
1010
<name>splunk-kafka-connect</name>
1111

1212
<properties>

src/main/resources/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
githash=
22
gitbranch=release/2.1.x
3-
gitversion=v2.1.1
3+
gitversion=v2.1.2

0 commit comments

Comments
 (0)