add gelf and fluentd logging drivers to types.py

This commit is contained in:
Brian Edwards 2015-08-18 14:26:32 -05:00
parent 3cd66b66ba
commit c135266233
1 changed files with 3 additions and 1 deletions

View File

@ -6,9 +6,11 @@ class LogConfigTypesEnum(object):
'json-file',
'syslog',
'journald',
'gelf',
'fluentd',
'none'
)
JSON, SYSLOG, JOURNALD, NONE = _values
JSON, SYSLOG, JOURNALD, GELF, FLUENTD, NONE = _values
class DictType(dict):