Skip to content
Open
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
5 changes: 5 additions & 0 deletions packages/kafka_connect/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- version: "0.2.0"
changes:
- description: Allow for setting condition
type: enhancement
link: https://github.com/elastic/integrations/pull/19354
- version: "0.1.0"
changes:
- description: Initial release of Kafka Connect integration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ username: {{username}}
{{#if password}}
password: {{password}}
{{/if}}
{{#if condition }}
condition: {{ condition }}
{{/if}}
namespace: "kafka_connect"
jmx.mappings:
- mbean: 'kafka.connect:type=connect-metrics,client-id=*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ username: {{username}}
{{#if password}}
password: {{password}}
{{/if}}
{{#if condition }}
condition: {{ condition }}
{{/if}}
namespace: "kafka_connect"
jmx.mappings:
- mbean: 'kafka.connect:type=connector-metrics,connector=*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ username: {{username}}
{{#if password}}
password: {{password}}
{{/if}}
{{#if condition }}
condition: {{ condition }}
{{/if}}
namespace: "kafka_connect"
jmx.mappings:
- mbean: 'kafka.connect:type=*-task-metrics,connector=*,task=*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ username: {{username}}
{{#if password}}
password: {{password}}
{{/if}}
{{#if condition }}
condition: {{ condition }}
{{/if}}
namespace: "kafka_connect"
jmx.mappings:
- mbean: 'kafka.connect:type=connect-worker-metrics'
Expand Down
9 changes: 8 additions & 1 deletion packages/kafka_connect/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: kafka_connect
title: Kafka Connect
version: "0.1.0"
version: "0.2.0"
description: Collect metrics from Kafka Connect instances with Elastic Agent.
type: integration
icons:
Expand Down Expand Up @@ -43,6 +43,13 @@ policy_templates:
show_user: true
description: Path of Jolokia endpoint.
default: /jolokia/
- name: condition
title: Condition
description: Condition to filter when to collect this input. See [Dynamic Input Configuration](https://www.elastic.co/guide/en/fleet/current/dynamic-input-configuration.html) for details.
type: text
multi: false
required: false
show_user: true
- name: username
type: text
title: Username
Expand Down