osvm 0.8.3

OpenSVM CLI tool for managing SVM nodes and deployments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
# Node Management

The Node Management module provides comprehensive tools for deploying, monitoring, and controlling Solana validator and RPC nodes across different environments.

## Overview

OSVM CLI supports deployment and management of various node types including validators, RPC nodes, and specialized configurations. It provides automated deployment, monitoring, and maintenance capabilities.

## Quick Start

```bash
# List all managed nodes
osvm node list

# Get node status
osvm node status <NODE_ID>

# Launch node monitoring dashboard
osvm node dashboard

# Deploy a new validator node
osvm deploy-validator --host <HOST> --keypair <KEYPAIR>
```

## Architecture

```mermaid
flowchart TD
    subgraph "Node Management System"
        CLI[Node CLI Commands]
        
        subgraph "Core Operations"
            LIST[List Nodes]
            STATUS[Status Check]
            DEPLOY[Deploy Node]
            MONITOR[Monitor Node]
            DASH[Dashboard]
        end
        
        subgraph "Node Types"
            VALIDATOR[Validator Node]
            RPC[RPC Node]
            TEST[Test Validator]
            DEVNET[Devnet Node]
        end
        
        subgraph "Management Features"
            LOGS[Log Management]
            METRICS[Metrics Collection]
            HEALTH[Health Checks]
            REPAIR[Auto Repair]
        end
        
        subgraph "Storage"
            NODEDB[Node Database]
            CONFIG[Node Config]
            LOGS_DB[Logs Database]
        end
    end
    
    CLI --> LIST
    CLI --> STATUS
    CLI --> DEPLOY
    CLI --> MONITOR
    CLI --> DASH
    
    DEPLOY --> VALIDATOR
    DEPLOY --> RPC
    DEPLOY --> TEST
    DEPLOY --> DEVNET
    
    MONITOR --> LOGS
    MONITOR --> METRICS
    MONITOR --> HEALTH
    MONITOR --> REPAIR
    
    LIST --> NODEDB
    STATUS --> CONFIG
    LOGS --> LOGS_DB
    
    classDef techDebt fill:#f6f6f6,stroke:#d9534f,color:#d9534f,font-family:Consolas,monospace,font-weight:bold
```

## Commands

### `osvm node list`

Lists all nodes managed by OSVM CLI.

```bash
osvm node list [OPTIONS]
```

**Options:**
- `--status <STATUS>` - Filter by status (running, stopped, error, unknown, all)
- `--json` - Output as JSON format

**Example Output:**
```
NODE ID          TYPE        STATUS    HOST            NETWORK
val-001         validator    running   192.168.1.100   mainnet
rpc-002         rpc         running   192.168.1.101   mainnet
test-003        test        stopped   localhost       devnet
```

### `osvm node status`

Checks the detailed status of a specific node.

```bash
osvm node status <NODE_ID> [--json]
```

**Output includes:**
- Node health status
- Resource usage (CPU, memory, disk)
- Network connectivity
- Sync status
- Error conditions
- Performance metrics

### `osvm node dashboard`

Launches an interactive terminal-based dashboard for monitoring all nodes.

```bash
osvm node dashboard
```

**Features:**
- Real-time node status
- Performance metrics visualization
- Log streaming
- Interactive controls
- Alert notifications

## Node Types

### Validator Nodes

Production Solana validators that participate in consensus.

```bash
osvm deploy-validator [OPTIONS]
```

**Key Features:**
- Stake management
- Identity keypair handling
- Performance optimization
- Automated monitoring
- Hot-swap capabilities

### RPC Nodes

Solana RPC nodes that serve client requests.

```bash
osvm deploy-rpc [OPTIONS]
```

**Key Features:**
- High availability configuration
- Load balancing support
- API endpoint management
- Request rate limiting
- Health monitoring

### Test Validators

Local development validators for testing.

**Key Features:**
- Instant startup
- Built-in faucet
- Reset capabilities
- Development tools integration

## Node Deployment Workflow

```mermaid
sequenceDiagram
    participant U as User
    participant CLI as OSVM CLI
    participant SSH as SSH Manager
    participant HOST as Target Host
    participant MON as Monitor
    
    U->>CLI: deploy-validator --host example.com
    CLI->>SSH: Establish connection
    SSH->>HOST: Connect via SSH
    HOST->>SSH: Connection established
    SSH->>HOST: Install dependencies
    HOST->>SSH: Dependencies installed
    SSH->>HOST: Deploy SVM binaries
    HOST->>SSH: Binaries deployed
    SSH->>HOST: Configure services
    HOST->>SSH: Services configured
    SSH->>HOST: Start validator
    HOST->>SSH: Validator started
    SSH->>MON: Setup monitoring
    MON->>CLI: Monitoring active
    CLI->>U: Deployment complete
    
    classDef techDebt fill:#f6f6f6,stroke:#d9534f,color:#d9534f,font-family:Consolas,monospace,font-weight:bold
```

## Monitoring Features

### Real-time Metrics

The node management system collects and displays:

- **Performance Metrics**
  - CPU usage
  - Memory consumption
  - Disk I/O
  - Network throughput

- **Solana-specific Metrics**
  - Slot processing rate
  - Transaction throughput
  - Stake weight
  - Vote credits

- **Health Indicators**
  - RPC endpoint availability
  - Catchup status
  - Error rates
  - Delinquency status

### Log Analysis

```mermaid
flowchart LR
    subgraph "Log Processing Pipeline"
        LOGS[Raw Logs]
        PARSE[Log Parser]
        ANALYZE[Pattern Analysis]
        ALERT[Alert System]
        REPAIR[Auto Repair]
    end
    
    LOGS --> PARSE
    PARSE --> ANALYZE
    ANALYZE --> ALERT
    ANALYZE --> REPAIR
    
    classDef techDebt fill:#f6f6f6,stroke:#d9534f,color:#d9534f,font-family:Consolas,monospace,font-weight:bold
```

## Configuration Management

### Node Configuration

Each node maintains a configuration file:

```yaml
node:
  id: "validator-001"
  type: "validator"
  network: "mainnet"
  host: "192.168.1.100"
  
validator:
  identity_keypair: "/path/to/identity.json"
  vote_keypair: "/path/to/vote.json"
  ledger_path: "/mnt/ledger"
  accounts_path: "/mnt/accounts"
  
monitoring:
  enabled: true
  metrics_interval: 30
  log_level: "info"
  auto_repair: true
```

### Service Configuration

```yaml
service:
  name: "solana-validator"
  user: "solana"
  working_directory: "/home/solana"
  environment:
    RUST_LOG: "info"
    SOLANA_METRICS_CONFIG: "host=metrics.example.com:8086,db=solana"
```

## Advanced Features

### Hot-Swap Capability

Seamlessly switch between staked and unstaked validator identities:

```bash
# Configure hot-swap
osvm configure-hotswap --node val-001 \
  --primary-keypair primary.json \
  --backup-keypair backup.json

# Perform hot-swap
osvm hotswap --node val-001 --to backup
```

### Automated Failover

```mermaid
stateDiagram-v2
    [*] --> Monitoring
    Monitoring --> HealthCheck
    HealthCheck --> Healthy: All systems OK
    HealthCheck --> Degraded: Performance issues
    HealthCheck --> Failed: Critical failure
    
    Healthy --> Monitoring
    Degraded --> AutoRepair: Attempt repair
    Failed --> Failover: Switch to backup
    
    AutoRepair --> Monitoring: Repair successful
    AutoRepair --> Failed: Repair failed
    
    Failover --> Monitoring: Backup online
    
    classDef techDebt fill:#f6f6f6,stroke:#d9534f,color:#d9534f,font-family:Consolas,monospace,font-weight:bold
```

## Best Practices

### Resource Planning

1. **Hardware Requirements**
   - Validator: 256GB RAM, 2TB NVMe SSD
   - RPC: 128GB RAM, 1TB NVMe SSD
   - Test: 16GB RAM, 100GB SSD

2. **Network Configuration**
   - Dedicated network interfaces
   - Firewall configuration
   - Port management

3. **Storage Layout**
   - Separate disks for OS, ledger, and accounts
   - Regular snapshots
   - Backup strategies

### Monitoring Strategy

1. **Alerting Thresholds**
   - CPU usage > 80%
   - Memory usage > 90%
   - Disk space < 10%
   - Delinquency > 5%

2. **Health Checks**
   - RPC endpoint availability
   - Vote submission rate
   - Catchup status
   - Error log patterns

### Maintenance Procedures

1. **Regular Updates**
   - Schedule maintenance windows
   - Test updates in staging
   - Coordinate with stake pool operators

2. **Performance Optimization**
   - Monitor metrics trends
   - Adjust configuration parameters
   - Optimize system settings

## Troubleshooting

### Common Issues

**Node Won't Start**
```bash
# Check service status
systemctl status solana-validator

# Check logs
journalctl -u solana-validator -f

# Verify configuration
osvm node status <NODE_ID>
```

**Performance Degradation**
```bash
# Check resource usage
htop
iostat -x 1

# Analyze logs for errors
osvm logs --node <NODE_ID> --follow
```

**Network Issues**
```bash
# Test connectivity
solana gossip

# Check firewall
ufw status

# Verify ports
netstat -tlnp | grep solana
```

## Related Documentation

- [SSH Deployment]ssh-deployment.md - Deploy nodes to remote servers
- [RPC Manager]rpc-manager.md - Specialized RPC node management
- [Log Monitoring]log-monitoring.md - Advanced log analysis
- [Self-Repair System]self-repair-system.md - Automated maintenance