dragonfly-client-metric 1.4.2

Metric collection for the dragonfly client
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
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
/*
 *     Copyright 2025 The Dragonfly Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

use dragonfly_api::common::v2::{Range, TrafficType};
use dragonfly_client_config::{
    dfdaemon::Config, BUILD_PLATFORM, CARGO_PKG_VERSION, GIT_COMMIT_DATE, GIT_COMMIT_SHORT_HASH,
};
use dragonfly_client_util::shutdown;
use lazy_static::lazy_static;
use prometheus::{
    exponential_buckets, gather, Encoder, HistogramOpts, HistogramVec, IntCounterVec, IntGaugeVec,
    Opts, Registry, TextEncoder,
};
use std::net::SocketAddr;
use std::path::Path;
use std::sync::Arc;
use std::time::Duration;
use tokio::sync::mpsc;
use tracing::{error, info, instrument, warn};
use warp::{Filter, Rejection, Reply};

/// The threshold of small (Level0–Level2, under 4MiB) download task
/// duration for recording slow download task.
const DOWNLOAD_SMALL_TASK_DURATION_THRESHOLD: Duration = Duration::from_millis(500);

/// The threshold of small (Level0 & Level1, under 1MiB) upload task
/// duration for recording slow upload task.
const UPLOAD_SMALL_TASK_DURATION_THRESHOLD: Duration = Duration::from_millis(500);

lazy_static! {
    /// Used to register all metrics.
    pub static ref REGISTRY: Registry = Registry::new();

    /// Used to record the version info of the service.
    pub static ref VERSION_GAUGE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("version", "Version info of the service.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["git_version", "git_commit", "platform", "build_time"]
        ).expect("metric can be created");

    /// Used to count the number of upload tasks.
    pub static ref UPLOAD_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("upload_task_total", "Counter of the number of the upload task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app"]
        ).expect("metric can be created");

    /// Used to count the failed number of upload tasks.
    pub static ref UPLOAD_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("upload_task_failure_total", "Counter of the number of failed of the upload task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app"]
        ).expect("metric can be created");

    /// Used to gauge the number of concurrent upload tasks.
    pub static ref CONCURRENT_UPLOAD_TASK_GAUGE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("concurrent_upload_task_total", "Gauge of the number of concurrent of the upload task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app"]
        ).expect("metric can be created");

    /// Used to record the upload task duration.
    pub static ref UPLOAD_TASK_DURATION: HistogramVec =
        HistogramVec::new(
            HistogramOpts::new("upload_task_duration_milliseconds", "Histogram of the upload task duration.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME).buckets(exponential_buckets(1.0, 2.0, 24).unwrap()),
            &["task_type", "task_size_level"]
        ).expect("metric can be created");

    /// Used to count the number of download tasks.
    pub static ref DOWNLOAD_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("download_task_total", "Counter of the number of the download task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app", "priority"]
        ).expect("metric can be created");

    /// Used to count the failed number of download tasks.
    pub static ref DOWNLOAD_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("download_task_failure_total", "Counter of the number of failed of the download task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app", "priority"]
        ).expect("metric can be created");

    /// Used to count the number of prefetch tasks.
    pub static ref PREFETCH_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("prefetch_task_total", "Counter of the number of the prefetch task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app", "priority"]
        ).expect("metric can be created");

    /// Used to count the failed number of prefetch tasks.
    pub static ref PREFETCH_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("prefetch_task_failure_total", "Counter of the number of failed of the prefetch task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app", "priority"]
        ).expect("metric can be created");

    /// Used to gauge the number of concurrent download tasks.
    pub static ref CONCURRENT_DOWNLOAD_TASK_GAUGE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("concurrent_download_task_total", "Gauge of the number of concurrent of the download task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type", "tag", "app", "priority"]
        ).expect("metric can be created");

    /// Used to gauge the number of concurrent upload pieces.
    pub static ref CONCURRENT_UPLOAD_PIECE_GAUGE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("concurrent_upload_piece_total", "Gauge of the number of concurrent of the upload piece.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count the download traffic.
    pub static ref DOWNLOAD_TRAFFIC: IntCounterVec =
        IntCounterVec::new(
            Opts::new("download_traffic", "Counter of the number of the download traffic.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the upload traffic.
    pub static ref UPLOAD_TRAFFIC: IntCounterVec =
        IntCounterVec::new(
            Opts::new("upload_traffic", "Counter of the number of the upload traffic.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to record the download task duration.
    pub static ref DOWNLOAD_TASK_DURATION: HistogramVec =
        HistogramVec::new(
            HistogramOpts::new("download_task_duration_milliseconds", "Histogram of the download task duration.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME).buckets(exponential_buckets(1.0, 2.0, 24).unwrap()),
            &["task_type", "task_size_level"]
        ).expect("metric can be created");

    /// Used to count the number of backend requset.
    pub static ref BACKEND_REQUEST_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("backend_request_total", "Counter of the number of the backend request.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["scheme", "method"]
        ).expect("metric can be created");

    /// Used to count the failed number of backend request.
    pub static ref BACKEND_REQUEST_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("backend_request_failure_total", "Counter of the number of failed of the backend request.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["scheme", "method"]
        ).expect("metric can be created");

    /// Used to record the backend request duration.
    pub static ref BACKEND_REQUEST_DURATION: HistogramVec =
        HistogramVec::new(
            HistogramOpts::new("backend_request_duration_milliseconds", "Histogram of the backend request duration.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME).buckets(exponential_buckets(1.0, 2.0, 24).unwrap()),
            &["scheme", "method"]
        ).expect("metric can be created");

    /// Used to count the number of proxy requset.
    pub static ref PROXY_REQUEST_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("proxy_request_total", "Counter of the number of the proxy request.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count the failed number of proxy request.
    pub static ref PROXY_REQUEST_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("proxy_request_failure_total", "Counter of the number of failed of the proxy request.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count the number of proxy requset via dfdaemon.
    pub static ref PROXY_REQUEST_VIA_DFDAEMON_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("proxy_request_via_dfdaemon_total", "Counter of the number of the proxy request via dfdaemon.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count the number of update tasks.
    pub static ref UPDATE_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("update_task_total", "Counter of the number of the update task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of update tasks.
    pub static ref UPDATE_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("update_task_failure_total", "Counter of the number of failed of the update task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the number of stat tasks.
    pub static ref STAT_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("stat_task_total", "Counter of the number of the stat task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of stat tasks.
    pub static ref STAT_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("stat_task_failure_total", "Counter of the number of failed of the stat task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the number of stat tasks.
    pub static ref STAT_LOCAL_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("stat_local_task_total", "Counter of the number of the stat local task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of stat tasks.
    pub static ref STAT_LOCAL_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("stat_local_task_failure_total", "Counter of the number of failed of the stat local task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the number of list tasks.
    pub static ref LIST_LOCAL_TASKS_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("list_local_tasks_total", "Counter of the number of the list tasks.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of list tasks.
    pub static ref LIST_LOCAL_TASKS_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("list_tasks_failure_total", "Counter of the number of failed of the list tasks.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the number of list task entries.
    pub static ref LIST_TASK_ENTRIES_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("list_task_entries_total", "Counter of the number of the list task entries.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of list task entries.
    pub static ref LIST_TASK_ENTRIES_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("list_task_entries_failure_total", "Counter of the number of failed of the list task entries.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

        /// Used to count the number of delete tasks.
    pub static ref DELETE_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_task_total", "Counter of the number of the delete task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of delete tasks.
    pub static ref DELETE_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_task_failure_total", "Counter of the number of failed of the delete task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

        /// Used to count the number of delete local tasks.
    pub static ref DELETE_LOCAL_TASK_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_local_task_total", "Counter of the number of the delete local task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the failed number of delete local tasks.
    pub static ref DELETE_LOCAL_TASK_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_local_task_failure_total", "Counter of the number of failed of the delete local task.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");

    /// Used to count the number of delete host.
    pub static ref DELETE_HOST_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_host_total", "Counter of the number of the delete host.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count the failed number of delete host.
    pub static ref DELETE_HOST_FAILURE_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("delete_host_failure_total", "Counter of the number of failed of the delete host.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count of the disk space.
    pub static ref DISK_SPACE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("disk_space_total", "Gauge of the disk space in bytes").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count of the disk usage space.
    pub static ref DISK_USAGE_SPACE: IntGaugeVec =
        IntGaugeVec::new(
            Opts::new("disk_usage_space_total", "Gauge of the disk usage space in bytes").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &[]
        ).expect("metric can be created");

    /// Used to count of the download task blocked.
    pub static ref DOWNLOAD_TASK_BLOCKED_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("download_task_blocked_total", "Counter of the number of download task blocked.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");


    /// Used to count of the upload task blocked.
    pub static ref UPLOAD_TASK_BLOCKED_COUNT: IntCounterVec =
        IntCounterVec::new(
            Opts::new("upload_task_blocked_total", "Counter of the number of upload task blocked.").namespace(dragonfly_client_config::SERVICE_NAME).subsystem(dragonfly_client_config::NAME),
            &["type"]
        ).expect("metric can be created");
}

/// Registers all custom metrics.
fn register_custom_metrics() {
    REGISTRY
        .register(Box::new(VERSION_GAUGE.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DOWNLOAD_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DOWNLOAD_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(PREFETCH_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(PREFETCH_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(CONCURRENT_DOWNLOAD_TASK_GAUGE.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(CONCURRENT_UPLOAD_PIECE_GAUGE.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DOWNLOAD_TRAFFIC.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(UPLOAD_TRAFFIC.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DOWNLOAD_TASK_DURATION.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(BACKEND_REQUEST_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(BACKEND_REQUEST_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(BACKEND_REQUEST_DURATION.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(PROXY_REQUEST_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(PROXY_REQUEST_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(PROXY_REQUEST_VIA_DFDAEMON_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(UPDATE_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(UPDATE_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(STAT_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(STAT_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(LIST_LOCAL_TASKS_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(LIST_LOCAL_TASKS_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(LIST_TASK_ENTRIES_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(LIST_TASK_ENTRIES_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_LOCAL_TASK_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_LOCAL_TASK_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_HOST_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DELETE_HOST_FAILURE_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DISK_SPACE.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DISK_USAGE_SPACE.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(DOWNLOAD_TASK_BLOCKED_COUNT.clone()))
        .expect("metric can be registered");

    REGISTRY
        .register(Box::new(UPLOAD_TASK_BLOCKED_COUNT.clone()))
        .expect("metric can be registered");
}

/// Resets all custom metrics.
fn reset_custom_metrics() {
    VERSION_GAUGE.reset();
    DOWNLOAD_TASK_COUNT.reset();
    DOWNLOAD_TASK_FAILURE_COUNT.reset();
    PREFETCH_TASK_COUNT.reset();
    PREFETCH_TASK_FAILURE_COUNT.reset();
    CONCURRENT_DOWNLOAD_TASK_GAUGE.reset();
    CONCURRENT_UPLOAD_PIECE_GAUGE.reset();
    DOWNLOAD_TRAFFIC.reset();
    UPLOAD_TRAFFIC.reset();
    DOWNLOAD_TASK_DURATION.reset();
    BACKEND_REQUEST_COUNT.reset();
    BACKEND_REQUEST_FAILURE_COUNT.reset();
    BACKEND_REQUEST_DURATION.reset();
    PROXY_REQUEST_COUNT.reset();
    PROXY_REQUEST_FAILURE_COUNT.reset();
    PROXY_REQUEST_VIA_DFDAEMON_COUNT.reset();
    UPDATE_TASK_COUNT.reset();
    UPDATE_TASK_FAILURE_COUNT.reset();
    STAT_TASK_COUNT.reset();
    STAT_TASK_FAILURE_COUNT.reset();
    LIST_LOCAL_TASKS_COUNT.reset();
    LIST_LOCAL_TASKS_FAILURE_COUNT.reset();
    LIST_TASK_ENTRIES_COUNT.reset();
    LIST_TASK_ENTRIES_FAILURE_COUNT.reset();
    DELETE_TASK_COUNT.reset();
    DELETE_TASK_FAILURE_COUNT.reset();
    DELETE_LOCAL_TASK_COUNT.reset();
    DELETE_LOCAL_TASK_FAILURE_COUNT.reset();
    DELETE_HOST_COUNT.reset();
    DELETE_HOST_FAILURE_COUNT.reset();
    DISK_SPACE.reset();
    DISK_USAGE_SPACE.reset();
}

/// Represents the size of the task.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum TaskSize {
    /// Represents unknown size.
    Level0,

    /// Represents size range is from 0 to 1M.
    Level1,

    /// Represents size range is from 1M to 4M.
    Level2,

    /// Represents size range is from 4M to 8M.
    Level3,

    /// Represents size range is from 8M to 16M.
    Level4,

    /// Represents size range is from 16M to 32M.
    Level5,

    /// Represents size range is from 32M to 64M.
    Level6,

    /// Represents size range is from 64M to 128M.
    Level7,

    /// Represents size range is from 128M to 256M.
    Level8,

    /// Represents size range is from 256M to 512M.
    Level9,

    /// Represents size range is from 512M to 1G.
    Level10,

    /// Represents size range is from 1G to 4G.
    Level11,

    /// Represents size range is from 4G to 8G.
    Level12,

    /// Represents size range is from 8G to 16G.
    Level13,

    /// Represents size range is from 16G to 32G.
    Level14,

    /// Represents size range is from 32G to 64G.
    Level15,

    /// Represents size range is from 64G to 128G.
    Level16,

    /// Represents size range is from 128G to 256G.
    Level17,

    /// Represents size range is from 256G to 512G.
    Level18,

    /// Represents size range is from 512G to 1T.
    Level19,

    /// Represents size is greater than 1T.
    Level20,
}

/// Implements the Display trait.
impl std::fmt::Display for TaskSize {
    /// fmt formats the TaskSize.
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            TaskSize::Level0 => write!(f, "0"),
            TaskSize::Level1 => write!(f, "1"),
            TaskSize::Level2 => write!(f, "2"),
            TaskSize::Level3 => write!(f, "3"),
            TaskSize::Level4 => write!(f, "4"),
            TaskSize::Level5 => write!(f, "5"),
            TaskSize::Level6 => write!(f, "6"),
            TaskSize::Level7 => write!(f, "7"),
            TaskSize::Level8 => write!(f, "8"),
            TaskSize::Level9 => write!(f, "9"),
            TaskSize::Level10 => write!(f, "10"),
            TaskSize::Level11 => write!(f, "11"),
            TaskSize::Level12 => write!(f, "12"),
            TaskSize::Level13 => write!(f, "13"),
            TaskSize::Level14 => write!(f, "14"),
            TaskSize::Level15 => write!(f, "15"),
            TaskSize::Level16 => write!(f, "16"),
            TaskSize::Level17 => write!(f, "17"),
            TaskSize::Level18 => write!(f, "18"),
            TaskSize::Level19 => write!(f, "19"),
            TaskSize::Level20 => write!(f, "20"),
        }
    }
}

/// Implements the TaskSize.
impl TaskSize {
    /// Calculates the size level according to the size.
    pub fn calculate_size_level(size: u64) -> Self {
        match size {
            0 => TaskSize::Level0,
            size if size < 1024 * 1024 => TaskSize::Level1,
            size if size < 4 * 1024 * 1024 => TaskSize::Level2,
            size if size < 8 * 1024 * 1024 => TaskSize::Level3,
            size if size < 16 * 1024 * 1024 => TaskSize::Level4,
            size if size < 32 * 1024 * 1024 => TaskSize::Level5,
            size if size < 64 * 1024 * 1024 => TaskSize::Level6,
            size if size < 128 * 1024 * 1024 => TaskSize::Level7,
            size if size < 256 * 1024 * 1024 => TaskSize::Level8,
            size if size < 512 * 1024 * 1024 => TaskSize::Level9,
            size if size < 1024 * 1024 * 1024 => TaskSize::Level10,
            size if size < 4 * 1024 * 1024 * 1024 => TaskSize::Level11,
            size if size < 8 * 1024 * 1024 * 1024 => TaskSize::Level12,
            size if size < 16 * 1024 * 1024 * 1024 => TaskSize::Level13,
            size if size < 32 * 1024 * 1024 * 1024 => TaskSize::Level14,
            size if size < 64 * 1024 * 1024 * 1024 => TaskSize::Level15,
            size if size < 128 * 1024 * 1024 * 1024 => TaskSize::Level16,
            size if size < 256 * 1024 * 1024 * 1024 => TaskSize::Level17,
            size if size < 512 * 1024 * 1024 * 1024 => TaskSize::Level18,
            size if size < 1024 * 1024 * 1024 * 1024 => TaskSize::Level19,
            _ => TaskSize::Level20,
        }
    }
}

/// Collects the upload task started metrics.
pub fn collect_upload_task_started_metrics(typ: i32, tag: &str, app: &str) {
    let typ = typ.to_string();

    UPLOAD_TASK_COUNT.with_label_values(&[&typ, tag, app]).inc();

    CONCURRENT_UPLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app])
        .inc();
}

/// Collects the upload task finished metrics.
#[instrument(skip_all)]
pub fn collect_upload_task_finished_metrics(
    typ: i32,
    tag: &str,
    app: &str,
    content_length: u64,
    cost: Duration,
) {
    let task_size = TaskSize::calculate_size_level(content_length);

    // Collect the slow upload Level0, Level1 & Level2 task for analysis.
    if matches!(
        task_size,
        TaskSize::Level0 | TaskSize::Level1 | TaskSize::Level2
    ) && cost > UPLOAD_SMALL_TASK_DURATION_THRESHOLD
    {
        warn!(
            "upload task, cost: {:?}, size: {} bytes",
            cost, content_length,
        );
    }

    let typ = typ.to_string();
    let task_size = task_size.to_string();

    UPLOAD_TASK_DURATION
        .with_label_values(&[&typ, &task_size])
        .observe(cost.as_millis() as f64);

    CONCURRENT_UPLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app])
        .dec();
}

/// Collects the upload task failure metrics.
pub fn collect_upload_task_failure_metrics(typ: i32, tag: &str, app: &str) {
    let typ = typ.to_string();

    UPLOAD_TASK_FAILURE_COUNT
        .with_label_values(&[&typ, tag, app])
        .inc();

    CONCURRENT_UPLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app])
        .dec();
}

/// Collects the download task started metrics.
pub fn collect_download_task_started_metrics(typ: i32, tag: &str, app: &str, priority: &str) {
    let typ = typ.to_string();

    DOWNLOAD_TASK_COUNT
        .with_label_values(&[&typ, tag, app, priority])
        .inc();

    CONCURRENT_DOWNLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app, priority])
        .inc();
}

/// Collects the download task finished metrics.
#[instrument(skip_all)]
pub fn collect_download_task_finished_metrics(
    typ: i32,
    tag: &str,
    app: &str,
    priority: &str,
    content_length: u64,
    range: Option<Range>,
    cost: Duration,
) {
    let size = match range {
        Some(range) => range.length,
        None => content_length,
    };

    let task_size = TaskSize::calculate_size_level(size);

    // Nydus will request the small range of the file, so the download task duration
    // should be short. Collect the slow download Level0 & Level1 task for analysis.
    if matches!(
        task_size,
        TaskSize::Level0 | TaskSize::Level1 | TaskSize::Level2
    ) && cost > DOWNLOAD_SMALL_TASK_DURATION_THRESHOLD
    {
        warn!("download task, cost: {:?}, size: {} bytes", cost, size);
    }

    let typ = typ.to_string();
    let task_size = task_size.to_string();

    DOWNLOAD_TASK_DURATION
        .with_label_values(&[&typ, &task_size])
        .observe(cost.as_millis() as f64);

    CONCURRENT_DOWNLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app, priority])
        .dec();
}

/// Collects the download task failure metrics.
pub fn collect_download_task_failure_metrics(typ: i32, tag: &str, app: &str, priority: &str) {
    let typ = typ.to_string();

    DOWNLOAD_TASK_FAILURE_COUNT
        .with_label_values(&[&typ, tag, app, priority])
        .inc();

    CONCURRENT_DOWNLOAD_TASK_GAUGE
        .with_label_values(&[&typ, tag, app, priority])
        .dec();
}

/// Collects the prefetch task started metrics.
pub fn collect_prefetch_task_started_metrics(typ: i32, tag: &str, app: &str, priority: &str) {
    PREFETCH_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str(), tag, app, priority])
        .inc();
}

/// Collects the prefetch task failure metrics.
pub fn collect_prefetch_task_failure_metrics(typ: i32, tag: &str, app: &str, priority: &str) {
    PREFETCH_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str(), tag, app, priority])
        .inc();
}

/// Collects the download piece traffic metrics.
pub fn collect_download_piece_traffic_metrics(typ: &TrafficType, length: u64) {
    DOWNLOAD_TRAFFIC
        .with_label_values(&[typ.as_str_name()])
        .inc_by(length);
}

/// Collects the upload piece started metrics.
pub fn collect_upload_piece_started_metrics() {
    CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).inc();
}

/// Collects the upload piece finished metrics.
pub fn collect_upload_piece_finished_metrics() {
    CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).dec();
}

/// Collects the upload piece traffic metrics.
pub fn collect_upload_piece_traffic_metrics(length: u64) {
    UPLOAD_TRAFFIC.with_label_values(&[]).inc_by(length);
}

/// Collects the upload piece failure metrics.
pub fn collect_upload_piece_failure_metrics() {
    CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).dec();
}

/// Collects the backend request started metrics.
pub fn collect_backend_request_started_metrics(scheme: &str, method: &str) {
    BACKEND_REQUEST_COUNT
        .with_label_values(&[scheme, method])
        .inc();
}

/// Collects the backend request failure metrics.
pub fn collect_backend_request_failure_metrics(scheme: &str, method: &str) {
    BACKEND_REQUEST_FAILURE_COUNT
        .with_label_values(&[scheme, method])
        .inc();
}

/// Collects the backend request finished metrics.
pub fn collect_backend_request_finished_metrics(scheme: &str, method: &str, cost: Duration) {
    BACKEND_REQUEST_DURATION
        .with_label_values(&[scheme, method])
        .observe(cost.as_millis() as f64);
}

/// Collects the proxy request started metrics.
pub fn collect_proxy_request_started_metrics() {
    PROXY_REQUEST_COUNT.with_label_values(&[]).inc();
}

/// Collects the proxy request failure metrics.
pub fn collect_proxy_request_failure_metrics() {
    PROXY_REQUEST_FAILURE_COUNT.with_label_values(&[]).inc();
}

/// Collects the proxy request via dfdaemon metrics.
pub fn collect_proxy_request_via_dfdaemon_metrics() {
    PROXY_REQUEST_VIA_DFDAEMON_COUNT
        .with_label_values(&[])
        .inc();
}

/// Collects the update task started metrics.
pub fn collect_update_task_started_metrics(typ: i32) {
    UPDATE_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the update task failure metrics.
pub fn collect_update_task_failure_metrics(typ: i32) {
    UPDATE_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the stat task started metrics.
pub fn collect_stat_task_started_metrics(typ: i32) {
    STAT_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the stat task failure metrics.
pub fn collect_stat_task_failure_metrics(typ: i32) {
    STAT_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the stat local task started metrics.
pub fn collect_stat_local_task_started_metrics(typ: i32) {
    STAT_LOCAL_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the stat local task failure metrics.
pub fn collect_stat_local_task_failure_metrics(typ: i32) {
    STAT_LOCAL_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the list task entries started metrics.
pub fn collect_list_local_tasks_started_metrics(typ: i32) {
    LIST_LOCAL_TASKS_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the list task entries failure metrics.
pub fn collect_list_local_tasks_failure_metrics(typ: i32) {
    LIST_LOCAL_TASKS_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the list task entries started metrics.
pub fn collect_list_task_entries_started_metrics(typ: i32) {
    LIST_TASK_ENTRIES_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the list task entries failure metrics.
pub fn collect_list_task_entries_failure_metrics(typ: i32) {
    LIST_TASK_ENTRIES_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the delete task started metrics.
pub fn collect_delete_task_started_metrics(typ: i32) {
    DELETE_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the delete task failure metrics.
pub fn collect_delete_task_failure_metrics(typ: i32) {
    DELETE_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the delete local task started metrics.
pub fn collect_delete_local_task_started_metrics(typ: i32) {
    DELETE_LOCAL_TASK_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the delete local task failure metrics.
pub fn collect_delete_local_task_failure_metrics(typ: i32) {
    DELETE_LOCAL_TASK_FAILURE_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the delete host started metrics.
pub fn collect_delete_host_started_metrics() {
    DELETE_HOST_COUNT.with_label_values(&[]).inc();
}

/// Collects the delete host failure metrics.
pub fn collect_delete_host_failure_metrics() {
    DELETE_HOST_FAILURE_COUNT.with_label_values(&[]).inc();
}

/// Collects the disk metrics.
pub fn collect_disk_metrics(path: &Path) {
    // Collect disk space metrics.
    let stats = match fs2::statvfs(path) {
        Ok(stats) => stats,
        Err(err) => {
            error!("failed to get disk space: {}", err);
            return;
        }
    };

    let total_space = stats.total_space();
    let available_space = stats.available_space();
    let usage_space = total_space - available_space;
    DISK_SPACE.with_label_values(&[]).set(total_space as i64);
    DISK_USAGE_SPACE
        .with_label_values(&[])
        .set(usage_space as i64);
}

/// Collects the download task blocked metrics.
pub fn collect_download_task_blocked_metrics(typ: i32) {
    DOWNLOAD_TASK_BLOCKED_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// Collects the upload task blocked metrics.
pub fn collect_upload_task_blocked_metrics(typ: i32) {
    UPLOAD_TASK_BLOCKED_COUNT
        .with_label_values(&[typ.to_string().as_str()])
        .inc();
}

/// The metrics server.
#[derive(Debug)]
pub struct Metrics {
    /// The configuration of the dfdaemon.
    config: Arc<Config>,

    /// Used to shutdown the metrics server.
    shutdown: shutdown::Shutdown,

    /// Used to notify the metrics server is shutdown.
    _shutdown_complete: mpsc::UnboundedSender<()>,
}

/// Implements the metrics server.
impl Metrics {
    /// Creates a new Metrics.
    pub fn new(
        config: Arc<Config>,
        shutdown: shutdown::Shutdown,
        shutdown_complete_tx: mpsc::UnboundedSender<()>,
    ) -> Self {
        Self {
            config,
            shutdown,
            _shutdown_complete: shutdown_complete_tx,
        }
    }

    /// Starts the metrics server.
    pub async fn run(&self) {
        // Clone the shutdown channel.
        let mut shutdown = self.shutdown.clone();

        // Register custom metrics.
        register_custom_metrics();

        // VERSION_GAUGE sets the version info of the service.
        VERSION_GAUGE
            .get_metric_with_label_values(&[
                CARGO_PKG_VERSION,
                GIT_COMMIT_SHORT_HASH,
                BUILD_PLATFORM,
                GIT_COMMIT_DATE,
            ])
            .unwrap()
            .set(1);

        // Clone the config.
        let config = self.config.clone();

        // Create the metrics server address.
        let addr = SocketAddr::new(
            self.config.metrics.server.ip.unwrap(),
            self.config.metrics.server.port,
        );

        // Get the metrics route.
        let get_metrics_route = warp::path!("metrics")
            .and(warp::get())
            .and(warp::path::end())
            .and_then(move || Self::get_metrics_handler(config.clone()));

        // Delete the metrics route.
        let delete_metrics_route = warp::path!("metrics")
            .and(warp::delete())
            .and(warp::path::end())
            .and_then(Self::delete_metrics_handler);
        let metrics_routes = get_metrics_route.or(delete_metrics_route);

        // Start the metrics server and wait for it to finish.
        info!("metrics server listening on {}", addr);
        tokio::select! {
            _ = warp::serve(metrics_routes).run(addr) => {
                // Metrics server ended.
                info!("metrics server ended");
            }
            _ = shutdown.recv() => {
                // Metrics server shutting down with signals.
                info!("metrics server shutting down");
            }
        }
    }

    /// Handles the metrics request of getting.
    #[instrument(skip_all)]
    async fn get_metrics_handler(config: Arc<Config>) -> Result<impl Reply, Rejection> {
        // Collect the disk space metrics.
        collect_disk_metrics(config.storage.dir.as_path());

        // Encode custom metrics.
        let encoder = TextEncoder::new();
        let mut buf = Vec::new();
        if let Err(err) = encoder.encode(&REGISTRY.gather(), &mut buf) {
            error!("could not encode custom metrics: {}", err);
        };

        let mut res = match String::from_utf8(buf.clone()) {
            Ok(v) => v,
            Err(err) => {
                error!("custom metrics could not be from_utf8'd: {}", err);
                String::default()
            }
        };
        buf.clear();

        // Encode prometheus metrics.
        let mut buf = Vec::new();
        if let Err(err) = encoder.encode(&gather(), &mut buf) {
            error!("could not encode prometheus metrics: {}", err);
        };

        let res_custom = match String::from_utf8(buf.clone()) {
            Ok(v) => v,
            Err(err) => {
                error!("prometheus metrics could not be from_utf8'd: {}", err);
                String::default()
            }
        };
        buf.clear();

        res.push_str(&res_custom);
        Ok(res)
    }

    /// Handles the metrics request of deleting.
    #[instrument(skip_all)]
    async fn delete_metrics_handler() -> Result<impl Reply, Rejection> {
        reset_custom_metrics();
        Ok(Vec::new())
    }
}

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

    #[test]
    fn test_task_size_calculate_size_level() {
        assert_eq!(TaskSize::calculate_size_level(0), TaskSize::Level0);
        assert_eq!(TaskSize::calculate_size_level(1), TaskSize::Level1);
        assert_eq!(TaskSize::calculate_size_level(512 * 1024), TaskSize::Level1);
        assert_eq!(
            TaskSize::calculate_size_level(1024 * 1024 - 1),
            TaskSize::Level1
        );
        assert_eq!(
            TaskSize::calculate_size_level(1024 * 1024),
            TaskSize::Level2
        );
        assert_eq!(
            TaskSize::calculate_size_level(2 * 1024 * 1024),
            TaskSize::Level2
        );
        assert_eq!(
            TaskSize::calculate_size_level(4 * 1024 * 1024 - 1),
            TaskSize::Level2
        );
        assert_eq!(
            TaskSize::calculate_size_level(4 * 1024 * 1024),
            TaskSize::Level3
        );
        assert_eq!(
            TaskSize::calculate_size_level(6 * 1024 * 1024),
            TaskSize::Level3
        );
        assert_eq!(
            TaskSize::calculate_size_level(8 * 1024 * 1024),
            TaskSize::Level4
        );
        assert_eq!(
            TaskSize::calculate_size_level(16 * 1024 * 1024),
            TaskSize::Level5
        );
        assert_eq!(
            TaskSize::calculate_size_level(32 * 1024 * 1024),
            TaskSize::Level6
        );
        assert_eq!(
            TaskSize::calculate_size_level(64 * 1024 * 1024),
            TaskSize::Level7
        );
        assert_eq!(
            TaskSize::calculate_size_level(128 * 1024 * 1024),
            TaskSize::Level8
        );
        assert_eq!(
            TaskSize::calculate_size_level(256 * 1024 * 1024),
            TaskSize::Level9
        );
        assert_eq!(
            TaskSize::calculate_size_level(512 * 1024 * 1024),
            TaskSize::Level10
        );
        assert_eq!(
            TaskSize::calculate_size_level(1024 * 1024 * 1024),
            TaskSize::Level11
        );
        assert_eq!(
            TaskSize::calculate_size_level(2 * 1024 * 1024 * 1024),
            TaskSize::Level11
        );
        assert_eq!(
            TaskSize::calculate_size_level(4 * 1024 * 1024 * 1024),
            TaskSize::Level12
        );
        assert_eq!(
            TaskSize::calculate_size_level(8 * 1024 * 1024 * 1024),
            TaskSize::Level13
        );
        assert_eq!(
            TaskSize::calculate_size_level(16 * 1024 * 1024 * 1024),
            TaskSize::Level14
        );
        assert_eq!(
            TaskSize::calculate_size_level(32 * 1024 * 1024 * 1024),
            TaskSize::Level15
        );
        assert_eq!(
            TaskSize::calculate_size_level(64 * 1024 * 1024 * 1024),
            TaskSize::Level16
        );
        assert_eq!(
            TaskSize::calculate_size_level(128 * 1024 * 1024 * 1024),
            TaskSize::Level17
        );
        assert_eq!(
            TaskSize::calculate_size_level(256 * 1024 * 1024 * 1024),
            TaskSize::Level18
        );
        assert_eq!(
            TaskSize::calculate_size_level(512 * 1024 * 1024 * 1024),
            TaskSize::Level19
        );
        assert_eq!(
            TaskSize::calculate_size_level(1024 * 1024 * 1024 * 1024),
            TaskSize::Level20
        );
        assert_eq!(
            TaskSize::calculate_size_level(2 * 1024 * 1024 * 1024 * 1024),
            TaskSize::Level20
        );
    }

    #[test]
    fn test_task_size_display() {
        assert_eq!(format!("{}", TaskSize::Level0), "0");
        assert_eq!(format!("{}", TaskSize::Level1), "1");
        assert_eq!(format!("{}", TaskSize::Level2), "2");
        assert_eq!(format!("{}", TaskSize::Level3), "3");
        assert_eq!(format!("{}", TaskSize::Level4), "4");
        assert_eq!(format!("{}", TaskSize::Level5), "5");
        assert_eq!(format!("{}", TaskSize::Level6), "6");
        assert_eq!(format!("{}", TaskSize::Level7), "7");
        assert_eq!(format!("{}", TaskSize::Level8), "8");
        assert_eq!(format!("{}", TaskSize::Level9), "9");
        assert_eq!(format!("{}", TaskSize::Level10), "10");
        assert_eq!(format!("{}", TaskSize::Level11), "11");
        assert_eq!(format!("{}", TaskSize::Level12), "12");
        assert_eq!(format!("{}", TaskSize::Level13), "13");
        assert_eq!(format!("{}", TaskSize::Level14), "14");
        assert_eq!(format!("{}", TaskSize::Level15), "15");
        assert_eq!(format!("{}", TaskSize::Level16), "16");
        assert_eq!(format!("{}", TaskSize::Level17), "17");
        assert_eq!(format!("{}", TaskSize::Level18), "18");
        assert_eq!(format!("{}", TaskSize::Level19), "19");
        assert_eq!(format!("{}", TaskSize::Level20), "20");
    }

    #[test]
    fn test_collect_upload_task_metrics() {
        let tag = "test-upload-tag";
        let app = "test-upload-app";
        collect_upload_task_started_metrics(1, tag, app);

        let counter = UPLOAD_TASK_COUNT.with_label_values(&["1", tag, app]).get();
        assert!(counter >= 1);

        let gauge_before = CONCURRENT_UPLOAD_TASK_GAUGE
            .with_label_values(&["1", tag, app])
            .get();
        let duration = Duration::from_millis(100);
        collect_upload_task_finished_metrics(1, tag, app, 1024, duration);

        let gauge_after = CONCURRENT_UPLOAD_TASK_GAUGE
            .with_label_values(&["1", tag, app])
            .get();
        assert_eq!(gauge_after, gauge_before - 1);

        collect_upload_task_started_metrics(1, tag, app);
        let gauge_before_failure = CONCURRENT_UPLOAD_TASK_GAUGE
            .with_label_values(&["1", tag, app])
            .get();
        collect_upload_task_failure_metrics(1, tag, app);

        let failure_counter = UPLOAD_TASK_FAILURE_COUNT
            .with_label_values(&["1", tag, app])
            .get();
        assert!(failure_counter >= 1);

        let gauge_after_failure = CONCURRENT_UPLOAD_TASK_GAUGE
            .with_label_values(&["1", tag, app])
            .get();
        assert_eq!(gauge_after_failure, gauge_before_failure - 1);
    }

    #[test]
    fn test_collect_download_task_metrics() {
        let tag = "test-download-tag";
        let app = "test-download-app";
        let priority = "5";
        collect_download_task_started_metrics(2, tag, app, priority);
        let counter = DOWNLOAD_TASK_COUNT
            .with_label_values(&["2", tag, app, priority])
            .get();
        assert!(counter >= 1);

        let gauge_before = CONCURRENT_DOWNLOAD_TASK_GAUGE
            .with_label_values(&["2", tag, app, priority])
            .get();

        let duration = Duration::from_millis(200);
        collect_download_task_finished_metrics(2, tag, app, priority, 1024 * 1024, None, duration);

        let gauge_after = CONCURRENT_DOWNLOAD_TASK_GAUGE
            .with_label_values(&["2", tag, app, priority])
            .get();
        assert_eq!(gauge_after, gauge_before - 1);

        collect_download_task_started_metrics(2, tag, app, priority);
        let gauge_before_failure = CONCURRENT_DOWNLOAD_TASK_GAUGE
            .with_label_values(&["2", tag, app, priority])
            .get();
        collect_download_task_failure_metrics(2, tag, app, priority);
        let failure_counter = DOWNLOAD_TASK_FAILURE_COUNT
            .with_label_values(&["2", tag, app, priority])
            .get();
        assert!(failure_counter >= 1);

        let gauge_after_failure = CONCURRENT_DOWNLOAD_TASK_GAUGE
            .with_label_values(&["2", tag, app, priority])
            .get();
        assert_eq!(gauge_after_failure, gauge_before_failure - 1);
    }

    #[test]
    fn test_collect_prefetch_task_metrics() {
        let tag = "test-prefetch-tag";
        let app = "test-prefetch-app";
        let priority = "5";
        let counter_before = PREFETCH_TASK_COUNT
            .with_label_values(&["3", tag, app, priority])
            .get();

        collect_prefetch_task_started_metrics(3, tag, app, priority);
        let counter_after = PREFETCH_TASK_COUNT
            .with_label_values(&["3", tag, app, priority])
            .get();
        assert_eq!(counter_after, counter_before + 1);

        let failure_before = PREFETCH_TASK_FAILURE_COUNT
            .with_label_values(&["3", tag, app, priority])
            .get();
        collect_prefetch_task_failure_metrics(3, tag, app, priority);

        let failure_after = PREFETCH_TASK_FAILURE_COUNT
            .with_label_values(&["3", tag, app, priority])
            .get();
        assert_eq!(failure_after, failure_before + 1);
    }

    #[test]
    fn test_collect_upload_piece_metrics() {
        let gauge_before = CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).get();
        collect_upload_piece_started_metrics();

        let gauge_after_start = CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).get();
        assert_eq!(gauge_after_start, gauge_before + 1);
        collect_upload_piece_finished_metrics();

        let gauge_after_finish = CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).get();
        assert_eq!(gauge_after_finish, gauge_after_start - 1);

        let traffic_before = UPLOAD_TRAFFIC.with_label_values(&[]).get();
        collect_upload_piece_traffic_metrics(1024);

        let traffic_after = UPLOAD_TRAFFIC.with_label_values(&[]).get();
        assert_eq!(traffic_after, traffic_before + 1024);

        collect_upload_piece_started_metrics();
        let gauge_before_failure = CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).get();
        collect_upload_piece_failure_metrics();
        let gauge_after_failure = CONCURRENT_UPLOAD_PIECE_GAUGE.with_label_values(&[]).get();
        assert_eq!(gauge_after_failure, gauge_before_failure - 1);
    }

    #[test]
    fn test_collect_download_piece_traffic_metrics() {
        let traffic_type = TrafficType::RemotePeer;
        collect_download_piece_traffic_metrics(&traffic_type, 2048);

        let traffic = DOWNLOAD_TRAFFIC
            .with_label_values(&[traffic_type.as_str_name()])
            .get();
        assert!(traffic >= 2048);
    }

    #[test]
    fn test_collect_backend_request_metrics() {
        collect_backend_request_started_metrics("http", "GET");
        let counter = BACKEND_REQUEST_COUNT
            .with_label_values(&["http", "GET"])
            .get();
        assert!(counter > 0);

        collect_backend_request_failure_metrics("http", "GET");
        let failure_counter = BACKEND_REQUEST_FAILURE_COUNT
            .with_label_values(&["http", "GET"])
            .get();
        assert!(failure_counter > 0);

        let duration = Duration::from_millis(150);
        collect_backend_request_finished_metrics("http", "POST", duration);

        let histogram = BACKEND_REQUEST_DURATION
            .with_label_values(&["http", "POST"])
            .get_sample_count();
        assert!(histogram > 0);
    }

    #[test]
    fn test_collect_proxy_request_metrics() {
        collect_proxy_request_started_metrics();
        let counter = PROXY_REQUEST_COUNT.with_label_values(&[]).get();
        assert!(counter > 0);

        collect_proxy_request_failure_metrics();
        let failure_counter = PROXY_REQUEST_FAILURE_COUNT.with_label_values(&[]).get();
        assert!(failure_counter > 0);

        collect_proxy_request_via_dfdaemon_metrics();
        let via_dfdaemon_counter = PROXY_REQUEST_VIA_DFDAEMON_COUNT
            .with_label_values(&[])
            .get();
        assert!(via_dfdaemon_counter > 0);
    }

    #[test]
    fn test_collect_update_task_metrics() {
        collect_update_task_started_metrics(1);

        let counter = UPDATE_TASK_COUNT.with_label_values(&["1"]).get();
        assert!(counter > 0);

        collect_update_task_failure_metrics(1);

        let failure_counter = UPDATE_TASK_FAILURE_COUNT.with_label_values(&["1"]).get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_stat_task_metrics() {
        collect_stat_task_started_metrics(2);
        let counter = STAT_TASK_COUNT.with_label_values(&["2"]).get();
        assert!(counter > 0);

        collect_stat_task_failure_metrics(2);
        let failure_counter = STAT_TASK_FAILURE_COUNT.with_label_values(&["2"]).get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_stat_local_task_metrics() {
        collect_stat_local_task_started_metrics(3);
        let counter = STAT_LOCAL_TASK_COUNT.with_label_values(&["3"]).get();
        assert!(counter > 0);

        collect_stat_local_task_failure_metrics(3);
        let failure_counter = STAT_LOCAL_TASK_FAILURE_COUNT
            .with_label_values(&["3"])
            .get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_list_local_tasks_metrics() {
        collect_list_local_tasks_started_metrics(4);
        let counter = LIST_LOCAL_TASKS_COUNT.with_label_values(&["4"]).get();
        assert!(counter > 0);

        collect_list_local_tasks_failure_metrics(4);
        let failure_counter = LIST_LOCAL_TASKS_FAILURE_COUNT
            .with_label_values(&["4"])
            .get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_list_task_entries_metrics() {
        collect_list_task_entries_started_metrics(4);
        let counter = LIST_TASK_ENTRIES_COUNT.with_label_values(&["4"]).get();
        assert!(counter > 0);

        collect_list_task_entries_failure_metrics(4);
        let failure_counter = LIST_TASK_ENTRIES_FAILURE_COUNT
            .with_label_values(&["4"])
            .get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_delete_task_metrics() {
        collect_delete_task_started_metrics(5);
        let counter = DELETE_TASK_COUNT.with_label_values(&["5"]).get();
        assert!(counter > 0);

        collect_delete_task_failure_metrics(5);
        let failure_counter = DELETE_TASK_FAILURE_COUNT.with_label_values(&["5"]).get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_delete_local_task_metrics() {
        collect_delete_local_task_started_metrics(5);
        let counter = DELETE_LOCAL_TASK_COUNT.with_label_values(&["5"]).get();
        assert!(counter > 0);

        collect_delete_local_task_failure_metrics(5);
        let failure_counter = DELETE_LOCAL_TASK_FAILURE_COUNT
            .with_label_values(&["5"])
            .get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_collect_delete_host_metrics() {
        collect_delete_host_started_metrics();
        let counter = DELETE_HOST_COUNT.with_label_values(&[]).get();
        assert!(counter > 0);

        collect_delete_host_failure_metrics();
        let failure_counter = DELETE_HOST_FAILURE_COUNT.with_label_values(&[]).get();
        assert!(failure_counter > 0);
    }

    #[test]
    fn test_task_size_level1_slow_download() {
        let tag = "slow-download-tag";
        let app = "slow-download-app";
        let small_size = 512 * 1024;
        let slow_duration = Duration::from_millis(600);

        collect_download_task_started_metrics(1, tag, app, "5");
        let histogram_before = DOWNLOAD_TASK_DURATION
            .with_label_values(&["1", "1"])
            .get_sample_count();
        collect_download_task_finished_metrics(1, tag, app, "5", small_size, None, slow_duration);
        let histogram_after = DOWNLOAD_TASK_DURATION
            .with_label_values(&["1", "1"])
            .get_sample_count();
        assert_eq!(histogram_after, histogram_before + 1);
    }

    #[test]
    fn test_task_size_level1_slow_upload() {
        let tag = "slow-upload-tag";
        let app = "slow-upload-app";
        let small_size = 512 * 1024;
        let slow_duration = Duration::from_millis(1000);
        collect_upload_task_started_metrics(1, tag, app);

        let histogram_before = UPLOAD_TASK_DURATION
            .with_label_values(&["1", "1"])
            .get_sample_count();
        collect_upload_task_finished_metrics(1, tag, app, small_size, slow_duration);

        let histogram_after = UPLOAD_TASK_DURATION
            .with_label_values(&["1", "1"])
            .get_sample_count();
        assert_eq!(histogram_after, histogram_before + 1);
    }

    #[test]
    fn test_download_task_with_range() {
        let range = Range {
            start: 0,
            length: 1024,
        };
        let duration = Duration::from_millis(50);
        collect_download_task_started_metrics(1, "range-tag", "range-app", "5");
        collect_download_task_finished_metrics(
            1,
            "range-tag",
            "range-app",
            "5",
            10240,
            Some(range),
            duration,
        );

        let histogram = DOWNLOAD_TASK_DURATION
            .with_label_values(&["1", "1"])
            .get_sample_count();
        assert!(histogram > 0);
    }
}