Skip to content

Commit

Permalink
Support Logentries Log Driver
Browse files Browse the repository at this point in the history
  • Loading branch information
opsline-radek committed Jun 29, 2017
1 parent d540494 commit 94c34d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agent/ecs_client/model/api/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,8 @@
"journald",
"gelf",
"fluentd",
"awslogs"
"awslogs",
"logentries"
]
},
"Long":{"type":"long"},
Expand Down
3 changes: 3 additions & 0 deletions agent/ecs_client/model/ecs/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -7479,6 +7479,9 @@ const (

// LogDriverAwslogs is a LogDriver enum value
LogDriverAwslogs = "awslogs"

// LogDriverLogentries is a LogDriver enum value
LogDriverLogentries = "logentries"
)

const (
Expand Down
2 changes: 2 additions & 0 deletions agent/engine/dockerclient/logging_drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const (
FluentdDriver LoggingDriver = "fluentd"
AWSLogsDriver LoggingDriver = "awslogs"
SplunklogsDriver LoggingDriver = "splunk"
LogentriesDriver LoggingDriver = "logentries"
)

var LoggingDriverMinimumVersion = map[LoggingDriver]DockerVersion{
Expand All @@ -33,4 +34,5 @@ var LoggingDriverMinimumVersion = map[LoggingDriver]DockerVersion{
FluentdDriver: Version_1_20,
AWSLogsDriver: Version_1_21,
SplunklogsDriver: Version_1_22,
LogentriesDriver: Version_1_25,
}

0 comments on commit 94c34d8

Please sign in to comment.