aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/configchange/RefeedActionsFormatter.java
blob: c110e7f08f8b277d1c7f03d6b1bc7988f15f19e1 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.configchange;

/**
 * Class used to format re-feed actions for human readability.
 *
 * @author geirst
 * @since 5.44
 */
public class RefeedActionsFormatter {

    private final RefeedActions actions;

    public RefeedActionsFormatter(RefeedActions actions) {
        this.actions = actions;
    }

    public String format() {
        StringBuilder builder = new StringBuilder();
        for (RefeedActions.Entry entry : actions.getEntries()) {
            builder.append(entry.name() + ": Consider removing data and re-feed document type '" + entry.getDocumentType() +
                           "' in cluster '" + entry.getClusterName() + "' because:\n");
            int counter = 1;
            for (String message : entry.getMessages()) {
                builder.append("    " + (counter++) + ") " + message + "\n");
            }
        }
        return builder.toString();
    }

}