SIRONA-60 adding LoggingCounterDataStore and LoggingGaugeDataStore

git-svn-id: https://svn.apache.org/repos/asf/incubator/sirona/trunk@1737026 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/main/java/org/apache/sirona/store/counter/LoggingCounterDataStore.java b/core/src/main/java/org/apache/sirona/store/counter/LoggingCounterDataStore.java
new file mode 100644
index 0000000..ed04c6b
--- /dev/null
+++ b/core/src/main/java/org/apache/sirona/store/counter/LoggingCounterDataStore.java
@@ -0,0 +1,43 @@
+/*

+ * Licensed to the Apache Software Foundation (ASF) under one or more

+ * contributor license agreements.  See the NOTICE file distributed with

+ * this work for additional information regarding copyright ownership.

+ * The ASF licenses this file to You under the Apache License, Version 2.0

+ * (the "License"); you may not use this file except in compliance with

+ * the License.  You may obtain a copy of the License at

+ *

+ *      http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed under the License is distributed on an "AS IS" BASIS,

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

+package org.apache.sirona.store.counter;

+

+import org.apache.sirona.configuration.Configuration;

+import org.apache.sirona.counters.Counter;

+import org.apache.sirona.store.memory.counter.BatchCounterDataStore;

+

+import java.util.Collection;

+import java.util.logging.Logger;

+

+public class LoggingCounterDataStore extends BatchCounterDataStore {

+    private final Logger logger;

+

+    public LoggingCounterDataStore() {

+        logger = Logger.getLogger(Configuration.getProperty(

+                Configuration.CONFIG_PROPERTY_PREFIX + "counter.store.logger.name", "org.apache.sirona.counters"));

+    }

+

+    protected void pushCountersByBatch(final Collection<Counter> instance) {

+        for (final Counter c : instance) {

+            logger.info(format(c));

+        }

+    }

+

+    protected String format(final Counter c) {

+        return c.toString();

+    }

+}

diff --git a/core/src/main/java/org/apache/sirona/store/gauge/LoggingGaugeDataStore.java b/core/src/main/java/org/apache/sirona/store/gauge/LoggingGaugeDataStore.java
new file mode 100644
index 0000000..c84f39b
--- /dev/null
+++ b/core/src/main/java/org/apache/sirona/store/gauge/LoggingGaugeDataStore.java
@@ -0,0 +1,44 @@
+/*

+ * Licensed to the Apache Software Foundation (ASF) under one or more

+ * contributor license agreements.  See the NOTICE file distributed with

+ * this work for additional information regarding copyright ownership.

+ * The ASF licenses this file to You under the Apache License, Version 2.0

+ * (the "License"); you may not use this file except in compliance with

+ * the License.  You may obtain a copy of the License at

+ *

+ *      http://www.apache.org/licenses/LICENSE-2.0

+ *

+ * Unless required by applicable law or agreed to in writing, software

+ * distributed under the License is distributed on an "AS IS" BASIS,

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

+ * See the License for the specific language governing permissions and

+ * limitations under the License.

+ */

+package org.apache.sirona.store.gauge;

+

+import org.apache.sirona.Role;

+import org.apache.sirona.configuration.Configuration;

+

+import java.util.Map;

+import java.util.logging.Logger;

+

+public class LoggingGaugeDataStore extends BatchGaugeDataStoreAdapter {

+    private final Logger logger;

+

+    public LoggingGaugeDataStore() {

+        logger = Logger.getLogger(Configuration.getProperty(

+                Configuration.CONFIG_PROPERTY_PREFIX + "gauge.store.logger.name", "org.apache.sirona.gauges"));

+    }

+

+    protected void pushGauges(final Map<Role, Measure> gauges) {

+        for (final Map.Entry<Role, Measure> c : gauges.entrySet()) {

+            logger.info(format(c));

+        }

+    }

+

+    protected String format(final Map.Entry<Role, Measure> c) {

+        final Role key = c.getKey();

+        final Measure value = c.getValue();

+        return key.getName() + ": (time=" + value.getTime() + ", value=" + value.getValue() + " " + key.getUnit() + ")";

+    }

+}