summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/event/Histogram.java
blob: 08875063a4e066e7049b5f0602b79eec97fc22a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log.event;

@Deprecated(forRemoval = true, since = "7")
public class Histogram extends Event {
    public Histogram () {
    }

    public Histogram (String name, String value, String representation) {
        init(name, value, representation);
    }

    private void init (String name, String value, String representation) {
        setValue("name", name);
        setValue("counts", value);
        setValue("representation", representation);
    }
}