rsigma 0.18.0

CLI for parsing, validating, linting and evaluating Sigma detection rules
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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
use prometheus::{
    Gauge, GaugeVec, Histogram, HistogramOpts, IntCounter, IntCounterVec, IntGauge, IntGaugeVec,
    Opts, Registry, TextEncoder,
};
use rsigma_runtime::MetricsHook;

#[derive(Clone)]
pub struct Metrics {
    pub registry: Registry,
    pub events_processed: IntCounter,
    pub detection_matches: IntCounter,
    pub correlation_matches: IntCounter,
    pub events_parse_errors: IntCounter,
    pub detection_rules_loaded: IntGauge,
    pub correlation_rules_loaded: IntGauge,
    pub correlation_state_entries: IntGauge,
    pub reloads_total: IntCounter,
    pub reloads_failed: IntCounter,
    pub processing_latency: Histogram,
    pub uptime_seconds: Gauge,
    pub input_queue_depth: IntGauge,
    pub output_queue_depth: IntGauge,
    pub back_pressure_events: IntCounter,
    pub pipeline_latency: Histogram,
    pub batch_size_histogram: Histogram,
    pub dlq_events: IntCounter,
    pub sink_queue_depth: IntGaugeVec,
    pub sink_retries_total: IntCounterVec,
    pub sink_dropped_total: IntCounterVec,
    pub sink_delivery_failures_total: IntCounterVec,
    pub webhook_requests_total: IntCounterVec,
    pub webhook_request_duration_seconds: prometheus::HistogramVec,
    pub detection_matches_by_rule: IntCounterVec,
    pub correlation_matches_by_rule: IntCounterVec,
    pub source_resolves_total: IntCounterVec,
    pub source_resolve_errors: IntCounterVec,
    pub source_resolve_latency: Histogram,
    pub source_cache_hits: IntCounter,
    pub source_last_resolved: GaugeVec,
    pub enrichment_total: IntCounterVec,
    pub enrichment_duration_seconds: prometheus::HistogramVec,
    pub enrichment_queue_depth: IntGauge,
    pub enrichment_http_cache_hits_total: IntCounterVec,
    pub enrichment_http_cache_misses_total: IntCounterVec,
    pub enrichment_http_cache_expirations_total: IntCounterVec,
    #[cfg(feature = "daemon-otlp")]
    pub otlp_requests: IntCounterVec,
    #[cfg(feature = "daemon-otlp")]
    pub otlp_log_records: IntCounter,
    #[cfg(feature = "daemon-otlp")]
    pub otlp_errors: IntCounterVec,
    #[cfg(feature = "daemon-tls")]
    pub tls_certificate_expiry_seconds: Gauge,
    #[cfg(feature = "daemon-tls")]
    pub tls_active_connections: std::sync::Arc<IntGauge>,
    pub fields_observed_total: IntCounter,
    pub fields_observer_unique_keys: IntGauge,
    pub fields_observer_overflow_dropped_total: IntCounter,
    pub events_by_schema: IntCounterVec,
    pub events_unknown_schema: IntCounter,
    pub rules_pruned_by_logsource: IntCounter,
    pub events_without_logsource: IntCounter,
    pub tap_sessions_total: IntCounter,
    pub tap_active_sessions: IntGauge,
    pub tap_events_streamed_total: IntCounter,
    pub tap_events_dropped_total: IntCounter,
    pub tail_active_sessions: IntGauge,
    pub tail_detections_dropped_total: IntCounter,
    pub dedup_results_total: IntCounterVec,
    pub dedup_store_entries: IntGauge,
    pub dedup_evictions_total: IntCounter,
    pub dedup_summaries_emitted_total: IntCounter,
    pub alert_pipeline_duration_seconds: Histogram,
    pub incidents_open: IntGauge,
    pub incidents_emitted_total: IntCounterVec,
    pub incident_results_total: IntCounter,
    pub incident_overmerge_total: IntCounterVec,
    pub silenced_total: IntCounter,
    pub silences_active: IntGauge,
    pub inhibited_total: IntCounterVec,
    pub inhibit_sources_active: IntGauge,
    pub rule_false_positive_ratio: GaugeVec,
    pub dispositions_total: IntCounterVec,
    pub disposition_ingest_total: IntCounterVec,
    pub disposition_ingest_errors_total: IntCounterVec,
    pub risk_annotations_total: IntCounterVec,
    pub risk_annotation_score: Histogram,
    pub risk_objects_total: IntCounter,
    pub risk_layer_duration_seconds: Histogram,
    pub risk_entities_open: IntGauge,
    pub risk_state_entries: IntGauge,
    pub risk_evictions_total: IntCounter,
    pub risk_incidents_emitted_total: IntCounterVec,
    pub risk_incident_results_total: IntCounter,
}

impl Metrics {
    pub fn new() -> Self {
        let registry = Registry::new();

        let events_processed = IntCounter::with_opts(Opts::new(
            "rsigma_events_processed_total",
            "Total events processed",
        ))
        .unwrap();
        let detection_matches = IntCounter::with_opts(Opts::new(
            "rsigma_detection_matches_total",
            "Total detection matches",
        ))
        .unwrap();
        let correlation_matches = IntCounter::with_opts(Opts::new(
            "rsigma_correlation_matches_total",
            "Total correlation matches",
        ))
        .unwrap();
        let events_parse_errors = IntCounter::with_opts(Opts::new(
            "rsigma_events_parse_errors_total",
            "JSON parse errors on input",
        ))
        .unwrap();
        let detection_rules_loaded = IntGauge::with_opts(Opts::new(
            "rsigma_detection_rules_loaded",
            "Number of detection rules loaded",
        ))
        .unwrap();
        let correlation_rules_loaded = IntGauge::with_opts(Opts::new(
            "rsigma_correlation_rules_loaded",
            "Number of correlation rules loaded",
        ))
        .unwrap();
        let correlation_state_entries = IntGauge::with_opts(Opts::new(
            "rsigma_correlation_state_entries",
            "Active correlation state entries",
        ))
        .unwrap();
        let reloads_total = IntCounter::with_opts(Opts::new(
            "rsigma_reloads_total",
            "Total rule reload attempts",
        ))
        .unwrap();
        let reloads_failed = IntCounter::with_opts(Opts::new(
            "rsigma_reloads_failed_total",
            "Failed rule reload attempts",
        ))
        .unwrap();
        let processing_latency = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_event_processing_seconds",
                "Per-event processing latency",
            )
            .buckets(vec![
                0.00001, 0.00005, 0.0001, 0.0005, 0.001, 0.005, 0.01, 0.05, 0.1,
            ]),
        )
        .unwrap();
        let uptime_seconds = Gauge::with_opts(Opts::new(
            "rsigma_uptime_seconds",
            "Daemon uptime in seconds",
        ))
        .unwrap();
        let input_queue_depth = IntGauge::with_opts(Opts::new(
            "rsigma_input_queue_depth",
            "Current events buffered in source→engine channel",
        ))
        .unwrap();
        let output_queue_depth = IntGauge::with_opts(Opts::new(
            "rsigma_output_queue_depth",
            "Current results buffered in engine→sink channel",
        ))
        .unwrap();
        let back_pressure_events = IntCounter::with_opts(Opts::new(
            "rsigma_back_pressure_events_total",
            "Times a source was blocked on a full event channel",
        ))
        .unwrap();
        let pipeline_latency = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_pipeline_latency_seconds",
                "End-to-end latency from event dequeue to sink send",
            )
            .buckets(vec![
                0.00001, 0.00005, 0.0001, 0.0005, 0.001, 0.005, 0.01, 0.05, 0.1, 0.5,
            ]),
        )
        .unwrap();
        let batch_size_histogram = Histogram::with_opts(
            HistogramOpts::new("rsigma_batch_size", "Number of events processed per batch")
                .buckets(vec![
                    1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0, 512.0,
                ]),
        )
        .unwrap();
        let dlq_events = IntCounter::with_opts(Opts::new(
            "rsigma_dlq_events_total",
            "Events routed to dead-letter queue",
        ))
        .unwrap();
        let sink_queue_depth = IntGaugeVec::new(
            Opts::new(
                "rsigma_sink_queue_depth",
                "Results buffered in each sink's delivery queue",
            ),
            &["sink"],
        )
        .unwrap();
        let sink_retries_total = IntCounterVec::new(
            Opts::new(
                "rsigma_sink_retries_total",
                "Sink delivery retries after a retryable failure",
            ),
            &["sink"],
        )
        .unwrap();
        let sink_dropped_total = IntCounterVec::new(
            Opts::new(
                "rsigma_sink_dropped_total",
                "Results dropped because a lossy sink's queue was full",
            ),
            &["sink"],
        )
        .unwrap();
        let sink_delivery_failures_total = IntCounterVec::new(
            Opts::new(
                "rsigma_sink_delivery_failures_total",
                "Sink deliveries that exhausted retries and were routed to the DLQ",
            ),
            &["sink"],
        )
        .unwrap();
        let webhook_requests_total = IntCounterVec::new(
            Opts::new(
                "rsigma_webhook_requests_total",
                "Webhook requests by outcome (success, permanent_failure, rate_limited_wait)",
            ),
            &["webhook_id", "outcome"],
        )
        .unwrap();
        let webhook_request_duration_seconds = prometheus::HistogramVec::new(
            HistogramOpts::new(
                "rsigma_webhook_request_duration_seconds",
                "Per-webhook HTTP request latency",
            )
            .buckets(vec![
                0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0, 10.0,
            ]),
            &["webhook_id"],
        )
        .unwrap();
        let detection_matches_by_rule = IntCounterVec::new(
            Opts::new(
                "rsigma_detection_matches_by_rule_total",
                "Detection matches per rule",
            ),
            &["rule_title", "level"],
        )
        .unwrap();
        let correlation_matches_by_rule = IntCounterVec::new(
            Opts::new(
                "rsigma_correlation_matches_by_rule_total",
                "Correlation matches per rule",
            ),
            &["rule_title", "level", "correlation_type"],
        )
        .unwrap();

        registry
            .register(Box::new(events_processed.clone()))
            .unwrap();
        registry
            .register(Box::new(detection_matches.clone()))
            .unwrap();
        registry
            .register(Box::new(correlation_matches.clone()))
            .unwrap();
        registry
            .register(Box::new(events_parse_errors.clone()))
            .unwrap();
        registry
            .register(Box::new(detection_rules_loaded.clone()))
            .unwrap();
        registry
            .register(Box::new(correlation_rules_loaded.clone()))
            .unwrap();
        registry
            .register(Box::new(correlation_state_entries.clone()))
            .unwrap();
        registry.register(Box::new(reloads_total.clone())).unwrap();
        registry.register(Box::new(reloads_failed.clone())).unwrap();
        registry
            .register(Box::new(processing_latency.clone()))
            .unwrap();
        registry.register(Box::new(uptime_seconds.clone())).unwrap();
        registry
            .register(Box::new(input_queue_depth.clone()))
            .unwrap();
        registry
            .register(Box::new(output_queue_depth.clone()))
            .unwrap();
        registry
            .register(Box::new(back_pressure_events.clone()))
            .unwrap();
        registry
            .register(Box::new(pipeline_latency.clone()))
            .unwrap();
        registry
            .register(Box::new(batch_size_histogram.clone()))
            .unwrap();
        registry.register(Box::new(dlq_events.clone())).unwrap();
        registry
            .register(Box::new(sink_queue_depth.clone()))
            .unwrap();
        registry
            .register(Box::new(sink_retries_total.clone()))
            .unwrap();
        registry
            .register(Box::new(sink_dropped_total.clone()))
            .unwrap();
        registry
            .register(Box::new(sink_delivery_failures_total.clone()))
            .unwrap();
        registry
            .register(Box::new(webhook_requests_total.clone()))
            .unwrap();
        registry
            .register(Box::new(webhook_request_duration_seconds.clone()))
            .unwrap();
        registry
            .register(Box::new(detection_matches_by_rule.clone()))
            .unwrap();
        registry
            .register(Box::new(correlation_matches_by_rule.clone()))
            .unwrap();

        let source_resolves_total = IntCounterVec::new(
            Opts::new(
                "rsigma_source_resolves_total",
                "Total dynamic source resolution attempts",
            ),
            &["source_id", "source_type"],
        )
        .unwrap();
        let source_resolve_errors = IntCounterVec::new(
            Opts::new(
                "rsigma_source_resolve_errors_total",
                "Failed dynamic source resolutions",
            ),
            &["source_id", "error_kind"],
        )
        .unwrap();
        let source_resolve_latency = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_source_resolve_seconds",
                "Dynamic source resolution latency",
            )
            .buckets(vec![0.01, 0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0, 10.0]),
        )
        .unwrap();
        let source_cache_hits = IntCounter::with_opts(Opts::new(
            "rsigma_source_cache_hits_total",
            "Times cached source data was served on resolution failure",
        ))
        .unwrap();
        let source_last_resolved = GaugeVec::new(
            Opts::new(
                "rsigma_source_last_resolved_timestamp",
                "Unix timestamp of last successful resolution per source",
            ),
            &["source_id"],
        )
        .unwrap();

        registry
            .register(Box::new(source_resolves_total.clone()))
            .unwrap();
        registry
            .register(Box::new(source_resolve_errors.clone()))
            .unwrap();
        registry
            .register(Box::new(source_resolve_latency.clone()))
            .unwrap();
        registry
            .register(Box::new(source_cache_hits.clone()))
            .unwrap();
        registry
            .register(Box::new(source_last_resolved.clone()))
            .unwrap();

        let enrichment_total = IntCounterVec::new(
            Opts::new(
                "rsigma_enrichment_total",
                "Total per-result enrichment calls, labeled by enricher and outcome",
            ),
            &["enricher_id", "kind", "status"],
        )
        .unwrap();
        let enrichment_duration_seconds = prometheus::HistogramVec::new(
            HistogramOpts::new("rsigma_enrichment_duration_seconds", "Per-enricher latency")
                .buckets(vec![
                    0.0005, 0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0, 10.0,
                ]),
            &["enricher_id", "kind"],
        )
        .unwrap();
        let enrichment_queue_depth = IntGauge::with_opts(Opts::new(
            "rsigma_enrichment_queue_depth",
            "Pending enrichment calls (sum across both kinds)",
        ))
        .unwrap();
        let enrichment_http_cache_hits_total = IntCounterVec::new(
            Opts::new(
                "rsigma_enrichment_http_cache_hits_total",
                "HTTP enricher response-cache hits",
            ),
            &["enricher_id"],
        )
        .unwrap();
        let enrichment_http_cache_misses_total = IntCounterVec::new(
            Opts::new(
                "rsigma_enrichment_http_cache_misses_total",
                "HTTP enricher response-cache misses",
            ),
            &["enricher_id"],
        )
        .unwrap();
        let enrichment_http_cache_expirations_total = IntCounterVec::new(
            Opts::new(
                "rsigma_enrichment_http_cache_expirations_total",
                "HTTP enricher response-cache entries evicted on expiry",
            ),
            &["enricher_id"],
        )
        .unwrap();

        registry
            .register(Box::new(enrichment_total.clone()))
            .unwrap();
        registry
            .register(Box::new(enrichment_duration_seconds.clone()))
            .unwrap();
        registry
            .register(Box::new(enrichment_queue_depth.clone()))
            .unwrap();
        registry
            .register(Box::new(enrichment_http_cache_hits_total.clone()))
            .unwrap();
        registry
            .register(Box::new(enrichment_http_cache_misses_total.clone()))
            .unwrap();
        registry
            .register(Box::new(enrichment_http_cache_expirations_total.clone()))
            .unwrap();

        #[cfg(feature = "daemon-otlp")]
        let otlp_requests = IntCounterVec::new(
            Opts::new(
                "rsigma_otlp_requests_total",
                "OTLP export requests received",
            ),
            &["transport", "encoding"],
        )
        .unwrap();
        #[cfg(feature = "daemon-otlp")]
        let otlp_log_records = IntCounter::with_opts(Opts::new(
            "rsigma_otlp_log_records_total",
            "Log records ingested via OTLP",
        ))
        .unwrap();
        #[cfg(feature = "daemon-otlp")]
        let otlp_errors = IntCounterVec::new(
            Opts::new("rsigma_otlp_errors_total", "OTLP request errors"),
            &["transport", "reason"],
        )
        .unwrap();

        #[cfg(feature = "daemon-otlp")]
        {
            registry.register(Box::new(otlp_requests.clone())).unwrap();
            registry
                .register(Box::new(otlp_log_records.clone()))
                .unwrap();
            registry.register(Box::new(otlp_errors.clone())).unwrap();
        }

        #[cfg(feature = "daemon-tls")]
        let tls_certificate_expiry_seconds = Gauge::with_opts(Opts::new(
            "rsigma_tls_certificate_expiry_seconds",
            "Seconds until the active TLS server certificate's not_after",
        ))
        .unwrap();
        #[cfg(feature = "daemon-tls")]
        let tls_active_connections = std::sync::Arc::new(
            IntGauge::with_opts(Opts::new(
                "rsigma_tls_active_connections",
                "Currently active TLS-terminated connections on the API listener",
            ))
            .unwrap(),
        );
        #[cfg(feature = "daemon-tls")]
        {
            registry
                .register(Box::new(tls_certificate_expiry_seconds.clone()))
                .unwrap();
            registry
                .register(Box::new(tls_active_connections.as_ref().clone()))
                .unwrap();
        }

        let fields_observed_total = IntCounter::with_opts(Opts::new(
            "rsigma_fields_observed_total",
            "Total events scanned by the opt-in field observer (--observe-fields)",
        ))
        .unwrap();
        let fields_observer_unique_keys = IntGauge::with_opts(Opts::new(
            "rsigma_fields_observer_unique_keys",
            "Distinct field names currently tracked by the field observer",
        ))
        .unwrap();
        let fields_observer_overflow_dropped_total = IntCounter::with_opts(Opts::new(
            "rsigma_fields_observer_overflow_dropped_total",
            "New-key insert attempts dropped because the field observer was at capacity",
        ))
        .unwrap();
        registry
            .register(Box::new(fields_observed_total.clone()))
            .unwrap();
        registry
            .register(Box::new(fields_observer_unique_keys.clone()))
            .unwrap();
        registry
            .register(Box::new(fields_observer_overflow_dropped_total.clone()))
            .unwrap();

        let events_by_schema = IntCounterVec::new(
            Opts::new(
                "rsigma_events_by_schema_total",
                "Events classified per schema by the opt-in schema observer (--observe-schemas)",
            ),
            &["schema"],
        )
        .unwrap();
        let events_unknown_schema = IntCounter::with_opts(Opts::new(
            "rsigma_events_unknown_schema_total",
            "Events that matched no schema signature (--observe-schemas)",
        ))
        .unwrap();
        registry
            .register(Box::new(events_by_schema.clone()))
            .unwrap();
        registry
            .register(Box::new(events_unknown_schema.clone()))
            .unwrap();

        let rules_pruned_by_logsource = IntCounter::with_opts(Opts::new(
            "rsigma_rules_pruned_by_logsource_total",
            "Always-evaluated rules skipped by conflict-based logsource pruning (--logsource-routing)",
        ))
        .unwrap();
        let events_without_logsource = IntCounter::with_opts(Opts::new(
            "rsigma_events_without_logsource_total",
            "Events with no extractable logsource, evaluated against every rule (fail-open)",
        ))
        .unwrap();
        registry
            .register(Box::new(rules_pruned_by_logsource.clone()))
            .unwrap();
        registry
            .register(Box::new(events_without_logsource.clone()))
            .unwrap();

        let tap_sessions_total = IntCounter::with_opts(Opts::new(
            "rsigma_tap_sessions_total",
            "Total live event-tap sessions opened (GET /api/v1/tap)",
        ))
        .unwrap();
        let tap_active_sessions = IntGauge::with_opts(Opts::new(
            "rsigma_tap_active_sessions",
            "Currently active live event-tap sessions",
        ))
        .unwrap();
        let tap_events_streamed_total = IntCounter::with_opts(Opts::new(
            "rsigma_tap_events_streamed_total",
            "Events streamed to live event-tap clients",
        ))
        .unwrap();
        let tap_events_dropped_total = IntCounter::with_opts(Opts::new(
            "rsigma_tap_events_dropped_total",
            "Events dropped from a live event-tap (full session buffer or unparseable redacted raw line)",
        ))
        .unwrap();
        registry
            .register(Box::new(tap_sessions_total.clone()))
            .unwrap();
        registry
            .register(Box::new(tap_active_sessions.clone()))
            .unwrap();
        registry
            .register(Box::new(tap_events_streamed_total.clone()))
            .unwrap();
        registry
            .register(Box::new(tap_events_dropped_total.clone()))
            .unwrap();

        let tail_active_sessions = IntGauge::with_opts(Opts::new(
            "rsigma_tail_active_sessions",
            "Currently active live detection-tail sessions",
        ))
        .unwrap();
        let tail_detections_dropped_total = IntCounter::with_opts(Opts::new(
            "rsigma_tail_detections_dropped_total",
            "Detections dropped from a live tail because a session buffer was full",
        ))
        .unwrap();
        registry
            .register(Box::new(tail_active_sessions.clone()))
            .unwrap();
        registry
            .register(Box::new(tail_detections_dropped_total.clone()))
            .unwrap();

        let dedup_results_total = IntCounterVec::new(
            Opts::new(
                "rsigma_dedup_results_total",
                "Alert-pipeline dedup outcomes by action (emitted, folded, repeat, resolved)",
            ),
            &["action"],
        )
        .unwrap();
        let dedup_store_entries = IntGauge::with_opts(Opts::new(
            "rsigma_dedup_store_entries",
            "Active dedup alerts currently tracked by the alert pipeline",
        ))
        .unwrap();
        let dedup_evictions_total = IntCounter::with_opts(Opts::new(
            "rsigma_dedup_evictions_total",
            "Active dedup alerts evicted after resolving",
        ))
        .unwrap();
        let dedup_summaries_emitted_total = IntCounter::with_opts(Opts::new(
            "rsigma_dedup_summaries_emitted_total",
            "Dedup summary records emitted (repeat re-emits plus resolved records)",
        ))
        .unwrap();
        let alert_pipeline_duration_seconds = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_alert_pipeline_duration_seconds",
                "Alert-pipeline stage duration in seconds",
            )
            .buckets(vec![
                0.00001, 0.00005, 0.0001, 0.0005, 0.001, 0.005, 0.01, 0.05, 0.1,
            ]),
        )
        .unwrap();
        // Pre-materialise the fixed `action` label set and zero the gauge so
        // the `# HELP` / `# TYPE` lines and zero series appear on the first
        // scrape, before any event flows.
        for action in ["emitted", "folded", "repeat", "resolved"] {
            dedup_results_total.with_label_values(&[action]).inc_by(0);
        }
        dedup_store_entries.set(0);
        registry
            .register(Box::new(dedup_results_total.clone()))
            .unwrap();
        registry
            .register(Box::new(dedup_store_entries.clone()))
            .unwrap();
        registry
            .register(Box::new(dedup_evictions_total.clone()))
            .unwrap();
        registry
            .register(Box::new(dedup_summaries_emitted_total.clone()))
            .unwrap();
        registry
            .register(Box::new(alert_pipeline_duration_seconds.clone()))
            .unwrap();

        let incidents_open = IntGauge::with_opts(Opts::new(
            "rsigma_incidents_open",
            "Open incidents currently tracked by the grouping stage",
        ))
        .unwrap();
        let incidents_emitted_total = IntCounterVec::new(
            Opts::new(
                "rsigma_incidents_emitted_total",
                "Incident emissions by trigger (group_wait, group_interval, repeat, resolved)",
            ),
            &["trigger"],
        )
        .unwrap();
        let incident_results_total = IntCounter::with_opts(Opts::new(
            "rsigma_incident_results_total",
            "Total incident records emitted",
        ))
        .unwrap();
        let incident_overmerge_total = IntCounterVec::new(
            Opts::new(
                "rsigma_incident_overmerge_total",
                "Entity-graph guard hits that suppressed a join, by guard",
            ),
            &["guard"],
        )
        .unwrap();
        // Pre-materialise the fixed label sets and zero the gauge so the
        // `# HELP` / `# TYPE` lines render on the first scrape.
        for trigger in ["group_wait", "group_interval", "repeat", "resolved"] {
            incidents_emitted_total
                .with_label_values(&[trigger])
                .inc_by(0);
        }
        for guard in ["stop_value", "cardinality_ceiling"] {
            incident_overmerge_total
                .with_label_values(&[guard])
                .inc_by(0);
        }
        incidents_open.set(0);
        registry.register(Box::new(incidents_open.clone())).unwrap();
        registry
            .register(Box::new(incidents_emitted_total.clone()))
            .unwrap();
        registry
            .register(Box::new(incident_results_total.clone()))
            .unwrap();
        registry
            .register(Box::new(incident_overmerge_total.clone()))
            .unwrap();

        let silenced_total = IntCounter::with_opts(Opts::new(
            "rsigma_silenced_total",
            "Results muted by an active silence",
        ))
        .unwrap();
        let silences_active = IntGauge::with_opts(Opts::new(
            "rsigma_silences_active",
            "Currently-active silences",
        ))
        .unwrap();
        silences_active.set(0);
        registry.register(Box::new(silenced_total.clone())).unwrap();
        registry
            .register(Box::new(silences_active.clone()))
            .unwrap();

        let inhibited_total = IntCounterVec::new(
            Opts::new(
                "rsigma_inhibited_total",
                "Results muted by an inhibition rule, by rule name",
            ),
            &["rule"],
        )
        .unwrap();
        let inhibit_sources_active = IntGauge::with_opts(Opts::new(
            "rsigma_inhibit_sources_active",
            "Currently-active inhibition sources",
        ))
        .unwrap();
        inhibit_sources_active.set(0);
        registry
            .register(Box::new(inhibited_total.clone()))
            .unwrap();
        registry
            .register(Box::new(inhibit_sources_active.clone()))
            .unwrap();

        // Triage feedback loop (#70). The gauge and the per-rule disposition
        // counter label on `rule_title` to line up with
        // `rsigma_detection_matches_by_rule_total`; the ratio gauge is absent
        // for a rule until it reaches the configured minimum sample.
        let rule_false_positive_ratio = GaugeVec::new(
            Opts::new(
                "rsigma_rule_false_positive_ratio",
                "Per-rule false-positive ratio from analyst dispositions over the rolling window",
            ),
            &["rule_title"],
        )
        .unwrap();
        let dispositions_total = IntCounterVec::new(
            Opts::new(
                "rsigma_dispositions_total",
                "Analyst dispositions counted, by rule and verdict",
            ),
            &["rule_title", "verdict"],
        )
        .unwrap();
        let disposition_ingest_total = IntCounterVec::new(
            Opts::new(
                "rsigma_disposition_ingest_total",
                "Disposition ingest outcomes by source and result",
            ),
            &["source", "result"],
        )
        .unwrap();
        let disposition_ingest_errors_total = IntCounterVec::new(
            Opts::new(
                "rsigma_disposition_ingest_errors_total",
                "Disposition ingest errors by reason",
            ),
            &["reason"],
        )
        .unwrap();
        // Pre-materialise the fixed ingest label sets so the `# HELP` / `# TYPE`
        // lines and zero series render on the first scrape, before any ingest.
        for source in ["api", "file", "http", "nats"] {
            for result in ["accepted", "rejected", "duplicate"] {
                disposition_ingest_total
                    .with_label_values(&[source, result])
                    .inc_by(0);
            }
        }
        for reason in ["parse", "validation"] {
            disposition_ingest_errors_total
                .with_label_values(&[reason])
                .inc_by(0);
        }
        registry
            .register(Box::new(rule_false_positive_ratio.clone()))
            .unwrap();
        registry
            .register(Box::new(dispositions_total.clone()))
            .unwrap();
        registry
            .register(Box::new(disposition_ingest_total.clone()))
            .unwrap();
        registry
            .register(Box::new(disposition_ingest_errors_total.clone()))
            .unwrap();

        // Risk-based alerting (#65). Annotation outcomes, the per-detection
        // score distribution, the risk-object count, and the stage duration.
        let risk_annotations_total = IntCounterVec::new(
            Opts::new(
                "rsigma_risk_annotations_total",
                "Risk-annotation outcomes by action (scored, no_entity, skipped)",
            ),
            &["action"],
        )
        .unwrap();
        let risk_annotation_score = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_risk_annotation_score",
                "Per-detection resolved risk score",
            )
            .buckets(vec![
                0.0, 1.0, 5.0, 10.0, 25.0, 50.0, 100.0, 250.0, 500.0, 1000.0,
            ]),
        )
        .unwrap();
        let risk_objects_total = IntCounter::with_opts(Opts::new(
            "rsigma_risk_objects_total",
            "Risk objects extracted from firing detections",
        ))
        .unwrap();
        let risk_layer_duration_seconds = Histogram::with_opts(
            HistogramOpts::new(
                "rsigma_risk_layer_duration_seconds",
                "Risk-layer stage duration in seconds",
            )
            .buckets(vec![
                0.00001, 0.00005, 0.0001, 0.0005, 0.001, 0.005, 0.01, 0.05, 0.1,
            ]),
        )
        .unwrap();
        let risk_entities_open = IntGauge::with_opts(Opts::new(
            "rsigma_risk_entities_open",
            "Entities currently tracked by the risk accumulator",
        ))
        .unwrap();
        let risk_state_entries = IntGauge::with_opts(Opts::new(
            "rsigma_risk_state_entries",
            "Risk contributions currently retained across all entities",
        ))
        .unwrap();
        let risk_evictions_total = IntCounter::with_opts(Opts::new(
            "rsigma_risk_evictions_total",
            "Entities dropped from the risk accumulator (store full or aged out)",
        ))
        .unwrap();
        let risk_incidents_emitted_total = IntCounterVec::new(
            Opts::new(
                "rsigma_risk_incidents_emitted_total",
                "Risk incidents emitted by trigger (score, tactic_count)",
            ),
            &["trigger"],
        )
        .unwrap();
        let risk_incident_results_total = IntCounter::with_opts(Opts::new(
            "rsigma_risk_incident_results_total",
            "Total risk incident records emitted",
        ))
        .unwrap();
        // Pre-materialise the fixed label sets and zero the gauges so the
        // `# HELP` / `# TYPE` lines and zero series render on the first scrape.
        for action in ["scored", "no_entity", "skipped"] {
            risk_annotations_total
                .with_label_values(&[action])
                .inc_by(0);
        }
        for trigger in ["score", "tactic_count"] {
            risk_incidents_emitted_total
                .with_label_values(&[trigger])
                .inc_by(0);
        }
        risk_entities_open.set(0);
        risk_state_entries.set(0);
        registry
            .register(Box::new(risk_annotations_total.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_annotation_score.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_objects_total.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_layer_duration_seconds.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_entities_open.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_state_entries.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_evictions_total.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_incidents_emitted_total.clone()))
            .unwrap();
        registry
            .register(Box::new(risk_incident_results_total.clone()))
            .unwrap();

        Metrics {
            registry,
            events_processed,
            detection_matches,
            correlation_matches,
            events_parse_errors,
            detection_rules_loaded,
            correlation_rules_loaded,
            correlation_state_entries,
            reloads_total,
            reloads_failed,
            processing_latency,
            uptime_seconds,
            input_queue_depth,
            output_queue_depth,
            back_pressure_events,
            pipeline_latency,
            batch_size_histogram,
            dlq_events,
            sink_queue_depth,
            sink_retries_total,
            sink_dropped_total,
            sink_delivery_failures_total,
            webhook_requests_total,
            webhook_request_duration_seconds,
            detection_matches_by_rule,
            correlation_matches_by_rule,
            source_resolves_total,
            source_resolve_errors,
            source_resolve_latency,
            source_cache_hits,
            source_last_resolved,
            enrichment_total,
            enrichment_duration_seconds,
            enrichment_queue_depth,
            enrichment_http_cache_hits_total,
            enrichment_http_cache_misses_total,
            enrichment_http_cache_expirations_total,
            #[cfg(feature = "daemon-otlp")]
            otlp_requests,
            #[cfg(feature = "daemon-otlp")]
            otlp_log_records,
            #[cfg(feature = "daemon-otlp")]
            otlp_errors,
            #[cfg(feature = "daemon-tls")]
            tls_certificate_expiry_seconds,
            #[cfg(feature = "daemon-tls")]
            tls_active_connections,
            fields_observed_total,
            fields_observer_unique_keys,
            fields_observer_overflow_dropped_total,
            events_by_schema,
            events_unknown_schema,
            rules_pruned_by_logsource,
            events_without_logsource,
            tap_sessions_total,
            tap_active_sessions,
            tap_events_streamed_total,
            tap_events_dropped_total,
            tail_active_sessions,
            tail_detections_dropped_total,
            dedup_results_total,
            dedup_store_entries,
            dedup_evictions_total,
            dedup_summaries_emitted_total,
            alert_pipeline_duration_seconds,
            incidents_open,
            incidents_emitted_total,
            incident_results_total,
            incident_overmerge_total,
            silenced_total,
            silences_active,
            inhibited_total,
            inhibit_sources_active,
            rule_false_positive_ratio,
            dispositions_total,
            disposition_ingest_total,
            disposition_ingest_errors_total,
            risk_annotations_total,
            risk_annotation_score,
            risk_objects_total,
            risk_layer_duration_seconds,
            risk_entities_open,
            risk_state_entries,
            risk_evictions_total,
            risk_incidents_emitted_total,
            risk_incident_results_total,
        }
    }

    /// Refresh the field-observer Prometheus gauges from a snapshot.
    /// Called both by the periodic uptime tick path inside the
    /// `/metrics` handler and by the dedicated `/api/v1/fields*`
    /// endpoints so a scrape immediately after a reset reflects the
    /// new state.
    ///
    /// Prometheus counters must be monotonic, so this bridges from the
    /// observer's *lifetime* totals (which never reset) rather than from
    /// `events_observed` / `overflow_dropped` (which reset on
    /// `DELETE /api/v1/fields/observer`). Without that, a reset between
    /// scrapes silently drops every event observed before the
    /// lifetime-total bridge re-overtook the Prometheus counter's
    /// last-known value.
    pub fn update_field_observer_metrics(&self, snapshot: &rsigma_runtime::FieldObservation) {
        self.fields_observer_unique_keys
            .set(snapshot.unique_keys as i64);
        let observed_now = snapshot.lifetime_events_observed;
        let observed_prev = self.fields_observed_total.get();
        if observed_now > observed_prev {
            self.fields_observed_total
                .inc_by(observed_now - observed_prev);
        }
        let overflow_now = snapshot.lifetime_overflow_dropped;
        let overflow_prev = self.fields_observer_overflow_dropped_total.get();
        if overflow_now > overflow_prev {
            self.fields_observer_overflow_dropped_total
                .inc_by(overflow_now - overflow_prev);
        }
    }

    /// Refresh the schema-observer Prometheus counters from a snapshot.
    /// Counters must be monotonic; the schema observer is not API-resettable,
    /// so the per-schema counts and the lifetime unknown total are monotonic
    /// sources bridged via `inc_by(delta)`.
    pub fn update_schema_observer_metrics(&self, snapshot: &rsigma_runtime::SchemaObservation) {
        for entry in &snapshot.by_schema {
            let counter = self
                .events_by_schema
                .with_label_values(&[entry.schema.as_str()]);
            let prev = counter.get();
            if entry.count > prev {
                counter.inc_by(entry.count - prev);
            }
        }
        let unknown_now = snapshot.lifetime_unknown;
        let unknown_prev = self.events_unknown_schema.get();
        if unknown_now > unknown_prev {
            self.events_unknown_schema
                .inc_by(unknown_now - unknown_prev);
        }
    }

    /// Refresh the logsource-pruning Prometheus counters from the engine's
    /// monotonic totals. Both are monotonic sources bridged via `inc_by(delta)`.
    pub fn update_logsource_metrics(&self, pruned_total: u64, absent_total: u64) {
        let pruned_prev = self.rules_pruned_by_logsource.get();
        if pruned_total > pruned_prev {
            self.rules_pruned_by_logsource
                .inc_by(pruned_total - pruned_prev);
        }
        let absent_prev = self.events_without_logsource.get();
        if absent_total > absent_prev {
            self.events_without_logsource
                .inc_by(absent_total - absent_prev);
        }
    }

    pub fn encode(&self) -> String {
        let encoder = TextEncoder::new();
        let metric_families = self.registry.gather();
        encoder
            .encode_to_string(&metric_families)
            .unwrap_or_default()
    }
}

/// Bridge from rsigma-runtime's MetricsHook trait to the Prometheus-backed Metrics struct.
impl MetricsHook for Metrics {
    fn on_parse_error(&self) {
        self.events_parse_errors.inc();
    }

    fn on_events_processed(&self, count: u64) {
        self.events_processed.inc_by(count);
    }

    fn on_detection_matches(&self, count: u64) {
        self.detection_matches.inc_by(count);
    }

    fn on_correlation_matches(&self, count: u64) {
        self.correlation_matches.inc_by(count);
    }

    fn on_alert_pipeline_result(&self, action: &str) {
        self.dedup_results_total.with_label_values(&[action]).inc();
    }

    fn set_alert_pipeline_store_entries(&self, count: i64) {
        self.dedup_store_entries.set(count);
    }

    fn on_alert_pipeline_eviction(&self) {
        self.dedup_evictions_total.inc();
    }

    fn on_alert_pipeline_summary_emitted(&self) {
        self.dedup_summaries_emitted_total.inc();
    }

    fn observe_alert_pipeline_duration(&self, seconds: f64) {
        self.alert_pipeline_duration_seconds.observe(seconds);
    }

    fn on_incident_emitted(&self, trigger: &str) {
        self.incidents_emitted_total
            .with_label_values(&[trigger])
            .inc();
        self.incident_results_total.inc();
    }

    fn set_incidents_open(&self, count: i64) {
        self.incidents_open.set(count);
    }

    fn on_alert_pipeline_overmerge(&self, guard: &str) {
        self.incident_overmerge_total
            .with_label_values(&[guard])
            .inc();
    }

    fn on_alert_pipeline_silenced(&self) {
        self.silenced_total.inc();
    }

    fn set_silences_active(&self, count: i64) {
        self.silences_active.set(count);
    }

    fn on_alert_pipeline_inhibited(&self, rule: &str) {
        self.inhibited_total.with_label_values(&[rule]).inc();
    }

    fn set_inhibit_sources_active(&self, count: i64) {
        self.inhibit_sources_active.set(count);
    }

    fn on_risk_annotation(&self, action: &str) {
        self.risk_annotations_total
            .with_label_values(&[action])
            .inc();
    }

    fn observe_risk_annotation_score(&self, score: f64) {
        self.risk_annotation_score.observe(score);
    }

    fn on_risk_objects(&self, count: u64) {
        self.risk_objects_total.inc_by(count);
    }

    fn observe_risk_layer_duration(&self, seconds: f64) {
        self.risk_layer_duration_seconds.observe(seconds);
    }

    fn on_risk_incident_emitted(&self, trigger: &str) {
        self.risk_incidents_emitted_total
            .with_label_values(&[trigger])
            .inc();
        self.risk_incident_results_total.inc();
    }

    fn set_risk_entities_open(&self, count: i64) {
        self.risk_entities_open.set(count);
    }

    fn set_risk_state_entries(&self, count: i64) {
        self.risk_state_entries.set(count);
    }

    fn on_risk_eviction(&self) {
        self.risk_evictions_total.inc();
    }

    fn observe_processing_latency(&self, seconds: f64) {
        self.processing_latency.observe(seconds);
    }

    fn on_input_queue_depth_change(&self, delta: i64) {
        if delta > 0 {
            self.input_queue_depth.add(delta);
        } else {
            self.input_queue_depth.sub(-delta);
        }
    }

    fn on_back_pressure(&self) {
        self.back_pressure_events.inc();
    }

    fn observe_batch_size(&self, size: u64) {
        self.batch_size_histogram.observe(size as f64);
    }

    fn on_output_queue_depth_change(&self, delta: i64) {
        if delta > 0 {
            self.output_queue_depth.add(delta);
        } else {
            self.output_queue_depth.sub(-delta);
        }
    }

    fn observe_pipeline_latency(&self, seconds: f64) {
        self.pipeline_latency.observe(seconds);
    }

    fn set_correlation_state_entries(&self, count: u64) {
        self.correlation_state_entries.set(count as i64);
    }

    fn on_detection_match_detail(&self, rule_title: &str, level: &str) {
        self.detection_matches_by_rule
            .with_label_values(&[rule_title, level])
            .inc();
    }

    fn on_correlation_match_detail(&self, rule_title: &str, level: &str, correlation_type: &str) {
        self.correlation_matches_by_rule
            .with_label_values(&[rule_title, level, correlation_type])
            .inc();
    }

    fn on_enrichment_completed(
        &self,
        enricher_id: &str,
        kind: &str,
        status: &str,
        duration_seconds: f64,
    ) {
        self.enrichment_total
            .with_label_values(&[enricher_id, kind, status])
            .inc();
        self.enrichment_duration_seconds
            .with_label_values(&[enricher_id, kind])
            .observe(duration_seconds);
    }

    fn on_enrichment_queue_depth_change(&self, delta: i64) {
        if delta > 0 {
            self.enrichment_queue_depth.add(delta);
        } else {
            self.enrichment_queue_depth.sub(-delta);
        }
    }

    fn on_enrichment_http_cache_hit(&self, enricher_id: &str) {
        self.enrichment_http_cache_hits_total
            .with_label_values(&[enricher_id])
            .inc();
    }

    fn on_enrichment_http_cache_miss(&self, enricher_id: &str) {
        self.enrichment_http_cache_misses_total
            .with_label_values(&[enricher_id])
            .inc();
    }

    fn on_enrichment_http_cache_expiration(&self, enricher_id: &str) {
        self.enrichment_http_cache_expirations_total
            .with_label_values(&[enricher_id])
            .inc();
    }

    fn register_enricher(&self, enricher_id: &str, kind: &str) {
        // Pre-create label sets so `# HELP` / `# TYPE` lines for the
        // per-enricher metrics show up on the first /metrics scrape,
        // even before the enricher has fired. `inc_by(0)` and a
        // bare `with_label_values` both materialise the entry; the
        // former is more explicit about the intent.
        for status in ["success", "skip", "error", "timeout", "drop"] {
            self.enrichment_total
                .with_label_values(&[enricher_id, kind, status])
                .inc_by(0);
        }
        // HistogramVec materialises its buckets in `with_label_values`
        // without observing, so this is side-effect-free: the metric
        // appears with all-zero buckets and `_count == 0` until the
        // first `observe(...)` call.
        let _ = self
            .enrichment_duration_seconds
            .with_label_values(&[enricher_id, kind]);
    }

    fn register_http_enricher_cache(&self, enricher_id: &str) {
        self.enrichment_http_cache_hits_total
            .with_label_values(&[enricher_id])
            .inc_by(0);
        self.enrichment_http_cache_misses_total
            .with_label_values(&[enricher_id])
            .inc_by(0);
        self.enrichment_http_cache_expirations_total
            .with_label_values(&[enricher_id])
            .inc_by(0);
    }

    fn register_sink(&self, sink: &str) {
        self.sink_queue_depth.with_label_values(&[sink]).set(0);
        self.sink_retries_total.with_label_values(&[sink]).inc_by(0);
        self.sink_dropped_total.with_label_values(&[sink]).inc_by(0);
        self.sink_delivery_failures_total
            .with_label_values(&[sink])
            .inc_by(0);
    }

    fn on_sink_queue_depth_change(&self, sink: &str, delta: i64) {
        let gauge = self.sink_queue_depth.with_label_values(&[sink]);
        if delta > 0 {
            gauge.add(delta);
        } else {
            gauge.sub(-delta);
        }
    }

    fn on_sink_retry(&self, sink: &str) {
        self.sink_retries_total.with_label_values(&[sink]).inc();
    }

    fn on_sink_dropped(&self, sink: &str) {
        self.sink_dropped_total.with_label_values(&[sink]).inc();
    }

    fn on_sink_delivery_failed(&self, sink: &str) {
        self.sink_delivery_failures_total
            .with_label_values(&[sink])
            .inc();
    }

    fn register_webhook(&self, webhook_id: &str) {
        for outcome in ["success", "permanent_failure", "rate_limited_wait"] {
            self.webhook_requests_total
                .with_label_values(&[webhook_id, outcome])
                .inc_by(0);
        }
        // Materialise the histogram series so panels render before traffic.
        self.webhook_request_duration_seconds
            .with_label_values(&[webhook_id]);
    }

    fn on_webhook_request(&self, webhook_id: &str, outcome: &'static str, duration_secs: f64) {
        self.webhook_requests_total
            .with_label_values(&[webhook_id, outcome])
            .inc();
        self.webhook_request_duration_seconds
            .with_label_values(&[webhook_id])
            .observe(duration_secs);
    }

    fn on_webhook_rate_limited(&self, webhook_id: &str) {
        self.webhook_requests_total
            .with_label_values(&[webhook_id, "rate_limited_wait"])
            .inc();
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn detection_matches_by_rule_labels() {
        let m = Metrics::new();
        m.on_detection_match_detail("Detect Whoami", "medium");
        m.on_detection_match_detail("Detect Whoami", "medium");
        m.on_detection_match_detail("Suspicious Login", "high");

        assert_eq!(
            m.detection_matches_by_rule
                .with_label_values(&["Detect Whoami", "medium"])
                .get(),
            2
        );
        assert_eq!(
            m.detection_matches_by_rule
                .with_label_values(&["Suspicious Login", "high"])
                .get(),
            1
        );
    }

    #[test]
    fn correlation_matches_by_rule_labels() {
        let m = Metrics::new();
        m.on_correlation_match_detail("Brute Force", "high", "event_count");
        m.on_correlation_match_detail("Brute Force", "high", "event_count");
        m.on_correlation_match_detail("Lateral Movement", "critical", "temporal");

        assert_eq!(
            m.correlation_matches_by_rule
                .with_label_values(&["Brute Force", "high", "event_count"])
                .get(),
            2
        );
        assert_eq!(
            m.correlation_matches_by_rule
                .with_label_values(&["Lateral Movement", "critical", "temporal"])
                .get(),
            1
        );
    }

    #[test]
    fn labeled_counters_appear_in_encoded_output() {
        let m = Metrics::new();
        m.on_detection_match_detail("Test Rule", "high");
        m.on_correlation_match_detail("Corr Rule", "medium", "event_count");

        let output = m.encode();
        assert!(output.contains("rsigma_detection_matches_by_rule_total"));
        assert!(output.contains(r#"rule_title="Test Rule""#));
        assert!(output.contains(r#"level="high""#));
        assert!(output.contains("rsigma_correlation_matches_by_rule_total"));
        assert!(output.contains(r#"rule_title="Corr Rule""#));
        assert!(output.contains(r#"correlation_type="event_count""#));
    }
}