Skip to content

Commit 555d42b

Browse files
committed
Updated Oracle demo configs with v0.10.0
1 parent d194ad9 commit 555d42b

13 files changed

+4897
-46
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
apiVersion: 1
2+
3+
datasources:
4+
- name: JobManager
5+
type: redis-datasource
6+
url: redis://<REDIS_DB_ENDPOINT>:<REDIS_DB_PORT>
7+
jsonData:
8+
client: standalone
9+
poolSize: 5
10+
timeout: 10
11+
pingInterval: 0
12+
pipelineWindow: 0
13+
acl: true
14+
user: <REDIS_DB_USERNAME>
15+
editable: true
16+
secureJsonData:
17+
password: <REDIS_DB_PASSWORD>
18+
access: proxy
19+
orgId: 1
20+
isDefault: false
21+
version: 1
22+
- name: Target
23+
type: redis-datasource
24+
url: redis://<REDIS_DB_ENDPOINT>:<REDIS_DB_PORT>
25+
jsonData:
26+
client: standalone
27+
poolSize: 5
28+
timeout: 10
29+
pingInterval: 0
30+
pipelineWindow: 0
31+
acl: true
32+
user: <REDIS_DB_USERNAME>
33+
editable: true
34+
secureJsonData:
35+
password: <REDIS_DB_PASSWORD>
36+
access: proxy
37+
orgId: 1
38+
isDefault: false
39+
version: 1
40+
# - name: Prometheus
41+
# type: prometheus
42+
# url: http://localhost:9090
43+
# access: proxy
44+
# isDefault: false
45+
# editable: true
46+
# version: 1
47+
# orgId: 1
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
startDelaySeconds: 0
2+
ssl: false
3+
lowercaseOutputName: false
4+
lowercaseOutputLabelNames: false
5+
rules:
6+
- pattern : "kafka.connect<type=connect-worker-metrics>([^:]+):"
7+
name: "kafka_connect_worker_metrics_$1"
8+
- pattern : "kafka.connect<type=connect-metrics, client-id=([^:]+)><>([^:]+)"
9+
name: "kafka_connect_metrics_$2"
10+
labels:
11+
client: "$1"
12+
- pattern: "debezium.([^:]+)<type=connector-metrics, context=([^,]+), server=([^,]+), key=([^>]+)><>RowsScanned"
13+
name: "debezium_metrics_RowsScanned"
14+
labels:
15+
plugin: "$1"
16+
name: "$3"
17+
context: "$2"
18+
table: "$4"
19+
- pattern: "debezium.([^:]+)<type=connector-metrics, context=([^,]+), server=([^>]+)>([^:]+)"
20+
name: "debezium_metrics_$4"
21+
labels:
22+
plugin: "$1"
23+
name: "$3"
24+
context: "$2"

0 commit comments

Comments
 (0)