aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/qps_analyzer.h
blob: d5323032f2d3601259487146673813eabfcde8f3 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "analyzer.h"

namespace vbench {

/**
 * Component calculating the rate of successful requests based on end
 * time.
 **/
class QpsAnalyzer : public Analyzer
{
private:
    Handler<Request> &_next;
    double            _qps;
    size_t            _samples;
    double            _begin;
    size_t            _cnt;

public:
    QpsAnalyzer(Handler<Request> &next);
    void handle(Request::UP request) override;
    void report() override;
    void addEndTime(double end);
};

} // namespace vbench