-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruntime-ops.zod.ts
More file actions
681 lines (585 loc) · 14.6 KB
/
runtime-ops.zod.ts
File metadata and controls
681 lines (585 loc) · 14.6 KB
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
import { z } from 'zod';
import { PluginHealthStatusSchema } from '../kernel/plugin-lifecycle-advanced.zod';
/**
* # Runtime AI Operations (AIOps) Protocol
*
* Defines protocols for AI-powered runtime operations including:
* - Self-healing and automatic recovery
* - Intelligent auto-scaling
* - Anomaly detection and prediction
* - Performance optimization
* - Root cause analysis
*/
/**
* Anomaly Detection Configuration
* Configuration for detecting anomalies in plugin behavior
*/
export const AnomalyDetectionConfigSchema = z.object({
/**
* Enable anomaly detection
*/
enabled: z.boolean().default(true),
/**
* Metrics to monitor
*/
metrics: z.array(z.enum([
'cpu-usage',
'memory-usage',
'response-time',
'error-rate',
'throughput',
'latency',
'connection-count',
'queue-depth',
])),
/**
* Detection algorithm
*/
algorithm: z.enum([
'statistical', // Statistical thresholds
'machine-learning', // ML-based detection
'heuristic', // Rule-based heuristics
'hybrid', // Combination of methods
]).default('hybrid'),
/**
* Sensitivity level
*/
sensitivity: z.enum(['low', 'medium', 'high']).default('medium')
.describe('How aggressively to detect anomalies'),
/**
* Time window for analysis (seconds)
*/
timeWindow: z.number().int().min(60).default(300)
.describe('Historical data window for anomaly detection'),
/**
* Confidence threshold (0-100)
*/
confidenceThreshold: z.number().min(0).max(100).default(80)
.describe('Minimum confidence to flag as anomaly'),
/**
* Alert on detection
*/
alertOnDetection: z.boolean().default(true),
});
/**
* Self-Healing Action
* Defines an automated recovery action
*/
export const SelfHealingActionSchema = z.object({
/**
* Action identifier
*/
id: z.string(),
/**
* Action type
*/
type: z.enum([
'restart', // Restart the plugin
'scale', // Scale resources
'rollback', // Rollback to previous version
'clear-cache', // Clear caches
'adjust-config', // Adjust configuration
'execute-script', // Run custom script
'notify', // Notify administrators
]),
/**
* Trigger condition
*/
trigger: z.object({
/**
* Health status that triggers this action
*/
healthStatus: z.array(PluginHealthStatusSchema).optional(),
/**
* Anomaly types that trigger this action
*/
anomalyTypes: z.array(z.string()).optional(),
/**
* Error patterns that trigger this action
*/
errorPatterns: z.array(z.string()).optional(),
/**
* Custom condition expression
*/
customCondition: z.string().optional()
.describe('Custom trigger condition (e.g., "errorRate > 0.1")'),
}),
/**
* Action parameters
*/
parameters: z.record(z.string(), z.unknown()).optional(),
/**
* Maximum number of attempts
*/
maxAttempts: z.number().int().min(1).default(3),
/**
* Cooldown period between attempts (seconds)
*/
cooldown: z.number().int().min(0).default(60),
/**
* Timeout for action execution (seconds)
*/
timeout: z.number().int().min(1).default(300),
/**
* Require manual approval
*/
requireApproval: z.boolean().default(false),
/**
* Priority
*/
priority: z.number().int().min(1).default(5)
.describe('Action priority (lower number = higher priority)'),
});
/**
* Self-Healing Configuration
* Complete configuration for self-healing capabilities
*/
export const SelfHealingConfigSchema = z.object({
/**
* Enable self-healing
*/
enabled: z.boolean().default(true),
/**
* Healing strategy
*/
strategy: z.enum([
'conservative', // Only safe, proven actions
'moderate', // Balanced approach
'aggressive', // Try more recovery options
]).default('moderate'),
/**
* Recovery actions
*/
actions: z.array(SelfHealingActionSchema),
/**
* Anomaly detection
*/
anomalyDetection: AnomalyDetectionConfigSchema.optional(),
/**
* Maximum concurrent healing operations
*/
maxConcurrentHealing: z.number().int().min(1).default(1)
.describe('Maximum number of simultaneous healing attempts'),
/**
* Learning mode
*/
learning: z.object({
enabled: z.boolean().default(true)
.describe('Learn from successful/failed healing attempts'),
feedbackLoop: z.boolean().default(true)
.describe('Adjust strategy based on outcomes'),
}).optional(),
});
/**
* Auto-Scaling Policy
* Defines how to automatically scale plugin resources
*/
export const AutoScalingPolicySchema = z.object({
/**
* Enable auto-scaling
*/
enabled: z.boolean().default(false),
/**
* Scaling metric
*/
metric: z.enum([
'cpu-usage',
'memory-usage',
'request-rate',
'response-time',
'queue-depth',
'custom',
]),
/**
* Custom metric query (when metric is "custom")
*/
customMetric: z.string().optional(),
/**
* Target value for the metric
*/
targetValue: z.number()
.describe('Desired metric value (e.g., 70 for 70% CPU)'),
/**
* Scaling bounds
*/
bounds: z.object({
/**
* Minimum instances
*/
minInstances: z.number().int().min(1).default(1),
/**
* Maximum instances
*/
maxInstances: z.number().int().min(1).default(10),
/**
* Minimum resources per instance
*/
minResources: z.object({
cpu: z.string().optional().describe('CPU limit (e.g., "0.5", "1")'),
memory: z.string().optional().describe('Memory limit (e.g., "512Mi", "1Gi")'),
}).optional(),
/**
* Maximum resources per instance
*/
maxResources: z.object({
cpu: z.string().optional(),
memory: z.string().optional(),
}).optional(),
}),
/**
* Scale up behavior
*/
scaleUp: z.object({
/**
* Threshold to trigger scale up
*/
threshold: z.number()
.describe('Metric value that triggers scale up'),
/**
* Stabilization window (seconds)
*/
stabilizationWindow: z.number().int().min(0).default(60)
.describe('How long metric must exceed threshold'),
/**
* Cooldown period (seconds)
*/
cooldown: z.number().int().min(0).default(300)
.describe('Minimum time between scale-up operations'),
/**
* Step size
*/
stepSize: z.number().int().min(1).default(1)
.describe('Number of instances to add'),
}),
/**
* Scale down behavior
*/
scaleDown: z.object({
/**
* Threshold to trigger scale down
*/
threshold: z.number()
.describe('Metric value that triggers scale down'),
/**
* Stabilization window (seconds)
*/
stabilizationWindow: z.number().int().min(0).default(300)
.describe('How long metric must be below threshold'),
/**
* Cooldown period (seconds)
*/
cooldown: z.number().int().min(0).default(600)
.describe('Minimum time between scale-down operations'),
/**
* Step size
*/
stepSize: z.number().int().min(1).default(1)
.describe('Number of instances to remove'),
}),
/**
* Predictive scaling
*/
predictive: z.object({
enabled: z.boolean().default(false)
.describe('Use ML to predict future load'),
lookAhead: z.number().int().min(60).default(300)
.describe('How far ahead to predict (seconds)'),
confidence: z.number().min(0).max(100).default(80)
.describe('Minimum confidence for prediction-based scaling'),
}).optional(),
});
/**
* Root Cause Analysis Request
* Request for AI to analyze root cause of issues
*/
export const RootCauseAnalysisRequestSchema = z.object({
/**
* Incident identifier
*/
incidentId: z.string(),
/**
* Plugin identifier
*/
pluginId: z.string(),
/**
* Symptoms observed
*/
symptoms: z.array(z.object({
type: z.string().describe('Symptom type'),
description: z.string(),
severity: z.enum(['low', 'medium', 'high', 'critical']),
timestamp: z.string().datetime(),
})),
/**
* Time range for analysis
*/
timeRange: z.object({
start: z.string().datetime(),
end: z.string().datetime(),
}),
/**
* Include log analysis
*/
analyzeLogs: z.boolean().default(true),
/**
* Include metric analysis
*/
analyzeMetrics: z.boolean().default(true),
/**
* Include dependency analysis
*/
analyzeDependencies: z.boolean().default(true),
/**
* Context information
*/
context: z.record(z.string(), z.unknown()).optional(),
});
/**
* Root Cause Analysis Result
* Result of root cause analysis
*/
export const RootCauseAnalysisResultSchema = z.object({
/**
* Analysis identifier
*/
analysisId: z.string(),
/**
* Incident identifier
*/
incidentId: z.string(),
/**
* Identified root causes
*/
rootCauses: z.array(z.object({
/**
* Cause identifier
*/
id: z.string(),
/**
* Description
*/
description: z.string(),
/**
* Confidence score (0-100)
*/
confidence: z.number().min(0).max(100),
/**
* Category
*/
category: z.enum([
'code-defect',
'configuration',
'resource-exhaustion',
'dependency-failure',
'network-issue',
'data-corruption',
'security-breach',
'other',
]),
/**
* Evidence
*/
evidence: z.array(z.object({
type: z.enum(['log', 'metric', 'trace', 'event']),
content: z.string(),
timestamp: z.string().datetime().optional(),
})),
/**
* Impact assessment
*/
impact: z.enum(['low', 'medium', 'high', 'critical']),
/**
* Recommended actions
*/
recommendations: z.array(z.string()),
})),
/**
* Contributing factors
*/
contributingFactors: z.array(z.object({
description: z.string(),
confidence: z.number().min(0).max(100),
})).optional(),
/**
* Timeline of events
*/
timeline: z.array(z.object({
timestamp: z.string().datetime(),
event: z.string(),
significance: z.enum(['low', 'medium', 'high']),
})).optional(),
/**
* Remediation plan
*/
remediation: z.object({
/**
* Immediate actions
*/
immediate: z.array(z.string()),
/**
* Short-term fixes
*/
shortTerm: z.array(z.string()),
/**
* Long-term improvements
*/
longTerm: z.array(z.string()),
}).optional(),
/**
* Overall confidence in analysis
*/
overallConfidence: z.number().min(0).max(100),
/**
* Analysis timestamp
*/
timestamp: z.string().datetime(),
});
/**
* Performance Optimization Suggestion
* AI-generated performance optimization suggestion
*/
export const PerformanceOptimizationSchema = z.object({
/**
* Optimization identifier
*/
id: z.string(),
/**
* Plugin identifier
*/
pluginId: z.string(),
/**
* Optimization type
*/
type: z.enum([
'caching',
'query-optimization',
'resource-allocation',
'code-refactoring',
'architecture-change',
'configuration-tuning',
]),
/**
* Description
*/
description: z.string(),
/**
* Expected impact
*/
expectedImpact: z.object({
/**
* Performance improvement percentage
*/
performanceGain: z.number().min(0).max(100)
.describe('Expected performance improvement (%)'),
/**
* Resource savings
*/
resourceSavings: z.object({
cpu: z.number().optional().describe('CPU reduction (%)'),
memory: z.number().optional().describe('Memory reduction (%)'),
network: z.number().optional().describe('Network reduction (%)'),
}).optional(),
/**
* Cost reduction
*/
costReduction: z.number().optional()
.describe('Estimated cost reduction (%)'),
}),
/**
* Implementation difficulty
*/
difficulty: z.enum(['trivial', 'easy', 'moderate', 'complex', 'very-complex']),
/**
* Implementation steps
*/
steps: z.array(z.string()),
/**
* Risks and considerations
*/
risks: z.array(z.string()).optional(),
/**
* Confidence score
*/
confidence: z.number().min(0).max(100),
/**
* Priority
*/
priority: z.enum(['low', 'medium', 'high', 'critical']),
});
/**
* AIOps Agent Configuration
* Configuration for AI operations agent
*/
export const AIOpsAgentConfigSchema = z.object({
/**
* Agent identifier
*/
agentId: z.string(),
/**
* Plugin identifier
*/
pluginId: z.string(),
/**
* Self-healing configuration
*/
selfHealing: SelfHealingConfigSchema.optional(),
/**
* Auto-scaling policies
*/
autoScaling: z.array(AutoScalingPolicySchema).optional(),
/**
* Continuous monitoring
*/
monitoring: z.object({
enabled: z.boolean().default(true),
interval: z.number().int().min(1000).default(60000)
.describe('Monitoring interval in milliseconds'),
/**
* Metrics to collect
*/
metrics: z.array(z.string()).optional(),
}).optional(),
/**
* Proactive optimization
*/
optimization: z.object({
enabled: z.boolean().default(true),
/**
* Scan interval (seconds)
*/
scanInterval: z.number().int().min(3600).default(86400)
.describe('How often to scan for optimization opportunities'),
/**
* Auto-apply optimizations
*/
autoApply: z.boolean().default(false)
.describe('Automatically apply low-risk optimizations'),
}).optional(),
/**
* Incident response
*/
incidentResponse: z.object({
enabled: z.boolean().default(true),
/**
* Auto-trigger root cause analysis
*/
autoRCA: z.boolean().default(true),
/**
* Notification channels
*/
notifications: z.array(z.object({
channel: z.enum(['email', 'slack', 'webhook', 'sms']),
config: z.record(z.string(), z.unknown()),
})).optional(),
}).optional(),
});
// Export types
export type AnomalyDetectionConfig = z.infer<typeof AnomalyDetectionConfigSchema>;
export type SelfHealingAction = z.infer<typeof SelfHealingActionSchema>;
export type SelfHealingConfig = z.infer<typeof SelfHealingConfigSchema>;
export type AutoScalingPolicy = z.infer<typeof AutoScalingPolicySchema>;
export type RootCauseAnalysisRequest = z.infer<typeof RootCauseAnalysisRequestSchema>;
export type RootCauseAnalysisResult = z.infer<typeof RootCauseAnalysisResultSchema>;
export type PerformanceOptimization = z.infer<typeof PerformanceOptimizationSchema>;
export type AIOpsAgentConfig = z.infer<typeof AIOpsAgentConfigSchema>;