aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/engine/monitorreply.h
blob: 7e0af9be63a6e4163f8191b382ee0c946c9abdc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <cstdint>

namespace search::engine {

struct MonitorReply
{
    uint64_t                  activeDocs;
    uint64_t                  targetActiveDocs;
    int32_t                   distribution_key;
    uint32_t                  timestamp;
    bool                      is_blocking_writes;

    MonitorReply();
};

}