org.graylog.plugins.sidecar.common.SidecarPluginConfiguration 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.graylog.plugins.sidecar.common;
import com.github.joschi.jadconfig.Parameter;
import com.github.joschi.jadconfig.util.Duration;
import com.github.joschi.jadconfig.validators.PositiveDurationValidator;
import com.github.joschi.jadconfig.validators.PositiveIntegerValidator;
import com.github.joschi.jadconfig.validators.StringNotEmptyValidator;
import org.graylog2.plugin.PluginConfigBean;
public class SidecarPluginConfiguration implements PluginConfigBean {
private static final String PREFIX = "sidecar_";
@Parameter(value = PREFIX + "user", validator = StringNotEmptyValidator.class)
private String user = "graylog-sidecar";
@Parameter(value = PREFIX + "cache_time", validator = PositiveDurationValidator.class)
private Duration cacheTime = Duration.hours(1L);
@Parameter(value = PREFIX + "cache_max_size", validator = PositiveIntegerValidator.class)
private int cacheMaxSize = 5000;
public Duration getCacheTime() {
return cacheTime;
}
public String getUser() {
return user;
}
public int getCacheMaxSize() {
return cacheMaxSize;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy