Skip to content

Commit 230bf0a

Browse files
CR fixes
1 parent 916998d commit 230bf0a

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ npx superstream-kafka-analyzer
7070
```bash
7171
# Using a configuration file
7272
npx superstream-kafka-analyzer --config config.json
73-
74-
# Using a configuration file and uploading results to NATS
75-
npx superstream-kafka-analyzer --config config.json --nats-config nats-config.json
7673
```
7774

7875
### Configuration File Examples
@@ -98,7 +95,6 @@ The full list is under the `./config-examples/` folder:
9895
- [Generic OAuth](config-examples/config.example.generic-oauth.json) - Generic OAuth provider
9996
- [With Timestamp](config-examples/config.example.with-timestamp.json) - Include timestamp in filenames
10097
- [Without Timestamp](config-examples/config.example.without-timestamp.json) - No timestamp in filenames
101-
- [NATS Config](config-examples/config.example.nats-config.json) - configuration for NATS connectivity
10298

10399
**Basic Configuration** (`config.example.json`):
104100
```json
@@ -143,18 +139,6 @@ The full list is under the `./config-examples/` folder:
143139
}
144140
```
145141

146-
**NATS Only Configuration** (`config.example.nats-config.json`):
147-
```json
148-
{
149-
"servers": ["nats://localhost:4222"],
150-
"jwt": "your_jwt_token_here",
151-
"nkey": "your_nkey_seed_here",
152-
"account": "your_account_name",
153-
"bucket": "kafka-analysis-test",
154-
"objectName": "analysis-result-test"
155-
}
156-
```
157-
158142
**AWS MSK with SCRAM** (`config.example.aws-msk.json`):
159143
```json
160144
{
@@ -281,7 +265,6 @@ The full list is under the `./config-examples/` folder:
281265
| Option | Description | Default |
282266
|--------|-------------|---------|
283267
| `--config <path>` | Path to configuration file | - |
284-
| `--nats-config <path>` | Path to NATS configuration file (uploads to NATS data store instead of generating files) | - |
285268

286269
## 🔐 Security Protocols
287270

bin/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ program
1313
.description('Interactive utility to analyze Kafka clusters health and configuration')
1414
.version('1.0.0')
1515
.option('-c, --config <path>', 'Path to configuration file')
16-
.option('--nats-config <path>', 'Path to NATS configuration file (uploads to NATS instead of generating files)')
1716
.option('-b, --bootstrap-servers <servers>', 'Comma-separated list of Kafka bootstrap servers')
1817
.option('-v, --verbose', 'Enable verbose logging')
1918
.option('-t, --timeout <seconds>', 'Connection timeout in seconds', '30')

0 commit comments

Comments
 (0)