File: stats-service.rst

package info (click to toggle)
buildbot 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,080 kB
  • sloc: python: 174,183; sh: 1,204; makefile: 332; javascript: 119; xml: 16
file content (608 lines) | stat: -rw-r--r-- 21,940 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
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
.. _stats-service:

Statistics Service
==================

The statistics service (or stats service) is implemented in :mod:`buildbot.statistics.stats_service`.
Please see :bb:cfg:`stats-service` for more information.

Here is a diagram demonstrating the workings of the stats service:

.. image:: _images/stats-service.png

Stats Service
-------------

.. py:class:: buildbot.statistics.stats_service.StatsService

   An instance of this class functions as a :class:`BuildbotService`.
   The instance of the running service is initialized in the master configuration file (see :bb:cfg:`stats-service` for more information).
   The running service is accessible everywhere in Buildbot via the :class:`BuildMaster`.
   The service is available at ``self.master.namedServices['<service-name>']``.
   It takes the following initialization arguments:

   ``storage_backends``
     A list of storage backends.
     These are instance of subclasses of :class:`StatsStorageBase`.
   ``name``
     (str) The name of this service.
     This name can be used to access the running instance of this service using ``self.master.namedServices[name]``.

   Please see :bb:cfg:`stats-service` for examples.

   .. py:method:: checkConfig(self, storage_backends)

      ``storage_backends``
        A list of storage backends.

      This method is called automatically to verify that the list of storage backends contains instances of subclasses of :class:`StatsStorageBase`.

   .. py:method:: reconfigService(self, storage_backends)

      ``storage_backends``
        A list of storage backends.

      This method is called automatically to reconfigure the running service.

   .. py:method:: registerConsumers(self)

      Internal method for this class called to register all consumers (methods from Capture classes) to the MQ layer.

   .. py:method:: stopService(self)

      Internal method for this class to stop the stats service and clean up.

   .. py:method:: removeConsumers(self)

      Internal method for this class to stop and remove consumers from the MQ layer.

   .. py:method:: yieldMetricsValue(self, data_name, post_data, buildid)

      ``data_name``
        (str) The name of the data being sent for storage.
      ``post_data``
        A dictionary of key-value pairs that is sent for storage.
      ``buildid``
        The integer build id of the current build.
        Obtainable in all ``BuildSteps``.

      This method should be called to post data that is not generated and stored as build-data in the database.
      This method generates the ``stats-yield-data`` event to the mq layer which is then consumed in :py:class:`postData`.

.. _storage-backend:

Storage backends
----------------

Storage backends are responsible for storing any statistics/data sent to them.
A storage backend will generally be some sort of a database-server running on a machine.

.. note:: This machine may be different from the one running :class:`BuildMaster`.

Data is captured according to the master config file and then is sent to each of the storage backends provided by the master configuration (see :bb:cfg:`stats-service`).

Each storage backend has a Python client defined as part of :mod:`buildbot.statistics.storage_backends` to aid in posting data by :class:`StatsService`.

Currently, only `InfluxDB`_ is supported as a storage backend.

.. py:class:: buildbot.statistis.storage_backends.base.StatsStorageBase

   An abstract class for all storage services.
   It cannot be directly initialized - it would raise a ``TypeError`` otherwise.

   .. py:method:: thd_postStatsValue(self, post_data, series_name, context)

      ``post_data``
        A dict of key-value pairs that is sent for storage.
        The keys of this dict can be thought of as columns in a database and the value is the data stored for that column.
      ``series_name``
        (str) The name of the time-series for this statistic.
      ``context``
        (Optional) Any other contextual information about the data.
        It is a dict of key-value pairs.

      An abstract method that needs to be implemented by every child class of this class.
      Not doing so will result in a ``TypeError`` when starting Buildbot.

.. py:class:: buildbot.statistics.storage_backends.influxdb_client.InfluxStorageService

   `InfluxDB`_ is a distributed time series database that employs a key-value pair storage system.

   This class is a Buildbot client to the InfluxDB storage backend.
   It is available in the configuration as ``statistics.InfluxStorageService``.
   It takes the following initialization arguments:

   ``url``
     (str) The URL where the service is running.
   ``port``
     (int) The port on which the service is listening.
   ``user``
     (str) Username of an InfluxDB user.
   ``password``
     (str) Password for ``user``.
   ``db``
     (str) The name of database to be used.
   ``captures``
     A list of instances of subclasses of :py:class:`Capture`.
     This tells which stats are to be stored in this storage backend.
   ``name=None``
     (Optional) (str) The name of this storage backend.

   .. py:method:: thd_postStatsValue(self, post_data, series_name, context={})

      ``post_data``
        A dict of key-value pairs that is sent for storage.
        The keys of this dict can be thought of as columns in a database and the value is the data stored for that column.
      ``series_name``
        (str) The name of the time-series for this statistic.
      ``context``
        (Optional) Any other contextual information about the data.
        It is a dict of key-value pairs.

      This method constructs a dictionary of data to be sent to InfluxDB in the proper format and then sends the data to the InfluxDB instance.

.. _InfluxDB: https://influxdata.com/time-series-platform/influxdb/

Capture Classes
---------------

Capture classes are used for declaring which data needs to captured and sent to storage backends for storage.

.. py:class:: buildbot.statistics.capture.Capture

   This is the abstract base class for all capture classes.
   Not to be used directly.
   It's initialized with the following parameters:

   .. py:attribute:: routingKey
     :noindex:

     (tuple) The routing key to be used by :class:`StatsService` to register consumers to the MQ layer for the subclass of this class.

   .. py:attribute:: callback

     The callback registered with the MQ layer for the consumer of a subclass of this class.
     Each subclass must provide a default callback for this purpose.

   .. py:method:: _defaultContext(self, msg)

      A method for providing default context to the storage backends.

   .. py:method:: consume(self, routingKey, msg)

      This is an abstract method - each subclass of this class should implement its own consume method.
      If not, then the subclass can't be instantiated.
      The consume method, when called (from the mq layer), receives the following arguments:

      .. py:attribute:: routingKey

        The routing key which was registered to the MQ layer.
        Same as the ``routingKey`` provided to instantiate this class.

      .. py:attribute:: msg

        The message that was sent by the producer.

   .. py:method:: _store(self, post_data, series_name, context)

      This is an abstract method of this class.
      It must be implemented by all subclasses of this class.
      It takes the following arguments:

      .. py:attribute:: post_data

        (dict) The key-value pair being sent to the storage backend.

      .. py:attribute:: series_name

        (str) The name of the series to which this data is stored.

      .. py:attribute:: context

        (dict) Any additional information pertaining to the data being sent.

.. py:class:: buildbot.statistics.capture.CapturePropertyBase

   This is a base class for both :class:`CaptureProperty` and :class:`CapturePropertyAllBuilders` and abstracts away much of the common functionality between the two classes.
   It cannot be initialized directly as it contains an abstract method and raises ``TypeError`` if tried.
   It is initialized with the following arguments:

   .. py:attribute:: property_name
     :noindex:

     (str) The name of property needed to be recorded as a statistic.
     This can be a regular expression if ``regex=True`` (see below).

   .. py:attribute:: callback=None

     The callback function that is used by ``CaptureProperty.consumer`` to post-process data before formatting it and sending it to the appropriate storage backends.
     A default callback is provided for this:

       .. py:function:: default_callback(props, property_name)

       It returns property value for ``property_name``.
       It receives the following arguments:

       .. py:attribute:: props

         A dictionary of all build properties.

       .. py:attribute:: property_name

         (str) Name of the build property to return.

   .. py:attribute:: regex=False

     If this is set to ``True``, then the property name can be a regular expression.
     All properties matching this regular expression will be sent for storage.

   .. py:method:: consume(self, routingKey, msg)

      The consumer for all CaptureProperty classes described below.
      This method filters out the correct properties as per the configuration file and sends those properties for storage.
      The subclasses of this method do not need to implement this method as it takes care of all the functionality itself.
      See :class:`Capture` for more information.

   .. py:method:: _builder_name_matches(self, builder_info)

      This is an abstract method and needs to be implemented by all subclasses of this class.
      This is a helper method to the ``consume`` method mentioned above.
      It checks whether a builder is allowed to send properties to the storage backend according to the configuration file.
      It takes one argument:

      .. py:attribute:: builder_info

        (dict) The dictionary returned by the data API containing the builder information.

.. py:class:: buildbot.statistics.capture.CaptureProperty

   The capture class for capturing build properties.
   It is available in the configuration as ``statistics.CaptureProperty``.

   It takes the following arguments:

   .. py:attribute:: builder_name

     (str) The name of builder in which the property is recorded.

   .. py:attribute:: property_name

     (str) The name of property needed to be recorded as a statistic.

   .. py:attribute:: callback=None

     The callback function that is used by ``CaptureProperty.consumer`` to post-process data before formatting it and sending it to the appropriate storage backends.
     A default callback is provided for this (see :class:`CapturePropertyBase` for more information).

   .. py:attribute:: regex=False

     If this is set to ``True``, then the property name can be a regular expression.
     All properties matching this regular expression will be sent for storage.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CapturePropertyBase` for more information on this method.

.. py:class:: buildbot.statistics.capture.CapturePropertyAllBuilders

   The capture class to use for capturing build properties on all builders.
   It is available in the configuration as ``statistics.CapturePropertyAllBuilders``.

   It takes the following arguments:

   .. py:attribute:: property_name

     (str) The name of property needed to be recorded as a statistic.

   .. py:attribute:: callback=None

     The callback function that is used by ``CaptureProperty.consumer`` to post-process data before formatting it and sending it to the appropriate storage backends.
     A default callback is provided for this (see :class:`CapturePropertyBase` for more information).

   .. py:attribute:: regex=False

     If this is set to ``True``, then the property name can be a regular expression.
     All properties matching this regular expression will be sent for storage.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CapturePropertyBase` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildTimes

   A base class for all Capture classes that deal with build times (start/end/duration).
   Not to be used directly.
   It's initialized with:

   .. py:attribute:: builder_name

     (str) The name of builder whose times are to be recorded.

   .. py:attribute:: callback

     The callback function that is used by a subclass of this class to post-process data before formatting it and sending it to the appropriate storage backends.
     A default callback is provided for this.
     Each subclass must provide a default callback that is used in initialization of this class should the user not provide a callback.

   .. py:method:: consume(self, routingKey, msg)

      The consumer for all subclasses of this class.
      See :class:`Capture` for more information.

      .. note:: This consumer requires all subclasses to implement:

         .. py:attribute:: self._time_type

           A string used as a key in ``post_data`` sent to storage services.

         .. py:method:: self._retValParams(msg)

           A method that takes in the ``msg`` this consumer gets and returns a list of arguments for the capture callback.

   .. py:method:: _retValParams(self, msg)

      This is an abstract method which needs to be implemented by subclasses.
      This method needs to return a list of parameters that will be passed to the ``callback`` function.
      See individual build ``CaptureBuild*`` classes for more information.

   .. py:method:: _err_msg(self, build_data, builder_name)

      A helper method that returns an error message for the ``consume`` method.

   .. py:method:: _builder_name_matches(self, builder_info)

      This is an abstract method and needs to be implemented by all subclasses of this class.
      This is a helper method to the ``consume`` method mentioned above.
      It checks whether a builder is allowed to send build times to the storage backend according to the configuration file.
      It takes one argument:

      .. py:attribute:: builder_info

        (dict) The dictionary returned by the data API containing the builder information.

.. py:class:: buildbot.statistics.capture.CaptureBuildStartTime

   A capture class for capturing build start times.
   It takes the following arguments:

   .. py:attribute:: builder_name

     (str) The name of builder whose times are to be recorded.

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more information.

     The default callback:

     .. py:function:: default_callback(start_time)

       It returns the start time in ISO format.
       It takes one argument:

        .. py:attribute:: start_time

          A python datetime object that denotes the build start time.

   .. py:method:: _retValParams(self, msg)

      Returns a list containing one Python datetime object (start time) from ``msg`` dictionary.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildStartTimeAllBuilders

   A capture class for capturing build start times from all builders.
   It is a subclass of :class:`CaptureBuildStartTime`.
   It takes the following arguments:

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more information.

     The default callback:

        See ``CaptureBuildStartTime.__init__`` for the definition.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildEndTime

   A capture class for capturing build end times.
   Takes the following arguments:

   .. py:attribute:: builder_name

     (str) The name of builder whose times are to be recorded.

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more information.

     The default callback:

     .. py:function:: default_callback(end_time)

       It returns the end time in ISO format.
       It takes one argument:

        .. py:attribute:: end_time

          A python datetime object that denotes the build end time.

   .. py:method:: _retValParams(self, msg)

     Returns a list containing two Python datetime object (start time and end time) from ``msg`` dictionary.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildEndTimeAllBuilders

   A capture class for capturing build end times from all builders.
   It is a subclass of :class:`CaptureBuildEndTime`.
   It takes the following arguments:

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more information.

     The default callback:

        See ``CaptureBuildEndTime.__init__`` for the definition.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildDuration

   A capture class for capturing build duration.
   Takes the following arguments:

   .. py:attribute:: builder_name

     (str) The name of builder whose times are to be recorded.

   .. py:attribute:: report_in='seconds'

     Can be one of three: ``'seconds'``, ``'minutes'``, or ``'hours'``.
     This is the units in which the build time will be reported.

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more information.

     The default callback:

     .. py:function:: default_callback(start_time, end_time)

       It returns the duration of the build as per the ``report_in`` argument.
       It receives the following arguments:

        .. py:attribute:: start_time

          A python datetime object that denotes the build start time.

        .. py:attribute:: end_time

          A python datetime object that denotes the build end time.

   .. py:method:: _retValParams(self, msg)

      Returns a list containing one Python datetime object (end time) from ``msg`` dictionary.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureBuildDurationAllBuilders

   A capture class for capturing build durations from all builders.
   It is a subclass of :class:`CaptureBuildDuration`.
   It takes the following arguments:

   .. py:attribute:: callback=None

     The callback function for this class.
     See :class:`CaptureBuildTimes` for more.

     The default callback:

        See ``CaptureBuildDuration.__init__`` for the definition.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureBuildTimes` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureDataBase

   This is a base class for both :class:`CaptureData` and :class:`CaptureDataAllBuilders` and abstracts away much of the common functionality between the two classes.
   Cannot be initialized directly as it contains an abstract method and raises ``TypeError`` if tried.
   It is initialized with the following arguments:

   .. py:attribute:: data_name

     (str) The name of data to be captured.
     Same as in :meth:`yieldMetricsValue`.

   .. py:attribute:: callback=None

     The callback function for this class.

     The default callback:

        The default callback takes a value ``x`` and return it without changing.
        As such, ``x`` itself acts as the ``post_data`` sent to the storage backends.

   .. py:method:: consume(self, routingKey, msg)

      The consumer for this class.
      See :class:`Capture` for more.

   .. py:method:: _builder_name_matches(self, builder_info)

      This is an abstract method and needs to be implemented by all subclasses of this class.
      This is a helper method to the ``consume`` method mentioned above.
      It checks whether a builder is allowed to send properties to the storage backend according to the configuration file.
      It takes one argument:

      .. py:attribute:: builder_info

        (dict) The dictionary returned by the data API containing the builder information.

.. py:class:: buildbot.statistics.capture.CaptureData

   A capture class for capturing arbitrary data that is not stored as build-data.
   See :meth:`yieldMetricsValue` for more.
   Takes the following arguments for initialization:

   .. py:attribute:: data_name

     (str) The name of data to be captured.
     Same as in :meth:`yieldMetricsValue`.

   .. py:attribute:: builder_name

     (str) The name of the builder on which the data is captured.

   .. py:attribute:: callback=None

     The callback function for this class.

     The default callback:

        See :class:`CaptureDataBase` of definition.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureDataBase` for more information on this method.

.. py:class:: buildbot.statistics.capture.CaptureDataAllBuilders

   A capture class to capture arbitrary data on all builders.
   See :meth:`yieldMetricsValue` for more.
   It takes the following arguments:

   .. py:attribute:: data_name

     (str) The name of data to be captured.
     Same as in :meth:`yieldMetricsValue`.

   .. py:attribute:: callback=None

     The callback function for this class.

   .. py:method:: _builder_name_matches(self, builder_info)

      See :class:`CaptureDataBase` for more information on this method.