org.graylog2.datatiering.hotonly.HotOnlyDataTieringConfig Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.datatiering.hotonly;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.auto.value.AutoValue;
import jakarta.validation.constraints.NotNull;
import org.graylog.autovalue.WithBeanGetter;
import org.graylog2.datatiering.DataTieringConfig;
import org.joda.time.Period;
import static org.graylog2.indexer.rotation.tso.IndexLifetimeConfig.FIELD_INDEX_LIFETIME_MAX;
import static org.graylog2.indexer.rotation.tso.IndexLifetimeConfig.FIELD_INDEX_LIFETIME_MIN;
@AutoValue
@WithBeanGetter
@JsonDeserialize(builder = HotOnlyDataTieringConfig.Builder.class)
public abstract class HotOnlyDataTieringConfig implements DataTieringConfig {
public final static String TYPE = "hot_only";
public static Builder builder() {
return Builder.create();
}
@AutoValue.Builder
public abstract static class Builder {
@JsonCreator
public static Builder create() {
return new AutoValue_HotOnlyDataTieringConfig.Builder()
.type(TYPE);
}
@JsonProperty(FIELD_TYPE)
public abstract Builder type(@NotNull String type);
@JsonProperty(FIELD_INDEX_LIFETIME_MIN)
public abstract Builder indexLifetimeMin(Period indexLifetimeMin);
@JsonProperty(FIELD_INDEX_LIFETIME_MAX)
public abstract Builder indexLifetimeMax(Period indexLifetimeMax);
public abstract HotOnlyDataTieringConfig build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy