aboutsummaryrefslogtreecommitdiffstats
path: root/configd/src/apps/sentinel/metrics.cpp
blob: 42c61c06b50d683e2349a866e943468e6a770993 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "metrics.h"
#include <vespa/log/log.h>
LOG_SETUP(".metrics");

namespace config {
namespace sentinel {

StartMetrics::StartMetrics()
    : currentlyRunningServices(0), totalRestartsCounter(0), totalRestartsLastPeriod(1),
      lastLoggedTime(0),
      totalRestartsLastSnapshot(0),
      snapshotStart(0),
      snapshotEnd(0)
{
    snapshotEnd = time(nullptr);
    lastLoggedTime = snapshotEnd - 55;
}

void
StartMetrics::output()
{
    EV_VALUE("currently_running_services", currentlyRunningServices);
    EV_VALUE("total_restarts_last_period", totalRestartsLastPeriod);
    EV_COUNT("total_restarts_counter", totalRestartsCounter);
}

void
StartMetrics::reset(unsigned long curTime)
{
    totalRestartsLastSnapshot = totalRestartsLastPeriod;
    snapshotStart = snapshotEnd;
    snapshotEnd = curTime;
    totalRestartsLastPeriod = 0;
    lastLoggedTime = curTime;
}

void
StartMetrics::maybeLog()
{
    uint32_t curTime = time(nullptr);
    if (curTime > lastLoggedTime + 59) {
        output();
        reset(curTime);
    }
}

} // end namespace config::sentinel
} // end namespace config