Skip to content

Commit f3a22b2

Browse files
Merge pull request #24 from superstreamlabs/master
Release
2 parents 9af091f + 437eae9 commit f3a22b2

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "superstream-kafka-analyzer",
3-
"version": "1.0.16",
3+
"version": "1.0.17",
44
"description": "Interactive utility to analyze Kafka clusters health and configuration",
55
"main": "src/cli.js",
66
"bin": {

src/health-checker.js

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,28 +145,19 @@ class HealthChecker {
145145
// Check 5: Under-Replicated Partitions
146146
await this.checkUnderReplicatedPartitions(topics, results);
147147

148-
// Check 6: Rack Awareness
149-
await this.checkRackAwareness(clusterInfo, topics, results);
150-
151-
// Check 7: Replica Distribution
152-
await this.checkReplicaDistribution(clusterInfo, topics, results);
153-
154-
// Check 8: Metrics Configuration
155-
await this.checkMetricsEnabled(clusterInfo, topics, results);
156-
157-
// Check 9: Logging Configuration
148+
// Check 6: Logging Configuration
158149
await this.checkLoggingConfiguration(clusterInfo, topics, results);
159150

160-
// Check 10: Authentication Configuration
151+
// Check 7: Authentication Configuration
161152
await this.checkAuthenticationConfiguration(clusterInfo, topics, results);
162153

163-
// Check 11: Quotas Configuration
154+
// Check 8: Quotas Configuration
164155
await this.checkQuotasConfiguration(clusterInfo, topics, results);
165156

166-
// Check 12: Payload Compression
157+
// Check 9: Payload Compression
167158
await this.checkPayloadCompression(clusterInfo, topics, results);
168159

169-
// Check 13: Infinite Retention Policy
160+
// Check 10: Infinite Retention Policy
170161
await this.checkInfiniteRetentionPolicy(clusterInfo, topics, results);
171162

172163
// TODO: Implement other Confluent Cloud specific checks

0 commit comments

Comments
 (0)