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

public class CountGroup extends Event {
    public CountGroup () {
    }

    public CountGroup (String name, String values) {
        init(name, values);
    }

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