-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Description
My use case requires the use of a custom logging driver. Due to the representation of LoggingType as an enum:
docker-java/docker-java-api/src/main/java/com/github/dockerjava/api/model/LogConfig.java
Lines 66 to 80 in 20f0831
| public enum LoggingType { | |
| NONE("none"), | |
| DEFAULT("json-file"), | |
| LOCAL("local"), | |
| ETWLOGS("etwlogs"), | |
| JSON_FILE("json-file" 6786 span>), | |
| SYSLOG("syslog"), | |
| JOURNALD("journald"), | |
| GELF("gelf"), | |
| FLUENTD("fluentd"), | |
| AWSLOGS("awslogs"), | |
| DB("db"), // Synology specific driver | |
| SPLUNK("splunk"), | |
| GCPLOGS("gcplogs"), | |
| LOKI("loki"); |
this appears not possible using docker-java. This issue previously came up in #783 but was resolved by manually adding the log driver type in question as an element of the enum, which does not solve the issue in the more general case.
maxdekrieger and Elmervc
Metadata
Metadata
Assignees
Labels
No labels