forked from prometheus/client_java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-all.html
More file actions
1486 lines (1486 loc) · 152 KB
/
Copy pathindex-all.html
File metadata and controls
1486 lines (1486 loc) · 152 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Wed Jan 24 12:13:54 GMT 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (Prometheus Java Suite 0.2.1-SNAPSHOT API)</title>
<meta name="date" content="2018-01-24">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (Prometheus Java Suite 0.2.1-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j/InstrumentedAppender.html#activateOptions--">activateOptions()</a></span> - Method in class io.prometheus.client.log4j.<a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#add-double-">add(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Adds the given value.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html#add-org.hibernate.SessionFactory-java.lang.String-">add(SessionFactory, String)</a></span> - Method in class io.prometheus.client.hibernate.<a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html" title="class in io.prometheus.client.hibernate">HibernateStatisticsCollector</a></dt>
<dd>
<div class="block">Registers a Hibernate SessionFactory with this collector.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/jetty/QueuedThreadPoolStatisticsCollector.html#add-org.eclipse.jetty.util.thread.QueuedThreadPool-java.lang.String-">add(QueuedThreadPool, String)</a></span> - Method in class io.prometheus.client.jetty.<a href="io/prometheus/client/jetty/QueuedThreadPoolStatisticsCollector.html" title="class in io.prometheus.client.jetty">QueuedThreadPoolStatisticsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#addCache-java.lang.String-com.github.benmanes.caffeine.cache.Cache-">addCache(String, Cache)</a></span> - Method in class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd>
<div class="block">Add or replace the cache with the given name.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#addCache-java.lang.String-com.github.benmanes.caffeine.cache.AsyncLoadingCache-">addCache(String, AsyncLoadingCache)</a></span> - Method in class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd>
<div class="block">Add or replace the cache with the given name.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html#addCache-java.lang.String-com.google.common.cache.Cache-">addCache(String, Cache)</a></span> - Method in class io.prometheus.client.guava.cache.<a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache">CacheMetricsCollector</a></dt>
<dd>
<div class="block">Add or replace the cache with the given name.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CounterMetricFamily.html#addMetric-java.util.List-double-">addMetric(List<String>, double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CounterMetricFamily.html" title="class in io.prometheus.client">CounterMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/GaugeMetricFamily.html#addMetric-java.util.List-double-">addMetric(List<String>, double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/GaugeMetricFamily.html" title="class in io.prometheus.client">GaugeMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SummaryMetricFamily.html#addMetric-java.util.List-double-double-">addMetric(List<String>, double, double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SummaryMetricFamily.html" title="class in io.prometheus.client">SummaryMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SummaryMetricFamily.html#addMetric-java.util.List-double-double-java.util.List-">addMetric(List<String>, double, double, List<Double>)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SummaryMetricFamily.html" title="class in io.prometheus.client">SummaryMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Builder.html#ageBuckets-int-">ageBuckets(int)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Builder.html" title="class in io.prometheus.client">Summary.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/spring/web/MethodTimer.html#annotatedMethod--">annotatedMethod()</a></span> - Method in class io.prometheus.client.spring.web.<a href="io/prometheus/client/spring/web/MethodTimer.html" title="class in io.prometheus.client.spring.web">MethodTimer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j/InstrumentedAppender.html#append-org.apache.log4j.spi.LoggingEvent-">append(LoggingEvent)</a></span> - Method in class io.prometheus.client.log4j.<a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j2/InstrumentedAppender.html#append-org.apache.logging.log4j.core.LogEvent-">append(LogEvent)</a></span> - Method in class io.prometheus.client.log4j2.<a href="io/prometheus/client/log4j2/InstrumentedAppender.html" title="class in io.prometheus.client.log4j2">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/logback/InstrumentedAppender.html#append-ch.qos.logback.classic.spi.ILoggingEvent-">append(ILoggingEvent)</a></span> - Method in class io.prometheus.client.logback.<a href="io/prometheus/client/logback/InstrumentedAppender.html" title="class in io.prometheus.client.logback">InstrumentedAppender</a></dt>
<dd> </dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Builder.html#buckets-double...-">buckets(double...)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client">Histogram.Builder</a></dt>
<dd>
<div class="block">Set the upper bounds of buckets for the histogram.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Child.Value.html#buckets">buckets</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Child.Value.html" title="class in io.prometheus.client">Histogram.Child.Value</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#build-java.lang.String-java.lang.String-">build(String, String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Counter.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#build--">build()</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Counter.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#build-java.lang.String-java.lang.String-">build(String, String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Gauge.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#build--">build()</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Gauge.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#build-java.lang.String-java.lang.String-">build(String, String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Histogram.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#build--">build()</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Histogram.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#build-java.lang.String-java.lang.String-">build(String, String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Summary.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#build--">build()</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd>
<div class="block">Return a Builder to allow configuration of a new Summary.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Builder.html#Builder--">Builder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Counter.Builder.html" title="class in io.prometheus.client">Counter.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Builder.html#Builder--">Builder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Gauge.Builder.html" title="class in io.prometheus.client">Gauge.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Builder.html#Builder--">Builder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client">Histogram.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#Builder--">Builder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Builder.html#Builder--">Builder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Summary.Builder.html" title="class in io.prometheus.client">Summary.Builder</a></dt>
<dd> </dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine"><span class="typeNameLink">CacheMetricsCollector</span></a> - Class in <a href="io/prometheus/client/cache/caffeine/package-summary.html">io.prometheus.client.cache.caffeine</a></dt>
<dd>
<div class="block">Collect metrics from Caffiene's com.github.benmanes.caffeine.cache.Cache.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#CacheMetricsCollector--">CacheMetricsCollector()</a></span> - Constructor for class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache"><span class="typeNameLink">CacheMetricsCollector</span></a> - Class in <a href="io/prometheus/client/guava/cache/package-summary.html">io.prometheus.client.guava.cache</a></dt>
<dd>
<div class="block">Collect metrics from Guava's com.google.common.cache.Cache.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html#CacheMetricsCollector--">CacheMetricsCollector()</a></span> - Constructor for class io.prometheus.client.guava.cache.<a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#checkMetricLabelName-java.lang.String-">checkMetricLabelName(String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Throw an exception if the metric label name is invalid.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#checkMetricName-java.lang.String-">checkMetricName(String)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Throw an exception if the metric name is invalid.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Child.html#Child--">Child()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Counter.Child.html" title="class in io.prometheus.client">Counter.Child</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#Child--">Child()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#children">children</a></span> - Variable in class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html#children">children</a></span> - Variable in class io.prometheus.client.guava.cache.<a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#children">children</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/hotspot/ClassLoadingExports.html" title="class in io.prometheus.client.hotspot"><span class="typeNameLink">ClassLoadingExports</span></a> - Class in <a href="io/prometheus/client/hotspot/package-summary.html">io.prometheus.client.hotspot</a></dt>
<dd>
<div class="block">Exports metrics about JVM classloading.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/ClassLoadingExports.html#ClassLoadingExports--">ClassLoadingExports()</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/ClassLoadingExports.html" title="class in io.prometheus.client.hotspot">ClassLoadingExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/ClassLoadingExports.html#ClassLoadingExports-java.lang.management.ClassLoadingMXBean-">ClassLoadingExports(ClassLoadingMXBean)</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/ClassLoadingExports.html" title="class in io.prometheus.client.hotspot">ClassLoadingExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#clear--">clear()</a></span> - Method in class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd>
<div class="block">Remove all caches.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#clear--">clear()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd>
<div class="block">Unregister all Collectors.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html#clear--">clear()</a></span> - Method in class io.prometheus.client.guava.cache.<a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache">CacheMetricsCollector</a></dt>
<dd>
<div class="block">Remove all caches.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#clear--">clear()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd>
<div class="block">Remove all children.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Timer.html#close--">close()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Timer.html" title="class in io.prometheus.client">Gauge.Timer</a></dt>
<dd>
<div class="block">Equivalent to calling <a href="io/prometheus/client/Gauge.Timer.html#setDuration--"><code>Gauge.Timer.setDuration()</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Timer.html#close--">close()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Timer.html" title="class in io.prometheus.client">Histogram.Timer</a></dt>
<dd>
<div class="block">Equivalent to calling <a href="io/prometheus/client/Histogram.Timer.html#observeDuration--"><code>Histogram.Timer.observeDuration()</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j/InstrumentedAppender.html#close--">close()</a></span> - Method in class io.prometheus.client.log4j.<a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Timer.html#close--">close()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Timer.html" title="class in io.prometheus.client">Summary.Timer</a></dt>
<dd>
<div class="block">Equivalent to calling <a href="io/prometheus/client/Summary.Timer.html#observeDuration--"><code>Summary.Timer.observeDuration()</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#codahaleCounterDecBenchmark--">codahaleCounterDecBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#codahaleCounterIncBenchmark--">codahaleCounterIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#codahaleCounterIncBenchmark--">codahaleCounterIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/SummaryBenchmark.html#codahaleHistogramBenchmark--">codahaleHistogramBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/SummaryBenchmark.html" title="class in io.prometheus.benchmark">SummaryBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#codahaleMeterMarkBenchmark--">codahaleMeterMarkBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.cache.caffeine.<a href="io/prometheus/client/cache/caffeine/CacheMetricsCollector.html" title="class in io.prometheus.client.cache.caffeine">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Return all of the metrics of this Collector.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#collect--">collect()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/dropwizard/DropwizardExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.dropwizard.<a href="io/prometheus/client/dropwizard/DropwizardExports.html" title="class in io.prometheus.client.dropwizard">DropwizardExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#collect--">collect()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.guava.cache.<a href="io/prometheus/client/guava/cache/CacheMetricsCollector.html" title="class in io.prometheus.client.guava.cache">CacheMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hibernate.<a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html" title="class in io.prometheus.client.hibernate">HibernateStatisticsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#collect--">collect()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/ClassLoadingExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/ClassLoadingExports.html" title="class in io.prometheus.client.hotspot">ClassLoadingExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/GarbageCollectorExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/GarbageCollectorExports.html" title="class in io.prometheus.client.hotspot">GarbageCollectorExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/MemoryPoolsExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/MemoryPoolsExports.html" title="class in io.prometheus.client.hotspot">MemoryPoolsExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/StandardExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/StandardExports.html" title="class in io.prometheus.client.hotspot">StandardExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/ThreadExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/ThreadExports.html" title="class in io.prometheus.client.hotspot">ThreadExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/VersionInfoExports.html#collect--">collect()</a></span> - Method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/VersionInfoExports.html" title="class in io.prometheus.client.hotspot">VersionInfoExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/jetty/JettyStatisticsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.jetty.<a href="io/prometheus/client/jetty/JettyStatisticsCollector.html" title="class in io.prometheus.client.jetty">JettyStatisticsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/jetty/QueuedThreadPoolStatisticsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.jetty.<a href="io/prometheus/client/jetty/QueuedThreadPoolStatisticsCollector.html" title="class in io.prometheus.client.jetty">QueuedThreadPoolStatisticsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/spring/boot/SpringBootMetricsCollector.html#collect--">collect()</a></span> - Method in class io.prometheus.client.spring.boot.<a href="io/prometheus/client/spring/boot/SpringBootMetricsCollector.html" title="class in io.prometheus.client.spring.boot">SpringBootMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#collect--">collect()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client"><span class="typeNameLink">Collector</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">A collector for a set of metrics.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#Collector--">Collector()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Collector.Describable.html" title="interface in io.prometheus.client"><span class="typeNameLink">Collector.Describable</span></a> - Interface in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client"><span class="typeNameLink">Collector.MetricFamilySamples</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">A metric, and all of its samples.</div>
</dd>
<dt><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client"><span class="typeNameLink">Collector.MetricFamilySamples.Sample</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">A single Sample, with a unique name and set of labels.</div>
</dd>
<dt><a href="io/prometheus/client/Collector.Type.html" title="enum in io.prometheus.client"><span class="typeNameLink">Collector.Type</span></a> - Enum in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client"><span class="typeNameLink">CollectorRegistry</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">A registry of Collectors.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#CollectorRegistry--">CollectorRegistry()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#CollectorRegistry-boolean-">CollectorRegistry(boolean)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/common/TextFormat.html#CONTENT_TYPE_004">CONTENT_TYPE_004</a></span> - Static variable in class io.prometheus.client.exporter.common.<a href="io/prometheus/client/exporter/common/TextFormat.html" title="class in io.prometheus.client.exporter.common">TextFormat</a></dt>
<dd>
<div class="block">Content-type for text version 0.0.4.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Child.Value.html#count">count</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Summary.Child.Value.html" title="class in io.prometheus.client">Summary.Child.Value</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client"><span class="typeNameLink">Counter</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Counter metric, to track counts of events or running totals.</div>
</dd>
<dt><a href="io/prometheus/client/Counter.Builder.html" title="class in io.prometheus.client"><span class="typeNameLink">Counter.Builder</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Counter.Child.html" title="class in io.prometheus.client"><span class="typeNameLink">Counter.Child</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">The value of a single Counter.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j/InstrumentedAppender.html#COUNTER_NAME">COUNTER_NAME</a></span> - Static variable in class io.prometheus.client.log4j.<a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j2/InstrumentedAppender.html#COUNTER_NAME">COUNTER_NAME</a></span> - Static variable in class io.prometheus.client.log4j2.<a href="io/prometheus/client/log4j2/InstrumentedAppender.html" title="class in io.prometheus.client.log4j2">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/logback/InstrumentedAppender.html#COUNTER_NAME">COUNTER_NAME</a></span> - Static variable in class io.prometheus.client.logback.<a href="io/prometheus/client/logback/InstrumentedAppender.html" title="class in io.prometheus.client.logback">InstrumentedAppender</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark"><span class="typeNameLink">CounterBenchmark</span></a> - Class in <a href="io/prometheus/benchmark/package-summary.html">io.prometheus.benchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#CounterBenchmark--">CounterBenchmark()</a></span> - Constructor for class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/CounterMetricFamily.html" title="class in io.prometheus.client"><span class="typeNameLink">CounterMetricFamily</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Counter metric family, for custom collectors and exporters.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CounterMetricFamily.html#CounterMetricFamily-java.lang.String-java.lang.String-double-">CounterMetricFamily(String, String, double)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/CounterMetricFamily.html" title="class in io.prometheus.client">CounterMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CounterMetricFamily.html#CounterMetricFamily-java.lang.String-java.lang.String-java.util.List-">CounterMetricFamily(String, String, List<String>)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/CounterMetricFamily.html" title="class in io.prometheus.client">CounterMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Builder.html#create--">create()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.Builder.html" title="class in io.prometheus.client">Counter.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Builder.html#create--">create()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Builder.html" title="class in io.prometheus.client">Gauge.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Builder.html#create--">create()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client">Histogram.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#create--">create()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd>
<div class="block">Return the constructed collector.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Builder.html#create--">create()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Builder.html" title="class in io.prometheus.client">Summary.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j2/InstrumentedAppender.html#createAppender-java.lang.String-">createAppender(String)</a></span> - Static method in class io.prometheus.client.log4j2.<a href="io/prometheus/client/log4j2/InstrumentedAppender.html" title="class in io.prometheus.client.log4j2">InstrumentedAppender</a></dt>
<dd> </dd>
</dl>
<a name="I:D">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#dec--">dec()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd>
<div class="block">Decrement the gauge by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#dec-double-">dec(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd>
<div class="block">Decrement the gauge by the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#dec--">dec()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Increment the gauge with no labels by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#dec-double-">dec(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Decrement the gauge with no labels by the given amount.</div>
</dd>
<dt><a href="io/prometheus/client/hotspot/DefaultExports.html" title="class in io.prometheus.client.hotspot"><span class="typeNameLink">DefaultExports</span></a> - Class in <a href="io/prometheus/client/hotspot/package-summary.html">io.prometheus.client.hotspot</a></dt>
<dd>
<div class="block">Registers the default Hotspot collectors.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/DefaultExports.html#DefaultExports--">DefaultExports()</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/DefaultExports.html" title="class in io.prometheus.client.hotspot">DefaultExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#defaultRegistry">defaultRegistry</a></span> - Static variable in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd>
<div class="block">The default registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/PushGateway.html#delete-java.lang.String-">delete(String)</a></span> - Method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/PushGateway.html" title="class in io.prometheus.client.exporter">PushGateway</a></dt>
<dd>
<div class="block">Deletes metrics from the Pushgateway.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/PushGateway.html#delete-java.lang.String-java.util.Map-">delete(String, Map<String, String>)</a></span> - Method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/PushGateway.html" title="class in io.prometheus.client.exporter">PushGateway</a></dt>
<dd>
<div class="block">Deletes metrics from the Pushgateway.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/PushGateway.html#delete-java.lang.String-java.lang.String-">delete(String, String)</a></span> - Method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/PushGateway.html" title="class in io.prometheus.client.exporter">PushGateway</a></dt>
<dd>
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="block"><span class="deprecationComment">use <a href="io/prometheus/client/exporter/PushGateway.html#delete-java.lang.String-java.util.Map-"><code>PushGateway.delete(String, Map)</code></a></span></div>
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.Describable.html#describe--">describe()</a></span> - Method in interface io.prometheus.client.<a href="io/prometheus/client/Collector.Describable.html" title="interface in io.prometheus.client">Collector.Describable</a></dt>
<dd>
<div class="block">Provide a list of metric families this Collector is expected to return.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#describe--">describe()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/dropwizard/DropwizardExports.html#describe--">describe()</a></span> - Method in class io.prometheus.client.dropwizard.<a href="io/prometheus/client/dropwizard/DropwizardExports.html" title="class in io.prometheus.client.dropwizard">DropwizardExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#describe--">describe()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#describe--">describe()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/spring/boot/SpringBootMetricsCollector.html#describe--">describe()</a></span> - Method in class io.prometheus.client.spring.boot.<a href="io/prometheus/client/spring/boot/SpringBootMetricsCollector.html" title="class in io.prometheus.client.spring.boot">SpringBootMetricsCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#describe--">describe()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/filter/MetricsFilter.html#destroy--">destroy()</a></span> - Method in class io.prometheus.client.filter.<a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter">MetricsFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/filter/MetricsFilter.html#doFilter-javax.servlet.ServletRequest-javax.servlet.ServletResponse-javax.servlet.FilterChain-">doFilter(ServletRequest, ServletResponse, FilterChain)</a></span> - Method in class io.prometheus.client.filter.<a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter">MetricsFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/MetricsServlet.html#doGet-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">doGet(HttpServletRequest, HttpServletResponse)</a></span> - Method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/MetricsServlet.html" title="class in io.prometheus.client.exporter">MetricsServlet</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/MetricsServlet.html#doPost-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">doPost(HttpServletRequest, HttpServletResponse)</a></span> - Method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/MetricsServlet.html" title="class in io.prometheus.client.exporter">MetricsServlet</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client"><span class="typeNameLink">DoubleAdder</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">One or more variables that together maintain an initially zero
<code>double</code> sum.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#DoubleAdder--">DoubleAdder()</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Creates a new adder with initial sum of zero.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#doubleToGoString-double-">doubleToGoString(double)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Convert a double to its string representation in Go.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#doubleValue--">doubleValue()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Equivalent to <a href="io/prometheus/client/DoubleAdder.html#sum--"><code>DoubleAdder.sum()</code></a>.</div>
</dd>
<dt><a href="io/prometheus/client/dropwizard/DropwizardExports.html" title="class in io.prometheus.client.dropwizard"><span class="typeNameLink">DropwizardExports</span></a> - Class in <a href="io/prometheus/client/dropwizard/package-summary.html">io.prometheus.client.dropwizard</a></dt>
<dd>
<div class="block">Collect Dropwizard metrics from a MetricRegistry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/dropwizard/DropwizardExports.html#DropwizardExports-com.codahale.metrics.MetricRegistry-">DropwizardExports(MetricRegistry)</a></span> - Constructor for class io.prometheus.client.dropwizard.<a href="io/prometheus/client/dropwizard/DropwizardExports.html" title="class in io.prometheus.client.dropwizard">DropwizardExports</a></dt>
<dd> </dd>
</dl>
<a name="I:E">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleTimer.html#elapsedSeconds--">elapsedSeconds()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleTimer.html" title="class in io.prometheus.client">SimpleTimer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleTimer.html#elapsedSecondsFromNanos-long-long-">elapsedSecondsFromNanos(long, long)</a></span> - Static method in class io.prometheus.client.<a href="io/prometheus/client/SimpleTimer.html" title="class in io.prometheus.client">SimpleTimer</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/spring/boot/EnablePrometheusEndpoint.html" title="annotation in io.prometheus.client.spring.boot"><span class="typeNameLink">EnablePrometheusEndpoint</span></a> - Annotation Type in <a href="io/prometheus/client/spring/boot/package-summary.html">io.prometheus.client.spring.boot</a></dt>
<dd>
<div class="block">Enable an endpoint that exposes Prometheus metrics from its default collector.</div>
</dd>
<dt><a href="io/prometheus/client/spring/web/EnablePrometheusTiming.html" title="annotation in io.prometheus.client.spring.web"><span class="typeNameLink">EnablePrometheusTiming</span></a> - Annotation Type in <a href="io/prometheus/client/spring/web/package-summary.html">io.prometheus.client.spring.web</a></dt>
<dd>
<div class="block">Enable the use of <a href="io/prometheus/client/spring/web/PrometheusTimeMethod.html" title="annotation in io.prometheus.client.spring.web"><code>PrometheusTimeMethod</code></a> annotation on classes or methods.</div>
</dd>
<dt><a href="io/prometheus/client/spring/boot/EnableSpringBootMetricsCollector.html" title="annotation in io.prometheus.client.spring.boot"><span class="typeNameLink">EnableSpringBootMetricsCollector</span></a> - Annotation Type in <a href="io/prometheus/client/spring/boot/package-summary.html">io.prometheus.client.spring.boot</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client">Collector.MetricFamilySamples</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client">Collector.MetricFamilySamples.Sample</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#executorService">executorService</a></span> - Variable in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Builder.html#exponentialBuckets-double-double-int-">exponentialBuckets(double, double, int)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client">Histogram.Builder</a></dt>
<dd>
<div class="block">Set the upper bounds of buckets for the histogram with an exponential sequence.</div>
</dd>
</dl>
<a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#familySamplesList-io.prometheus.client.Collector.Type-java.util.List-">familySamplesList(Collector.Type, List<Collector.MetricFamilySamples.Sample>)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#filteredMetricFamilySamples-java.util.Set-">filteredMetricFamilySamples(Set<String>)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#floatValue--">floatValue()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Returns the <a href="io/prometheus/client/DoubleAdder.html#sum--"><code>DoubleAdder.sum()</code></a> as a <code>float</code>
after a narrowing primitive conversion.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#fullname">fullname</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
</dl>
<a name="I:G">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><a href="io/prometheus/client/hotspot/GarbageCollectorExports.html" title="class in io.prometheus.client.hotspot"><span class="typeNameLink">GarbageCollectorExports</span></a> - Class in <a href="io/prometheus/client/hotspot/package-summary.html">io.prometheus.client.hotspot</a></dt>
<dd>
<div class="block">Exports metrics about JVM garbage collectors.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/GarbageCollectorExports.html#GarbageCollectorExports--">GarbageCollectorExports()</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/GarbageCollectorExports.html" title="class in io.prometheus.client.hotspot">GarbageCollectorExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/PushGateway.html#gatewayBaseURL">gatewayBaseURL</a></span> - Variable in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/PushGateway.html" title="class in io.prometheus.client.exporter">PushGateway</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client"><span class="typeNameLink">Gauge</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Gauge metric, to report instantaneous values.</div>
</dd>
<dt><a href="io/prometheus/client/Gauge.Builder.html" title="class in io.prometheus.client"><span class="typeNameLink">Gauge.Builder</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client"><span class="typeNameLink">Gauge.Child</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">The value of a single Gauge.</div>
</dd>
<dt><a href="io/prometheus/client/Gauge.Timer.html" title="class in io.prometheus.client"><span class="typeNameLink">Gauge.Timer</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Represents an event being timed.</div>
</dd>
<dt><a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark"><span class="typeNameLink">GaugeBenchmark</span></a> - Class in <a href="io/prometheus/benchmark/package-summary.html">io.prometheus.benchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#GaugeBenchmark--">GaugeBenchmark()</a></span> - Constructor for class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/GaugeMetricFamily.html" title="class in io.prometheus.client"><span class="typeNameLink">GaugeMetricFamily</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Gauge metric family, for custom collectors and exporters.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/GaugeMetricFamily.html#GaugeMetricFamily-java.lang.String-java.lang.String-double-">GaugeMetricFamily(String, String, double)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/GaugeMetricFamily.html" title="class in io.prometheus.client">GaugeMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/GaugeMetricFamily.html#GaugeMetricFamily-java.lang.String-java.lang.String-java.util.List-">GaugeMetricFamily(String, String, List<String>)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/GaugeMetricFamily.html" title="class in io.prometheus.client">GaugeMetricFamily</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Child.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.Child.html" title="class in io.prometheus.client">Counter.Child</a></dt>
<dd>
<div class="block">Get the value of the counter.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd>
<div class="block">Get the value of the counter.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd>
<div class="block">Get the value of the gauge.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Get the value of the gauge.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Child.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Child.html" title="class in io.prometheus.client">Histogram.Child</a></dt>
<dd>
<div class="block">Get the value of the Histogram.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Child.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Child.html" title="class in io.prometheus.client">Summary.Child</a></dt>
<dd>
<div class="block">Get the value of the Summary.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#get--">get()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd>
<div class="block">Get the value of the Summary.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#getSampleValue-java.lang.String-">getSampleValue(String)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd>
<div class="block">Returns the given value, or null if it doesn't exist.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#getSampleValue-java.lang.String-java.lang.String:A-java.lang.String:A-">getSampleValue(String, String[], String[])</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd>
<div class="block">Returns the given value, or null if it doesn't exist.</div>
</dd>
<dt><a href="io/prometheus/client/bridge/Graphite.html" title="class in io.prometheus.client.bridge"><span class="typeNameLink">Graphite</span></a> - Class in <a href="io/prometheus/client/bridge/package-summary.html">io.prometheus.client.bridge</a></dt>
<dd>
<div class="block">Export metrics in the Graphite plaintext format.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/bridge/Graphite.html#Graphite-java.lang.String-int-">Graphite(String, int)</a></span> - Constructor for class io.prometheus.client.bridge.<a href="io/prometheus/client/bridge/Graphite.html" title="class in io.prometheus.client.bridge">Graphite</a></dt>
<dd>
<div class="block">Construct a Graphite Bridge with the given host:port.</div>
</dd>
</dl>
<a name="I:H">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/vertx/MetricsHandler.html#handle-io.vertx.ext.web.RoutingContext-">handle(RoutingContext)</a></span> - Method in class io.prometheus.client.vertx.<a href="io/prometheus/client/vertx/MetricsHandler.html" title="class in io.prometheus.client.vertx">MetricsHandler</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.html#hashCode--">hashCode()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client">Collector.MetricFamilySamples</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html#hashCode--">hashCode()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client">Collector.MetricFamilySamples.Sample</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.html#help">help</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client">Collector.MetricFamilySamples</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#help-java.lang.String-">help(String)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd>
<div class="block">Set the help string of the metric.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#help">help</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html" title="class in io.prometheus.client.hibernate"><span class="typeNameLink">HibernateStatisticsCollector</span></a> - Class in <a href="io/prometheus/client/hibernate/package-summary.html">io.prometheus.client.hibernate</a></dt>
<dd>
<div class="block">Collect metrics from one or more Hibernate SessionFactory instances.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html#HibernateStatisticsCollector--">HibernateStatisticsCollector()</a></span> - Constructor for class io.prometheus.client.hibernate.<a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html" title="class in io.prometheus.client.hibernate">HibernateStatisticsCollector</a></dt>
<dd>
<div class="block">Creates an empty collector.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html#HibernateStatisticsCollector-org.hibernate.SessionFactory-java.lang.String-">HibernateStatisticsCollector(SessionFactory, String)</a></span> - Constructor for class io.prometheus.client.hibernate.<a href="io/prometheus/client/hibernate/HibernateStatisticsCollector.html" title="class in io.prometheus.client.hibernate">HibernateStatisticsCollector</a></dt>
<dd>
<div class="block">Creates a new collector for the given session factory.</div>
</dd>
<dt><a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client"><span class="typeNameLink">Histogram</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Histogram metric, to track distributions of events.</div>
</dd>
<dt><a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client"><span class="typeNameLink">Histogram.Builder</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Histogram.Child.html" title="class in io.prometheus.client"><span class="typeNameLink">Histogram.Child</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">The value of a single Histogram.</div>
</dd>
<dt><a href="io/prometheus/client/Histogram.Child.Value.html" title="class in io.prometheus.client"><span class="typeNameLink">Histogram.Child.Value</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/Histogram.Timer.html" title="class in io.prometheus.client"><span class="typeNameLink">Histogram.Timer</span></a> - Class in <a href="io/prometheus/client/package-summary.html">io.prometheus.client</a></dt>
<dd>
<div class="block">Represents an event being timed.</div>
</dd>
<dt><a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter"><span class="typeNameLink">HTTPServer</span></a> - Class in <a href="io/prometheus/client/exporter/package-summary.html">io.prometheus.client.exporter</a></dt>
<dd>
<div class="block">Expose Prometheus metrics using a plain Java HttpServer.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-java.net.InetSocketAddress-io.prometheus.client.CollectorRegistry-boolean-">HTTPServer(InetSocketAddress, CollectorRegistry, boolean)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving Prometheus metrics from the given registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-java.net.InetSocketAddress-io.prometheus.client.CollectorRegistry-">HTTPServer(InetSocketAddress, CollectorRegistry)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving Prometheus metrics from the given registry using non-daemon threads.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-int-boolean-">HTTPServer(int, boolean)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving the default Prometheus registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-int-">HTTPServer(int)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving the default Prometheus registry using non-daemon threads.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-java.lang.String-int-boolean-">HTTPServer(String, int, boolean)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving the default Prometheus registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#HTTPServer-java.lang.String-int-">HTTPServer(String, int)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd>
<div class="block">Start a HTTP server serving the default Prometheus registry using non-daemon threads.</div>
</dd>
</dl>
<a name="I:I">
<!-- -->
</a>
<h2 class="title">I</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Child.html#inc--">inc()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.Child.html" title="class in io.prometheus.client">Counter.Child</a></dt>
<dd>
<div class="block">Increment the counter by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.Child.html#inc-double-">inc(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.Child.html" title="class in io.prometheus.client">Counter.Child</a></dt>
<dd>
<div class="block">Increment the counter by the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#inc--">inc()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd>
<div class="block">Increment the counter with no labels by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#inc-double-">inc(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd>
<div class="block">Increment the counter with no labels by the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#inc--">inc()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd>
<div class="block">Increment the gauge by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.Child.html#inc-double-">inc(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.Child.html" title="class in io.prometheus.client">Gauge.Child</a></dt>
<dd>
<div class="block">Increment the gauge by the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#inc--">inc()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Increment the gauge with no labels by 1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#inc-double-">inc(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd>
<div class="block">Increment the gauge with no labels by the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/filter/MetricsFilter.html#init-javax.servlet.FilterConfig-">init(FilterConfig)</a></span> - Method in class io.prometheus.client.filter.<a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter">MetricsFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/DefaultExports.html#initialize--">initialize()</a></span> - Static method in class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/DefaultExports.html" title="class in io.prometheus.client.hotspot">DefaultExports</a></dt>
<dd>
<div class="block">Register the default Hotspot collectors.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#initializeNoLabelsChild--">initializeNoLabelsChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd>
<div class="block">Initialize the child with no labels.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/PushGateway.html#instanceIPGroupingKey--">instanceIPGroupingKey()</a></span> - Static method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/PushGateway.html" title="class in io.prometheus.client.exporter">PushGateway</a></dt>
<dd>
<div class="block">Returns a grouping key with the instance label set to the machine's IP address.</div>
</dd>
<dt><a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j"><span class="typeNameLink">InstrumentedAppender</span></a> - Class in <a href="io/prometheus/client/log4j/package-summary.html">io.prometheus.client.log4j</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j/InstrumentedAppender.html#InstrumentedAppender--">InstrumentedAppender()</a></span> - Constructor for class io.prometheus.client.log4j.<a href="io/prometheus/client/log4j/InstrumentedAppender.html" title="class in io.prometheus.client.log4j">InstrumentedAppender</a></dt>
<dd>
<div class="block">Create a new instrumented appender using the default registry.</div>
</dd>
<dt><a href="io/prometheus/client/log4j2/InstrumentedAppender.html" title="class in io.prometheus.client.log4j2"><span class="typeNameLink">InstrumentedAppender</span></a> - Class in <a href="io/prometheus/client/log4j2/package-summary.html">io.prometheus.client.log4j2</a></dt>
<dd>
<div class="block">Log4j2 log statements at various log levels</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/log4j2/InstrumentedAppender.html#InstrumentedAppender-java.lang.String-">InstrumentedAppender(String)</a></span> - Constructor for class io.prometheus.client.log4j2.<a href="io/prometheus/client/log4j2/InstrumentedAppender.html" title="class in io.prometheus.client.log4j2">InstrumentedAppender</a></dt>
<dd>
<div class="block">Create a new instrumented appender using the default registry.</div>
</dd>
<dt><a href="io/prometheus/client/logback/InstrumentedAppender.html" title="class in io.prometheus.client.logback"><span class="typeNameLink">InstrumentedAppender</span></a> - Class in <a href="io/prometheus/client/logback/package-summary.html">io.prometheus.client.logback</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/logback/InstrumentedAppender.html#InstrumentedAppender--">InstrumentedAppender()</a></span> - Constructor for class io.prometheus.client.logback.<a href="io/prometheus/client/logback/InstrumentedAppender.html" title="class in io.prometheus.client.logback">InstrumentedAppender</a></dt>
<dd>
<div class="block">Create a new instrumented appender using the default registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#intValue--">intValue()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Returns the <a href="io/prometheus/client/DoubleAdder.html#sum--"><code>DoubleAdder.sum()</code></a> as an <code>int</code> after a
narrowing primitive conversion.</div>
</dd>
<dt><a href="io/prometheus/benchmark/package-summary.html">io.prometheus.benchmark</a> - package io.prometheus.benchmark</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/package-summary.html">io.prometheus.client</a> - package io.prometheus.client</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/bridge/package-summary.html">io.prometheus.client.bridge</a> - package io.prometheus.client.bridge</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/cache/caffeine/package-summary.html">io.prometheus.client.cache.caffeine</a> - package io.prometheus.client.cache.caffeine</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/dropwizard/package-summary.html">io.prometheus.client.dropwizard</a> - package io.prometheus.client.dropwizard</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/exporter/package-summary.html">io.prometheus.client.exporter</a> - package io.prometheus.client.exporter</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/exporter/common/package-summary.html">io.prometheus.client.exporter.common</a> - package io.prometheus.client.exporter.common</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/filter/package-summary.html">io.prometheus.client.filter</a> - package io.prometheus.client.filter</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/guava/cache/package-summary.html">io.prometheus.client.guava.cache</a> - package io.prometheus.client.guava.cache</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/hibernate/package-summary.html">io.prometheus.client.hibernate</a> - package io.prometheus.client.hibernate</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/hotspot/package-summary.html">io.prometheus.client.hotspot</a> - package io.prometheus.client.hotspot</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/jetty/package-summary.html">io.prometheus.client.jetty</a> - package io.prometheus.client.jetty</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/log4j/package-summary.html">io.prometheus.client.log4j</a> - package io.prometheus.client.log4j</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/log4j2/package-summary.html">io.prometheus.client.log4j2</a> - package io.prometheus.client.log4j2</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/logback/package-summary.html">io.prometheus.client.logback</a> - package io.prometheus.client.logback</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/spring/boot/package-summary.html">io.prometheus.client.spring.boot</a> - package io.prometheus.client.spring.boot</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/spring/web/package-summary.html">io.prometheus.client.spring.web</a> - package io.prometheus.client.spring.web</dt>
<dd> </dd>
<dt><a href="io/prometheus/client/vertx/package-summary.html">io.prometheus.client.vertx</a> - package io.prometheus.client.vertx</dt>
<dd> </dd>
</dl>
<a name="I:J">
<!-- -->
</a>
<h2 class="title">J</h2>
<dl>
<dt><a href="io/prometheus/client/jetty/JettyStatisticsCollector.html" title="class in io.prometheus.client.jetty"><span class="typeNameLink">JettyStatisticsCollector</span></a> - Class in <a href="io/prometheus/client/jetty/package-summary.html">io.prometheus.client.jetty</a></dt>
<dd>
<div class="block">Collect metrics from jetty's org.eclipse.jetty.server.handler.StatisticsHandler.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/jetty/JettyStatisticsCollector.html#JettyStatisticsCollector-org.eclipse.jetty.server.handler.StatisticsHandler-">JettyStatisticsCollector(StatisticsHandler)</a></span> - Constructor for class io.prometheus.client.jetty.<a href="io/prometheus/client/jetty/JettyStatisticsCollector.html" title="class in io.prometheus.client.jetty">JettyStatisticsCollector</a></dt>
<dd> </dd>
</dl>
<a name="I:L">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html#labelNames">labelNames</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client">Collector.MetricFamilySamples.Sample</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#labelNames-java.lang.String...-">labelNames(String...)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd>
<div class="block">Set the labelNames of the metric.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#labelNames">labelNames</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#labels-java.lang.String...-">labels(String...)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd>
<div class="block">Return the Child with the given labels, creating it if needed.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html#labelValues">labelValues</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client">Collector.MetricFamilySamples.Sample</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Builder.html#linearBuckets-double-double-int-">linearBuckets(double, double, int)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Builder.html" title="class in io.prometheus.client">Histogram.Builder</a></dt>
<dd>
<div class="block">Set the upper bounds of buckets for the histogram with a linear sequence.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/DoubleAdder.html#longValue--">longValue()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/DoubleAdder.html" title="class in io.prometheus.client">DoubleAdder</a></dt>
<dd>
<div class="block">Returns the <a href="io/prometheus/client/DoubleAdder.html#sum--"><code>DoubleAdder.sum()</code></a> as a <code>long</code> after a
narrowing primitive conversion.</div>
</dd>
</dl>
<a name="I:M">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/SummaryBenchmark.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/SummaryBenchmark.html" title="class in io.prometheus.benchmark">SummaryBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Builder.html#maxAgeSeconds-long-">maxAgeSeconds(long)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Builder.html" title="class in io.prometheus.client">Summary.Builder</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/hotspot/MemoryPoolsExports.html" title="class in io.prometheus.client.hotspot"><span class="typeNameLink">MemoryPoolsExports</span></a> - Class in <a href="io/prometheus/client/hotspot/package-summary.html">io.prometheus.client.hotspot</a></dt>
<dd>
<div class="block">Exports metrics about JVM memory areas.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/MemoryPoolsExports.html#MemoryPoolsExports--">MemoryPoolsExports()</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/MemoryPoolsExports.html" title="class in io.prometheus.client.hotspot">MemoryPoolsExports</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/hotspot/MemoryPoolsExports.html#MemoryPoolsExports-java.lang.management.MemoryMXBean-java.util.List-">MemoryPoolsExports(MemoryMXBean, List<MemoryPoolMXBean>)</a></span> - Constructor for class io.prometheus.client.hotspot.<a href="io/prometheus/client/hotspot/MemoryPoolsExports.html" title="class in io.prometheus.client.hotspot">MemoryPoolsExports</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/spring/web/MethodTimer.html" title="class in io.prometheus.client.spring.web"><span class="typeNameLink">MethodTimer</span></a> - Class in <a href="io/prometheus/client/spring/web/package-summary.html">io.prometheus.client.spring.web</a></dt>
<dd>
<div class="block">This class automatically times (via aspectj) the execution of annotated methods, if it's been enabled via <a href="io/prometheus/client/spring/web/EnablePrometheusTiming.html" title="annotation in io.prometheus.client.spring.web"><code>EnablePrometheusTiming</code></a>,
for methods annotated with <a href="io/prometheus/client/spring/web/PrometheusTimeMethod.html" title="annotation in io.prometheus.client.spring.web"><code>PrometheusTimeMethod</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/spring/web/MethodTimer.html#MethodTimer--">MethodTimer()</a></span> - Constructor for class io.prometheus.client.spring.web.<a href="io/prometheus/client/spring/web/MethodTimer.html" title="class in io.prometheus.client.spring.web">MethodTimer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.html#MetricFamilySamples-java.lang.String-io.prometheus.client.Collector.Type-java.lang.String-java.util.List-">MetricFamilySamples(String, Collector.Type, String, List<Collector.MetricFamilySamples.Sample>)</a></span> - Constructor for class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client">Collector.MetricFamilySamples</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/CollectorRegistry.html#metricFamilySamples--">metricFamilySamples()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/CollectorRegistry.html" title="class in io.prometheus.client">CollectorRegistry</a></dt>
<dd>
<div class="block">Enumeration of metrics of all registered collectors.</div>
</dd>
<dt><a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter"><span class="typeNameLink">MetricsFilter</span></a> - Class in <a href="io/prometheus/client/filter/package-summary.html">io.prometheus.client.filter</a></dt>
<dd>
<div class="block">The MetricsFilter class exists to provide a high-level filter that enables tunable collection of metrics for Servlet
performance.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/filter/MetricsFilter.html#MetricsFilter--">MetricsFilter()</a></span> - Constructor for class io.prometheus.client.filter.<a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter">MetricsFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/filter/MetricsFilter.html#MetricsFilter-java.lang.String-java.lang.String-java.lang.Integer-double:A-">MetricsFilter(String, String, Integer, double[])</a></span> - Constructor for class io.prometheus.client.filter.<a href="io/prometheus/client/filter/MetricsFilter.html" title="class in io.prometheus.client.filter">MetricsFilter</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/vertx/MetricsHandler.html" title="class in io.prometheus.client.vertx"><span class="typeNameLink">MetricsHandler</span></a> - Class in <a href="io/prometheus/client/vertx/package-summary.html">io.prometheus.client.vertx</a></dt>
<dd>
<div class="block">Metrics Handler for Vert.x Web.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/vertx/MetricsHandler.html#MetricsHandler--">MetricsHandler()</a></span> - Constructor for class io.prometheus.client.vertx.<a href="io/prometheus/client/vertx/MetricsHandler.html" title="class in io.prometheus.client.vertx">MetricsHandler</a></dt>
<dd>
<div class="block">Construct a MetricsHandler for the default registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/vertx/MetricsHandler.html#MetricsHandler-io.prometheus.client.CollectorRegistry-">MetricsHandler(CollectorRegistry)</a></span> - Constructor for class io.prometheus.client.vertx.<a href="io/prometheus/client/vertx/MetricsHandler.html" title="class in io.prometheus.client.vertx">MetricsHandler</a></dt>
<dd>
<div class="block">Construct a MetricsHandler for the given registry.</div>
</dd>
<dt><a href="io/prometheus/client/exporter/MetricsServlet.html" title="class in io.prometheus.client.exporter"><span class="typeNameLink">MetricsServlet</span></a> - Class in <a href="io/prometheus/client/exporter/package-summary.html">io.prometheus.client.exporter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/MetricsServlet.html#MetricsServlet--">MetricsServlet()</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/MetricsServlet.html" title="class in io.prometheus.client.exporter">MetricsServlet</a></dt>
<dd>
<div class="block">Construct a MetricsServlet for the default registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/MetricsServlet.html#MetricsServlet-io.prometheus.client.CollectorRegistry-">MetricsServlet(CollectorRegistry)</a></span> - Constructor for class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/MetricsServlet.html" title="class in io.prometheus.client.exporter">MetricsServlet</a></dt>
<dd>
<div class="block">Construct a MetricsServlet for the given registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#MILLISECONDS_PER_SECOND">MILLISECONDS_PER_SECOND</a></span> - Static variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Number of milliseconds in a second.</div>
</dd>
</dl>
<a name="I:N">
<!-- -->
</a>
<h2 class="title">N</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.html#name">name</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.html" title="class in io.prometheus.client">Collector.MetricFamilySamples</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html#name">name</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.MetricFamilySamples.Sample.html" title="class in io.prometheus.client">Collector.MetricFamilySamples.Sample</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#name-java.lang.String-">name(String)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd>
<div class="block">Set the name of the metric.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.Builder.html#namespace-java.lang.String-">namespace(String)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.Builder.html" title="class in io.prometheus.client">SimpleCollector.Builder</a></dt>
<dd>
<div class="block">Set the namespace of the metric.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Collector.html#NANOSECONDS_PER_SECOND">NANOSECONDS_PER_SECOND</a></span> - Static variable in class io.prometheus.client.<a href="io/prometheus/client/Collector.html" title="class in io.prometheus.client">Collector</a></dt>
<dd>
<div class="block">Number of nanoseconds in a second.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Counter.html#newChild--">newChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Counter.html" title="class in io.prometheus.client">Counter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Gauge.html#newChild--">newChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Gauge.html" title="class in io.prometheus.client">Gauge</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#newChild--">newChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#newChild--">newChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd>
<div class="block">Return a new child, workaround for Java generics limitations.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#newChild--">newChild()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/SimpleCollector.html#noLabelsChild">noLabelsChild</a></span> - Variable in class io.prometheus.client.<a href="io/prometheus/client/SimpleCollector.html" title="class in io.prometheus.client">SimpleCollector</a></dt>
<dd> </dd>
</dl>
<a name="I:O">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Child.html#observe-double-">observe(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Child.html" title="class in io.prometheus.client">Histogram.Child</a></dt>
<dd>
<div class="block">Observe the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.html#observe-double-">observe(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.html" title="class in io.prometheus.client">Histogram</a></dt>
<dd>
<div class="block">Observe the given amount on the histogram with no labels.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Child.html#observe-double-">observe(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Child.html" title="class in io.prometheus.client">Summary.Child</a></dt>
<dd>
<div class="block">Observe the given amount.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.html#observe-double-">observe(double)</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.html" title="class in io.prometheus.client">Summary</a></dt>
<dd>
<div class="block">Observe the given amount on the summary with no labels.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Histogram.Timer.html#observeDuration--">observeDuration()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Histogram.Timer.html" title="class in io.prometheus.client">Histogram.Timer</a></dt>
<dd>
<div class="block">Observe the amount of time in seconds since <a href="io/prometheus/client/Histogram.Child.html#startTimer--"><code>Histogram.Child.startTimer()</code></a> was called.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/Summary.Timer.html#observeDuration--">observeDuration()</a></span> - Method in class io.prometheus.client.<a href="io/prometheus/client/Summary.Timer.html" title="class in io.prometheus.client">Summary.Timer</a></dt>
<dd>
<div class="block">Observe the amount of time in seconds since <a href="io/prometheus/client/Summary.Child.html#startTimer--"><code>Summary.Child.startTimer()</code></a> was called.</div>
</dd>
</dl>
<a name="I:P">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/prometheus/client/exporter/HTTPServer.html#parseQuery-java.lang.String-">parseQuery(String)</a></span> - Static method in class io.prometheus.client.exporter.<a href="io/prometheus/client/exporter/HTTPServer.html" title="class in io.prometheus.client.exporter">HTTPServer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#prometheusCounterChildIncBenchmark--">prometheusCounterChildIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#prometheusCounterIncBenchmark--">prometheusCounterIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeChildDecBenchmark--">prometheusGaugeChildDecBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeChildIncBenchmark--">prometheusGaugeChildIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeChildSetBenchmark--">prometheusGaugeChildSetBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeDecBenchmark--">prometheusGaugeDecBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeIncBenchmark--">prometheusGaugeIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusGaugeSetBenchmark--">prometheusGaugeSetBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><a href="io/prometheus/client/spring/boot/PrometheusMvcEndpoint.html" title="class in io.prometheus.client.spring.boot"><span class="typeNameLink">PrometheusMvcEndpoint</span></a> - Class in <a href="io/prometheus/client/spring/boot/package-summary.html">io.prometheus.client.spring.boot</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/client/spring/boot/PrometheusMvcEndpoint.html#PrometheusMvcEndpoint-io.prometheus.client.spring.boot.PrometheusEndpoint-">PrometheusMvcEndpoint(PrometheusEndpoint)</a></span> - Constructor for class io.prometheus.client.spring.boot.<a href="io/prometheus/client/spring/boot/PrometheusMvcEndpoint.html" title="class in io.prometheus.client.spring.boot">PrometheusMvcEndpoint</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#prometheusSimpleCounterChildIncBenchmark--">prometheusSimpleCounterChildIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#prometheusSimpleCounterIncBenchmark--">prometheusSimpleCounterIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/CounterBenchmark.html#prometheusSimpleCounterNoLabelsIncBenchmark--">prometheusSimpleCounterNoLabelsIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/CounterBenchmark.html" title="class in io.prometheus.benchmark">CounterBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusSimpleGaugeChildDecBenchmark--">prometheusSimpleGaugeChildDecBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusSimpleGaugeChildIncBenchmark--">prometheusSimpleGaugeChildIncBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusSimpleGaugeChildSetBenchmark--">prometheusSimpleGaugeChildSetBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/prometheus/benchmark/GaugeBenchmark.html#prometheusSimpleGaugeDecBenchmark--">prometheusSimpleGaugeDecBenchmark()</a></span> - Method in class io.prometheus.benchmark.<a href="io/prometheus/benchmark/GaugeBenchmark.html" title="class in io.prometheus.benchmark">GaugeBenchmark</a></dt>