File: histograms.rst

package info (click to toggle)
metrics-clojure 2.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 404 kB
  • sloc: makefile: 135; xml: 99; python: 22
file content (242 lines) | stat: -rw-r--r-- 6,474 bytes parent folder | download | duplicates (3)
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
Histograms
==========

Histograms are used to record the distribution of a piece of data over time.

They're used when you have a type of data for which the following are true:

* There are distinct "events" for this type of data, such as "user performs
  a search and we return N results".
* Each event has a numeric value (the "N results" in our example).
* Comparisons of these numeric values are meaningful.

For example: HTTP status codes do *not* fit this because comparisons between the
numeric values are not meaningful.  The fact that 404 happens to be less than 500
doesn't tell you anything.

Contrast this with something like "search results returned": one value being
less than the other tells you something meaningful about the data.

Histograms can tell you things like:

    75% of all searches returned 100 or fewer results, while 95% got 200 or
    fewer.

If the numeric value you're recording is the amount of time taken to do
something, you probably want a timer instead of a histogram.

Examples of metrics you might want to track with a histogram:

* Search results returned ("99% of searches returned 300 or fewer results").
* Response body size ("75% of responses were 30kb or smaller").

**TODO:** More examples.

Creating
--------

Create your histogram::

    (require '[metrics.core :refer [new-registry]])
    (require '[metrics.histograms :refer (histogram)])

    (def reg (new-registry))

    (def search-results-returned
      (histogram reg "search-results-returned"))

The ``histogram`` function is idempotent, which means that you don't
need to keep a local reference to the histogram. Once a histogram has been
registered, a call to ``(histogram reg "search-results-returned")`` will return
the existing histogram.

.. _histograms/defhistogram:

You can also use the ``defhistogram`` macro to create a histogram and bind it to
a var in one concise, easy step::

    (require '[metrics.histograms :refer [defhistogram]])

    (defhistogram reg search-results-returned)

All the ``def[metric]`` macros do some :ref:`magic <desugaring>` to the metric
title to make it easier to define.

Writing
-------

Once you've got a histogram you can update it with the numeric values of events
as they occur.

.. _histograms/update!:

``update!``
~~~~~~~~~~~

Update the histogram when you have a new value to record with ``update!``::

    (require '[metrics.histograms :refer [update!]])

    (update! search-results-returned 10)

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (update! (histogram reg "search-results-returned") 10)

Reading
-------

The data of a histogram metrics can be retrived in a bunch of different ways.

.. _histograms/percentiles:

``percentiles``
~~~~~~~~~~~~~~~

The function you'll usually want to use to pull data from a histogram is
``percentiles``::

    (require '[metrics.histograms :refer [percentiles]])

    (percentiles search-results-returned)
    => { 0.75   180
         0.95   299
         0.99   300
         0.999  340
         1.0   1345 }

This returns a map of the percentiles you probably care about.  The keys are the
percentiles (doubles between 0 and 1 inclusive) and the values are the maximum
value for that percentile.  In this example:

* 75% of searches returned 180 or fewer results.
* 95% of searches returned 299 or fewer results.
* ... etc.

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (percentiles (histogram reg "search-results-returned"))
    => { 0.75   180
         0.95   299
         0.99   300
         0.999  340
         1.0   1345 }

If you want a different set of percentiles just pass them as a sequence::

    (require '[metrics.histograms :refer [percentiles]])

    (percentiles search-results-returned [0.50 0.75])
    => { 0.50 100
         0.75 180 }

.. _histograms/number-recorded:

``number-recorded``
~~~~~~~~~~~~~~~~~~~

To get the number of data points recorded over the entire lifetime of this
histogram::

    (require '[metrics.histograms :refer [number-recorded]])

    (number-recorded search-results-returned)
    => 12882

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (number-recorded (histogram reg "search-results-returned"))
    => 12882

.. _histograms/smallest:

``smallest``
~~~~~~~~~~~~

To get the smallest data point recorded over the entire lifetime of this
histogram::

    (require '[metrics.histograms :refer [smallest]])

    (smallest search-results-returned)
    => 4

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (smallest (histogram reg "search-results-returned"))
    => 4

.. _histograms/largest:

``largest``
~~~~~~~~~~~

To get the largest data point recorded over the entire lifetime of this
histogram::

    (require '[metrics.histograms :refer [largest]])

    (largest search-results-returned)
    => 1345

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (largest (histogram reg "search-results-returned"))
    => 1345

.. _histograms/mean:

``mean``
~~~~~~~~

To get the mean of the data points recorded over the entire lifetime of this
histogram::

    (require '[metrics.histograms :refer [mean]])

    (mean search-results-returned)
    => 233.12

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (mean (histogram reg "search-results-returned"))
    => 233.12

.. _histograms/std-dev:

``std-dev``
~~~~~~~~~~~

To get the standard deviation of the data points recorded over the entire
lifetime of this histogram::

    (require '[metrics.histograms :refer [std-dev]])

    (std-dev search-results-returned)
    => 80.2

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (std-dev (histogram reg "search-results-returned"))
    => 80.2

.. _histograms/sample:

``sample``
~~~~~~~~~~

You can get the current sample points the histogram is using with ``sample``,
but you almost *certainly* don't care about this.  If you use it make sure you
know what you're doing.

::

    (require '[metrics.histograms :refer [sample]])

    (sample search-results-returned)
    => [12 2232 234 122]

Or if you haven't held a reference to ``search-results-returned``, you can do the following::

    (sample (histogram reg "search-results-returned"))
    => [12 2232 234 122]