aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/flushengine/flush_engine_explorer.cpp
blob: 0c9d9311e3d9e4d513f649ebe2135001af594fe0 (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
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "flush_engine_explorer.h"
#include "flushengine.h"
#include <vespa/vespalib/data/slime/cursor.h>
#include <vespa/vespalib/data/slime/inserter.h>

using vespalib::slime::Cursor;
using vespalib::slime::Inserter;
using vespalib::StateExplorer;
using searchcorespi::IFlushTarget;

namespace proton {

namespace {

void
convertToSlime(const FlushEngine::FlushMetaSet &flushingTargets, Cursor &array)
{
    for (const auto &target : flushingTargets) {
        Cursor &object = array.addObject();
        object.setString("name", target.getName());
        object.setString("startTime", vespalib::to_string(target.getStart()));
        object.setDouble("elapsedTime", vespalib::to_s(target.elapsed()));
    }
}

void
sortTargetList(FlushContext::List &allTargets)
{
    std::sort(allTargets.begin(), allTargets.end(),
            [](const FlushContext::SP &rhs, const FlushContext::SP &lhs) {
                return rhs->getTarget()->getFlushedSerialNum() <
                        lhs->getTarget()->getFlushedSerialNum();
    });
}

void
convertToSlime(const FlushContext::List &allTargets,
               const vespalib::system_time &now,
               Cursor &array)
{
    for (const auto &ctx : allTargets) {
        Cursor &object = array.addObject();
        object.setString("name", ctx->getName());
        const IFlushTarget::SP &target = ctx->getTarget();
        object.setLong("flushedSerialNum", target->getFlushedSerialNum());
        object.setLong("memoryGain", target->getApproxMemoryGain().gain());
        object.setLong("diskGain", target->getApproxDiskGain().gain());
        object.setString("lastFlushTime", vespalib::to_string(target->getLastFlushTime()));
        vespalib::duration timeSinceLastFlush = now - target->getLastFlushTime();
        object.setDouble("timeSinceLastFlush", vespalib::to_s(timeSinceLastFlush));
        object.setBool("needUrgentFlush", target->needUrgentFlush());
    }
}

}

FlushEngineExplorer::FlushEngineExplorer(const FlushEngine &engine)
    : _engine(engine)
{
}

void
FlushEngineExplorer::get_state(const Inserter &inserter, bool full) const
{
    Cursor &object = inserter.insertObject();
    if (full) {
        vespalib::system_time now = vespalib::system_clock::now();
        convertToSlime(_engine.getCurrentlyFlushingSet(), object.setArray("flushingTargets"));
        FlushContext::List allTargets = _engine.getTargetList(true);
        sortTargetList(allTargets);
        convertToSlime(allTargets, now, object.setArray("allTargets"));
    }
}

} // namespace proton