com.datadog.api.client.v2.model.LogsAggregationFunction Maven / Gradle / Ivy
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2019-Present Datadog, Inc.
*/
package com.datadog.api.client.v2.model;
import com.datadog.api.client.ModelEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/** An aggregation function */
@JsonSerialize(using = LogsAggregationFunction.LogsAggregationFunctionSerializer.class)
public class LogsAggregationFunction extends ModelEnum {
private static final Set allowedValues =
new HashSet(
Arrays.asList(
"count",
"cardinality",
"pc75",
"pc90",
"pc95",
"pc98",
"pc99",
"sum",
"min",
"max",
"avg",
"median"));
public static final LogsAggregationFunction COUNT = new LogsAggregationFunction("count");
public static final LogsAggregationFunction CARDINALITY =
new LogsAggregationFunction("cardinality");
public static final LogsAggregationFunction PERCENTILE_75 = new LogsAggregationFunction("pc75");
public static final LogsAggregationFunction PERCENTILE_90 = new LogsAggregationFunction("pc90");
public static final LogsAggregationFunction PERCENTILE_95 = new LogsAggregationFunction("pc95");
public static final LogsAggregationFunction PERCENTILE_98 = new LogsAggregationFunction("pc98");
public static final LogsAggregationFunction PERCENTILE_99 = new LogsAggregationFunction("pc99");
public static final LogsAggregationFunction SUM = new LogsAggregationFunction("sum");
public static final LogsAggregationFunction MIN = new LogsAggregationFunction("min");
public static final LogsAggregationFunction MAX = new LogsAggregationFunction("max");
public static final LogsAggregationFunction AVG = new LogsAggregationFunction("avg");
public static final LogsAggregationFunction MEDIAN = new LogsAggregationFunction("median");
LogsAggregationFunction(String value) {
super(value, allowedValues);
}
public static class LogsAggregationFunctionSerializer
extends StdSerializer {
public LogsAggregationFunctionSerializer(Class t) {
super(t);
}
public LogsAggregationFunctionSerializer() {
this(null);
}
@Override
public void serialize(
LogsAggregationFunction value, JsonGenerator jgen, SerializerProvider provider)
throws IOException, JsonProcessingException {
jgen.writeObject(value.value);
}
}
@JsonCreator
public static LogsAggregationFunction fromValue(String value) {
return new LogsAggregationFunction(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy