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
/*!
Prometheus instrumentation for [actix-web](https://github.com/actix/actix-web).
This middleware is inspired by and forked from [actix-web-prom](https://github.com/nlopes/actix-web-prom).
By default three metrics are tracked (this assumes the namespace `actix_web_prometheus`):
- `actix_web_prometheus_incoming_requests` (labels: endpoint, method, status): the total number
of HTTP requests handled by the actix HttpServer.
- `actix_web_prometheus_response_code` (labels: endpoint, method, statuscode, type): Response codes
of all HTTP requests handled by the actix HttpServer.
- `actix_web_prometheus_response_time` (labels: endpoint, method, status): Total the request duration
of all HTTP requests handled by the actix HttpServer.
# Usage
First add `actix-web-prom` to your `Cargo.toml`:
```toml
[dependencies]
actix-web-prometheus = "0.1.0-beta.8"
```
You then instantiate the prometheus middleware and pass it to `.wrap()`:
```rust
use std::collections::HashMap;
use actix_web::{web, App, HttpResponse, HttpServer};
use actix_web_prometheus::{PrometheusMetrics, PrometheusMetricsBuilder};
fn health() -> HttpResponse {
HttpResponse::Ok().finish()
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
let mut labels = HashMap::new();
labels.insert("label1".to_string(), "value1".to_string());
let prometheus = PrometheusMetricsBuilder::new("api")
.endpoint("/metrics")
.const_labels(labels)
.build()
.unwrap();
# if false {
HttpServer::new(move || {
App::new()
.wrap(prometheus.clone())
.service(web::resource("/health").to(health))
})
.bind("127.0.0.1:8080")?
.run()
.await?;
# }
Ok(())
}
```
Using the above as an example, a few things are worth mentioning:
- `api` is the metrics namespace
- `/metrics` will be auto exposed (GET requests only) with Content-Type header `content-type: text/plain; version=0.0.4; charset=utf-8`
- `Some(labels)` is used to add fixed labels to the metrics; `None` can be passed instead
if no additional labels are necessary.
A call to the /metrics endpoint will expose your metrics:
```shell
$ curl http://localhost:8080/metrics
# HELP actix_web_prometheus_incoming_requests Incoming Requests
# TYPE actix_web_prometheus_incoming_requests counter
actix_web_prometheus_incoming_requests{endpoint="/metrics",method="GET",status="200"} 23
# HELP actix_web_prometheus_response_code Response Codes
# TYPE actix_web_prometheus_response_code counter
actix_web_prometheus_response_code{endpoint="/metrics",method="GET",statuscode="200",type="200"} 23
# HELP actix_web_prometheus_response_time Response Times
# TYPE actix_web_prometheus_response_time histogram
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.005"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.01"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.025"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.05"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.1"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.25"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="0.5"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="1"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="2.5"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="5"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="10"} 23
actix_web_prometheus_response_time_bucket{endpoint="/metrics",method="GET",status="200",le="+Inf"} 23
actix_web_prometheus_response_time_sum{endpoint="/metrics",method="GET",status="200"} 0.00410981
actix_web_prometheus_response_time_count{endpoint="/metrics",method="GET",status="200"} 23
```
## Features
If you enable `process` feature of this crate, default process metrics will also be collected.
[Default process metrics](https://prometheus.io/docs/instrumenting/writing_clientlibs/#process-metrics)
```shell
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
process_cpu_seconds_total 0.22
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
process_max_fds 1048576
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
process_open_fds 78
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
process_resident_memory_bytes 17526784
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
process_start_time_seconds 1628105774.92
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
process_virtual_memory_bytes 1893163008
```
## Custom metrics
You instantiate `PrometheusMetrics` and then use its `.registry` to register your custom
metric (in this case, we use a `IntCounterVec`).
Then you can pass this counter through `.data()` to have it available within the resource
responder.
```rust
use actix_web::{web, App, HttpResponse, HttpServer};
use actix_web_prometheus::{PrometheusMetrics, PrometheusMetricsBuilder};
use prometheus::{opts, IntCounterVec};
fn health(counter: web::Data<IntCounterVec>) -> HttpResponse {
counter.with_label_values(&["endpoint", "method", "status"]).inc();
HttpResponse::Ok().finish()
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
let prometheus = PrometheusMetricsBuilder::new("api")
.endpoint("/metrics")
.build()
.unwrap();
let counter_opts = opts!("counter", "some random counter").namespace("api");
let counter = IntCounterVec::new(counter_opts, &["endpoint", "method", "status"]).unwrap();
prometheus
.registry
.register(Box::new(counter.clone()))
.unwrap();
# if false {
HttpServer::new(move || {
App::new()
.wrap(prometheus.clone())
.app_data(web::Data::new(counter.clone()))
.service(web::resource("/health").to(health))
})
.bind("127.0.0.1:8080")?
.run()
.await?;
# }
Ok(())
}
```
*/
pub use Error;
use ;
use ;
use ready;
use ;
use Error as StdError;
use Future;
use Pin;
use Rc;
use ;
/// Builder to create new PrometheusMetrics struct.HistogramVec
///
/// It allow set optional parameters like registry, buckets, etc.
use ;
use HeaderValue;
use ;
use HashMap;
use PhantomData;
// TODO: rework tests
// #[cfg(test)]
// mod tests {
// use super::*;
// use actix_web::rt as actix_rt;
// use actix_web::test::{call_service, init_service, read_body, read_response, TestRequest};
// use actix_web::{web, App, HttpResponse};
//
// use actix_web::middleware::Compat;
// use prometheus::{Counter, Encoder, Opts, TextEncoder};
//
// #[actix_rt::test]
// async fn middleware_basic() {
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/metrics")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/health_check").to(HttpResponse::Ok)),
// )
// .await;
//
// let res = call_service(
// &mut app,
// TestRequest::with_uri("/health_check").to_request(),
// )
// .await;
// assert!(res.status().is_success());
// assert_eq!(read_body(res).await, "");
//
// let res = call_service(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// assert_eq!(
// res.headers().get(CONTENT_TYPE).unwrap(),
// "text/plain; version=0.0.4; charset=utf-8"
// );
// let body = String::from_utf8(read_body(res).await.to_vec()).unwrap();
// println!("{:#?}", body);
// assert!(&body.contains(
// &String::from_utf8(web::Bytes::from(
// "# HELP actix_web_prom_http_requests_duration_seconds HTTP request duration in seconds for all requests
// # TYPE actix_web_prom_http_requests_duration_seconds histogram
// actix_web_prom_http_requests_duration_seconds_bucket{endpoint=\"/health_check\",method=\"GET\",status=\"200\",le=\"0.005\"} 1
// "
// ).to_vec()).unwrap()));
// assert!(body.contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_http_requests_total Total number of HTTP requests
// # TYPE actix_web_prom_http_requests_total counter
// actix_web_prom_http_requests_total{endpoint=\"/health_check\",method=\"GET\",status=\"200\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_scope() {
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/internal/metrics")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new().service(
// web::scope("/internal")
// .wrap(Compat::new(prometheus))
// .service(web::resource("/health_check").to(HttpResponse::Ok)),
// ),
// )
// .await;
//
// let res = call_service(
// &mut app,
// TestRequest::with_uri("/internal/health_check").to_request(),
// )
// .await;
// assert!(res.status().is_success());
// assert_eq!(read_body(res).await, "");
//
// let res = call_service(
// &mut app,
// TestRequest::with_uri("/internal/metrics").to_request(),
// )
// .await;
// assert_eq!(
// res.headers().get(CONTENT_TYPE).unwrap(),
// "text/plain; version=0.0.4; charset=utf-8"
// );
// let body = String::from_utf8(read_body(res).await.to_vec()).unwrap();
// assert!(&body.contains(
// &String::from_utf8(web::Bytes::from(
// "# HELP actix_web_prom_http_requests_duration_seconds HTTP request duration in seconds for all requests
// # TYPE actix_web_prom_http_requests_duration_seconds histogram
// actix_web_prom_http_requests_duration_seconds_bucket{endpoint=\"/internal/health_check\",method=\"GET\",status=\"200\",le=\"0.005\"} 1
// "
// ).to_vec()).unwrap()));
// assert!(body.contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_http_requests_total Total number of HTTP requests
// # TYPE actix_web_prom_http_requests_total counter
// actix_web_prom_http_requests_total{endpoint=\"/internal/health_check\",method=\"GET\",status=\"200\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_match_pattern() {
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/metrics")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/resource/{id}").to(HttpResponse::Ok)),
// )
// .await;
//
// let res = call_service(
// &mut app,
// TestRequest::with_uri("/resource/123").to_request(),
// )
// .await;
// assert!(res.status().is_success());
// assert_eq!(read_body(res).await, "");
//
// let res = read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// let body = String::from_utf8(res.to_vec()).unwrap();
// assert!(&body.contains(
// &String::from_utf8(web::Bytes::from(
// "# HELP actix_web_prom_http_requests_duration_seconds HTTP request duration in seconds for all requests
// # TYPE actix_web_prom_http_requests_duration_seconds histogram
// actix_web_prom_http_requests_duration_seconds_bucket{endpoint=\"/resource/{id}\",method=\"GET\",status=\"200\",le=\"0.005\"} 1
// "
// ).to_vec()).unwrap()));
// assert!(body.contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_http_requests_total Total number of HTTP requests
// # TYPE actix_web_prom_http_requests_total counter
// actix_web_prom_http_requests_total{endpoint=\"/resource/{id}\",method=\"GET\",status=\"200\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_metrics_exposed_with_conflicting_pattern() {
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/metrics")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/{path}").to(HttpResponse::Ok)),
// )
// .await;
//
// let res = call_service(&mut app, TestRequest::with_uri("/something").to_request()).await;
// assert!(res.status().is_success());
// assert_eq!(read_body(res).await, "");
//
// let res = read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// let body = String::from_utf8(res.to_vec()).unwrap();
// assert!(&body.contains(
// &String::from_utf8(web::Bytes::from(
// "# HELP actix_web_prom_http_requests_duration_seconds HTTP request duration in seconds for all requests"
// ).to_vec()).unwrap()));
// }
//
// #[actix_rt::test]
// async fn middleware_basic_failure() {
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/prometheus")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/health_check").to(HttpResponse::Ok)),
// )
// .await;
//
// call_service(
// &mut app,
// TestRequest::with_uri("/health_checkz").to_request(),
// )
// .await;
// let res = read_response(&mut app, TestRequest::with_uri("/prometheus").to_request()).await;
// assert!(String::from_utf8(res.to_vec()).unwrap().contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_http_requests_total Total number of HTTP requests
// # TYPE actix_web_prom_http_requests_total counter
// actix_web_prom_http_requests_total{endpoint=\"/health_checkz\",method=\"GET\",status=\"404\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_custom_counter() {
// let counter_opts = Opts::new("counter", "some random counter").namespace("actix_web_prom");
// let counter = IntCounterVec::new(counter_opts, &["endpoint", "method", "status"]).unwrap();
//
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/metrics")
// .build()
// .unwrap();
//
// prometheus
// .registry
// .register(Box::new(counter.clone()))
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/health_check").to(HttpResponse::Ok)),
// )
// .await;
//
// // Verify that 'counter' does not appear in the output before we use it
// call_service(
// &mut app,
// TestRequest::with_uri("/health_check").to_request(),
// )
// .await;
// let res = read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// assert!(!String::from_utf8(res.to_vec()).unwrap().contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_counter some random counter
// # TYPE actix_web_prom_counter counter
// actix_web_prom_counter{endpoint=\"endpoint\",method=\"method\",status=\"status\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
//
// // Verify that 'counter' appears after we use it
// counter
// .with_label_values(&["endpoint", "method", "status"])
// .inc();
// counter
// .with_label_values(&["endpoint", "method", "status"])
// .inc();
// call_service(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// let res = read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// assert!(String::from_utf8(res.to_vec()).unwrap().contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_counter some random counter
// # TYPE actix_web_prom_counter counter
// actix_web_prom_counter{endpoint=\"endpoint\",method=\"method\",status=\"status\"} 2
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_none_endpoint() {
// // Init PrometheusMetrics with none URL
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .build()
// .unwrap();
//
// let mut app =
// init_service(App::new().wrap(prometheus.clone()).service(
// web::resource("/metrics").to(|| HttpResponse::Ok().body("not prometheus")),
// ))
// .await;
//
// let response =
// read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
//
// // Assert app works
// assert_eq!(
// String::from_utf8(response.to_vec()).unwrap(),
// "not prometheus"
// );
//
// // Assert counter counts
// let mut buffer = Vec::new();
// let encoder = TextEncoder::new();
// let metric_families = prometheus.registry.gather();
// encoder.encode(&metric_families, &mut buffer).unwrap();
// let output = String::from_utf8(buffer).unwrap();
//
// assert!(output.contains(
// "actix_web_prom_http_requests_total{endpoint=\"/metrics\",method=\"GET\",status=\"200\"} 1"
// ));
// }
//
// #[actix_rt::test]
// async fn middleware_custom_registry_works() {
// // Init Prometheus Registry
// let registry = Registry::new();
//
// let counter_opts = Opts::new("test_counter", "test counter help");
// let counter = Counter::with_opts(counter_opts).unwrap();
// registry.register(Box::new(counter.clone())).unwrap();
//
// counter.inc_by(10_f64);
//
// // Init PrometheusMetrics
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .registry(registry)
// .endpoint("/metrics")
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus.clone())
// .service(web::resource("/test").to(|| HttpResponse::Ok().finish())),
// )
// .await;
//
// // all http counters are 0 because this is the first http request,
// // so we should get only 10 on test counter
// let response =
// read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
//
// let ten_test_counter =
// "# HELP test_counter test counter help\n# TYPE test_counter counter\ntest_counter 10\n";
// assert_eq!(
// String::from_utf8(response.to_vec()).unwrap(),
// ten_test_counter
// );
//
// // all http counters are 1 because this is the second http request,
// // plus 10 on test counter
// let response =
// read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// let response_string = String::from_utf8(response.to_vec()).unwrap();
//
// let one_http_counters = "# HELP actix_web_prom_http_requests_total Total number of HTTP requests\n# TYPE actix_web_prom_http_requests_total counter\nactix_web_prom_http_requests_total{endpoint=\"/metrics\",method=\"GET\",status=\"200\"} 1";
//
// assert!(response_string.contains(ten_test_counter));
// assert!(response_string.contains(one_http_counters));
// }
//
// #[actix_rt::test]
// async fn middleware_const_labels() {
// let mut labels = HashMap::new();
// labels.insert("label1".to_string(), "value1".to_string());
// labels.insert("label2".to_string(), "value2".to_string());
// let prometheus = PrometheusMetricsBuilder::new("actix_web_prom")
// .endpoint("/metrics")
// .const_labels(labels)
// .build()
// .unwrap();
//
// let mut app = init_service(
// App::new()
// .wrap(prometheus)
// .service(web::resource("/health_check").to(HttpResponse::Ok)),
// )
// .await;
//
// let res = call_service(
// &mut app,
// TestRequest::with_uri("/health_check").to_request(),
// )
// .await;
// assert!(res.status().is_success());
// assert_eq!(read_body(res).await, "");
//
// let res = read_response(&mut app, TestRequest::with_uri("/metrics").to_request()).await;
// let body = String::from_utf8(res.to_vec()).unwrap();
// assert!(&body.contains(
// &String::from_utf8(web::Bytes::from(
// "# HELP actix_web_prom_http_requests_duration_seconds HTTP request duration in seconds for all requests
// # TYPE actix_web_prom_http_requests_duration_seconds histogram
// actix_web_prom_http_requests_duration_seconds_bucket{endpoint=\"/health_check\",label1=\"value1\",label2=\"value2\",method=\"GET\",status=\"200\",le=\"0.005\"} 1
// "
// ).to_vec()).unwrap()));
// assert!(body.contains(
// &String::from_utf8(
// web::Bytes::from(
// "# HELP actix_web_prom_http_requests_total Total number of HTTP requests
// # TYPE actix_web_prom_http_requests_total counter
// actix_web_prom_http_requests_total{endpoint=\"/health_check\",label1=\"value1\",label2=\"value2\",method=\"GET\",status=\"200\"} 1
// "
// )
// .to_vec()
// )
// .unwrap()
// ));
// }
// }