aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/servicedump/VespaLogDumper.java
blob: 32814e38d3966a8ef773bcc3a1f47597eaeec4b4 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.maintenance.servicedump;

import com.yahoo.vespa.hosted.node.admin.task.util.fs.ContainerPath;
import com.yahoo.yolean.concurrent.Sleeper;

import java.nio.file.Files;
import java.time.Duration;
import java.util.List;
import java.util.logging.Logger;

import static com.yahoo.vespa.hosted.node.admin.maintenance.servicedump.Artifact.Classification.CONFIDENTIAL;
import static com.yahoo.yolean.Exceptions.uncheck;

/**
 * @author bjorncs
 */
class VespaLogDumper implements ArtifactProducer {

    private static final Logger log = Logger.getLogger(VespaLogDumper.class.getName());

    private final Sleeper sleeper;

    VespaLogDumper(Sleeper sleeper) { this.sleeper = sleeper; }

    @Override public String artifactName() { return "vespa-log"; }
    @Override public String description() { return "Current Vespa logs"; }

    @Override
    public List<Artifact> produceArtifacts(Context ctx) {
        if (ctx.options().sendProfilingSignal()) {
            log.info("Sending SIGPROF to process to include vespa-malloc dump in Vespa log");
            ctx.executeCommandInNode(List.of("kill", "-SIGPROF", Integer.toString(ctx.servicePid())), true);
            sleeper.sleep(Duration.ofSeconds(3));
        }
        ContainerPath vespaLogFile = ctx.containerPathUnderVespaHome("logs/vespa/vespa.log");
        ContainerPath destination = ctx.outputContainerPath().resolve("vespa.log");
        if (Files.exists(vespaLogFile)) {
            uncheck(() -> Files.copy(vespaLogFile, destination));
            return List.of(
                    Artifact.newBuilder().classification(CONFIDENTIAL).file(destination).compressOnUpload().build());
        } else {
            log.info("Log file '" + vespaLogFile + "' does not exist");
            return List.of();
        }
    }
}