-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
145 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,154 +1,152 @@ | ||
[ | ||
{ | ||
"identifier":"kafkaCluster", | ||
"title":"Cluster", | ||
"icon":"Kafka", | ||
"schema":{ | ||
"properties":{ | ||
"controllerId":{ | ||
"title":"Controller ID", | ||
"type":"string" | ||
} | ||
{ | ||
"identifier": "kafkaCluster", | ||
"title": "Cluster", | ||
"icon": "Kafka", | ||
"schema": { | ||
"properties": { | ||
"controllerId": { | ||
"title": "Controller ID", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"identifier":"kafkaBroker", | ||
"title":"Broker", | ||
"icon":"Kafka", | ||
"schema":{ | ||
"properties":{ | ||
"address":{ | ||
"title":"Address", | ||
"type":"string" | ||
}, | ||
"region":{ | ||
"title":"Region", | ||
"type":"string" | ||
}, | ||
"version":{ | ||
"title":"Version", | ||
"type":"string" | ||
}, | ||
"config":{ | ||
"title":"Config", | ||
"type":"object" | ||
} | ||
} | ||
}, | ||
"relations":{ | ||
"cluster":{ | ||
"target":"kafkaCluster", | ||
"required":true, | ||
"many":false | ||
} | ||
} | ||
}, | ||
{ | ||
"identifier": "kafkaTopic", | ||
"title": "Topic", | ||
"icon": "Kafka", | ||
"schema": { | ||
"properties": { | ||
"replicas": { | ||
"title": "Replicas", | ||
"type": "number" | ||
}, | ||
"partitions": { | ||
"title": "Partitions", | ||
"type": "number" | ||
}, | ||
"compaction": { | ||
"title": "Compaction", | ||
"type": "boolean" | ||
}, | ||
"retention": { | ||
"title": "Retention", | ||
"type": "boolean" | ||
}, | ||
"deleteRetentionTime": { | ||
"title": "Delete Retention Time", | ||
"type": "number" | ||
}, | ||
"partitionsMetadata": { | ||
"title": "Partitions Metadata", | ||
"items": { | ||
"type": "object" | ||
}, | ||
"type": "array" | ||
}, | ||
{ | ||
"identifier": "kafkaBroker", | ||
"title": "Broker", | ||
"icon": "Kafka", | ||
"schema": { | ||
"properties": { | ||
"address": { | ||
"title": "Address", | ||
"type": "string" | ||
}, | ||
"region": { | ||
"title": "Region", | ||
"type": "string" | ||
}, | ||
"version": { | ||
"title": "Version", | ||
"type": "string" | ||
}, | ||
"config": { | ||
"title": "Config", | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"config": { | ||
"title": "Config", | ||
"type": "object" | ||
"relations": { | ||
"cluster": { | ||
"target": "kafkaCluster", | ||
"required": true, | ||
"many": false | ||
} | ||
} | ||
} | ||
}, | ||
"relations": { | ||
"cluster": { | ||
"target":"kafkaCluster", | ||
"required":true, | ||
"many":false | ||
{ | ||
"identifier": "kafkaTopic", | ||
"title": "Topic", | ||
"icon": "Kafka", | ||
"schema": { | ||
"properties": { | ||
"replicas": { | ||
"title": "Replicas", | ||
"type": "number" | ||
}, | ||
"partitions": { | ||
"title": "Partitions", | ||
"type": "number" | ||
}, | ||
"compaction": { | ||
"title": "Compaction", | ||
"type": "boolean" | ||
}, | ||
"retention": { | ||
"title": "Retention", | ||
"type": "boolean" | ||
}, | ||
"deleteRetentionTime": { | ||
"title": "Delete Retention Time", | ||
"type": "number" | ||
}, | ||
"partitionsMetadata": { | ||
"title": "Partitions Metadata", | ||
"items": { | ||
"type": "object" | ||
}, | ||
"type": "array" | ||
}, | ||
"config": { | ||
"title": "Config", | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"brokers":{ | ||
"target":"kafkaBroker", | ||
"required":false, | ||
"many":true | ||
} | ||
} | ||
}, | ||
{ | ||
"identifier":"kafkaConsumerGroup", | ||
"title":"Consumer Group", | ||
"icon":"Kafka", | ||
"schema":{ | ||
"properties":{ | ||
"state":{ | ||
"title":"State", | ||
"type":"string", | ||
"description":"The current state of the consumer group." | ||
}, | ||
"members":{ | ||
"title":"Members", | ||
"type":"array", | ||
"description":"List of members in the consumer group.", | ||
"items":{ | ||
"type":"string" | ||
} | ||
}, | ||
"coordinator":{ | ||
"title":"Coordinator", | ||
"type":"number", | ||
"description":"Broker ID of the coordinator for the consumer group." | ||
}, | ||
"partition_assignor":{ | ||
"title":"Partition Assignor", | ||
"type":"string", | ||
"description":"Strategy used to assign partitions to consumers." | ||
}, | ||
"is_simple_consumer_group":{ | ||
"title":"Is Simple Consumer Group", | ||
"type":"boolean", | ||
"description":"Indicates if the group is a simple consumer group." | ||
}, | ||
"authorized_operations":{ | ||
"title":"Authorized Operations", | ||
"type":"array", | ||
"description":"List of operations authorized for the consumer group.", | ||
"items":{ | ||
"type":"string" | ||
} | ||
} | ||
"relations": { | ||
"cluster": { | ||
"target": "kafkaCluster", | ||
"required": true, | ||
"many": false | ||
}, | ||
"brokers": { | ||
"target": "kafkaBroker", | ||
"required": false, | ||
"many": true | ||
} | ||
} | ||
}, | ||
"calculationProperties":{ | ||
|
||
}, | ||
"relations":{ | ||
"cluster":{ | ||
"target":"kafkaCluster", | ||
"required":true, | ||
"many":false | ||
}, | ||
{ | ||
"identifier": "kafkaConsumerGroup", | ||
"title": "Consumer Group", | ||
"icon": "Kafka", | ||
"schema": { | ||
"properties": { | ||
"state": { | ||
"title": "State", | ||
"type": "string", | ||
"description": "The current state of the consumer group." | ||
}, | ||
"members": { | ||
"title": "Members", | ||
"type": "array", | ||
"description": "List of members in the consumer group.", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"coordinator": { | ||
"title": "Coordinator", | ||
"type": "number", | ||
"description": "Broker ID of the coordinator for the consumer group." | ||
}, | ||
"partition_assignor": { | ||
"title": "Partition Assignor", | ||
"type": "string", | ||
"description": "Strategy used to assign partitions to consumers." | ||
}, | ||
"is_simple_consumer_group": { | ||
"title": "Is Simple Consumer Group", | ||
"type": "boolean", | ||
"description": "Indicates if the group is a simple consumer group." | ||
}, | ||
"authorized_operations": { | ||
"title": "Authorized Operations", | ||
"type": "array", | ||
"description": "List of operations authorized for the consumer group.", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"calculationProperties": {}, | ||
"relations": { | ||
"cluster": { | ||
"target": "kafkaCluster", | ||
"required": true, | ||
"many": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ | |
"state": "STABLE" | ||
}, | ||
"updatedAt": "2025-01-17T14:23:38.182Z" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
"partition_assignor": "range", | ||
"is_simple_consumer_group": false, | ||
"authorized_operations": null | ||
} | ||
} |