Skip to content

Commit 7859177

Browse files
committed
Merge pull request #463 from cdancy/ADD-LOG-DRIVERS
ADDED: gelf, fluentd, awslogs, and splunk drivers
2 parents e4a7f87 + 2281246 commit 7859177

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main/java/com/github/dockerjava/api/model/LogConfig.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,15 @@ public LogConfig setConfig(Map<String, String> config) {
6969
@JsonDeserialize(using = LoggingType.Deserializer.class)
7070
@JsonSerialize(using = LoggingType.Serializer.class)
7171
public static enum LoggingType {
72-
DEFAULT("json-file"), JSON_FILE("json-file"), NONE("none"), SYSLOG("syslog"), JOURNALD("journald");
72+
DEFAULT("json-file"),
73+
JSON_FILE("json-file"),
74+
NONE("none"),
75+
SYSLOG("syslog"),
76+
JOURNALD("journald"),
77+
GELF("gelf"),
78+
FLUENTD("fluentd"),
79+
AWSLOGS("awslogs"),
80+
SPLUNK("splunk");
7381

7482
private String type;
7583

0 commit comments

Comments
 (0)