diff --git a/src/main/java/com/commafeed/backend/MetricsBean.java b/src/main/java/com/commafeed/backend/MetricsBean.java index 9a984e89..0eed4510 100644 --- a/src/main/java/com/commafeed/backend/MetricsBean.java +++ b/src/main/java/com/commafeed/backend/MetricsBean.java @@ -170,5 +170,21 @@ public class MetricsBean { this.pushFeedsQueued = pushFeedsQueued; } + public int getEntryCacheHit() { + return entryCacheHit; + } + + public void setEntryCacheHit(int entryCacheHit) { + this.entryCacheHit = entryCacheHit; + } + + public int getEntryCacheMiss() { + return entryCacheMiss; + } + + public void setEntryCacheMiss(int entryCacheMiss) { + this.entryCacheMiss = entryCacheMiss; + } + } }