This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.boot.actuate.cache.CacheStatistics; | |
import org.springframework.boot.actuate.cache.CacheStatisticsProvider; | |
import org.springframework.boot.actuate.cache.DefaultCacheStatistics; | |
import org.springframework.cache.CacheManager; | |
import org.springframework.data.redis.cache.RedisCache; | |
import org.springframework.data.redis.connection.RedisConnection; | |
import org.springframework.data.redis.connection.RedisConnectionFactory; | |
import org.springframework.data.redis.core.RedisConnectionUtils; | |
import java.util.Properties; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@JsonPropertyOrder(value = { "run", "runParameters", "fileStatistics", "runSummary" }) | |
public class RunStats { | |
public static final String TYPE = "type"; | |
public static final String START_DATE = "start"; | |
public static final String END_DATE = "end"; | |
@JsonProperty("run") | |
private Integer run; |