Increment the current value of the metric called 'name'.
(self, name)
| 383 | return [(k, v.value) for k, v in self._metrics.items()] |
| 384 | |
| 385 | def increment_metric(self, name): |
| 386 | """Increment the current value of the metric called 'name'.""" |
| 387 | increment(self._metrics[name]) |
| 388 | |
| 389 | |
| 390 | class QueryReport(object): |
no test coverage detected