aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java')
-rw-r--r--container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java b/container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java
new file mode 100644
index 00000000000..7432c313286
--- /dev/null
+++ b/container-core/src/main/java/com/yahoo/container/logging/FileConnectionLog.java
@@ -0,0 +1,30 @@
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+package com.yahoo.container.logging;
+
+import com.google.inject.Inject;
+import com.yahoo.component.AbstractComponent;
+
+/**
+ * @author mortent
+ */
+public class FileConnectionLog extends AbstractComponent implements ConnectionLog {
+
+ private final ConnectionLogHandler logHandler;
+
+ @Inject
+ public FileConnectionLog(ConnectionLogConfig config) {
+ logHandler = new ConnectionLogHandler(config.logDirectoryName(), config.cluster(), config.queueSize(), new JsonConnectionLogWriter());
+ }
+
+ @Override
+ public void log(ConnectionLogEntry connectionLogEntry) {
+ logHandler.log(connectionLogEntry);
+ }
+
+ @Override
+ public void deconstruct() {
+ logHandler.shutdown();
+ }
+
+} \ No newline at end of file