aboutsummaryrefslogtreecommitdiffstats
path: root/logforwarder/src/apps/vespa-otelcol-start/main.cpp
blob: 2e3e0659707d8442189351702b482163e4c0ef38 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "wrapper.h"
#include <csignal>
#include <unistd.h>
#include <vespa/vespalib/util/sig_catch.h>

#include <vespa/defaults.h>
#include <vespa/log/log.h>
LOG_SETUP("vespa-otelcol-start");

static void run(const char *configId) {
    vespalib::SigCatch catcher;
    Wrapper handler(configId);
    handler.start(configId);
    while (! catcher.receivedStopSignal()) {
        handler.check();
        usleep(125000); // Avoid busy looping;
    }
    handler.stop();
};

int main(int argc, char** argv) {
    vespa::Defaults::bootstrap(argv[0]);
    int c = -1;
    const char *cfid = nullptr;
    while ((c = getopt(argc, argv, "c:")) != -1) {
        switch (c) {
        case 'c':
            cfid = optarg;
            break;
        default:
            cfid = nullptr;
            break;
        }
    }
    if (cfid == nullptr) {
        LOG(error, "Usage: %s -c <config-id>", argv[0]);
        return EXIT_FAILURE;
    }
    run(cfid);
    return 0;
}