From 2281246d41628d747a28020fedc78d4575e69256 Mon Sep 17 00:00:00 2001 From: Christopher Dancy Date: Sat, 13 Feb 2016 11:26:52 -0500 Subject: [PATCH] ADDED: gelf, fluentd, awslogs, and splunk drivers --- .../com/github/dockerjava/api/model/LogConfig.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/github/dockerjava/api/model/LogConfig.java b/src/main/java/com/github/dockerjava/api/model/LogConfig.java index cf9cdc1ee..8c1bbdb86 100644 --- a/src/main/java/com/github/dockerjava/api/model/LogConfig.java +++ b/src/main/java/com/github/dockerjava/api/model/LogConfig.java @@ -69,7 +69,15 @@ public LogConfig setConfig(Map config) { @JsonDeserialize(using = LoggingType.Deserializer.class) @JsonSerialize(using = LoggingType.Serializer.class) public static enum LoggingType { - DEFAULT("json-file"), JSON_FILE("json-file"), NONE("none"), SYSLOG("syslog"), JOURNALD("journald"); + DEFAULT("json-file"), + JSON_FILE("json-file"), + NONE("none"), + SYSLOG("syslog"), + JOURNALD("journald"), + GELF("gelf"), + FLUENTD("fluentd"), + AWSLOGS("awslogs"), + SPLUNK("splunk"); private String type;