Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Last boot:
- 2014-01-28 20:36:29,960 - cloud-init[INFO]: cloud-init start-local running: Tue, 28 Jan 2014 20:36:29 +0000. up 8.74 seconds
- 2014-01-28 20:36:31,884 - cloud-init[INFO]: cloud-init start running: Tue, 28 Jan 2014 20:36:31 +0000. up 10.79 seconds
- [AWS/eu2:] root@abc99-eu2:/etc/cloud/cloud.cfg.d# cat *
- ## this yaml formated config file handles setting
- ## logger information. The values that are necessary to be set
- ## are seen at the bottom. The top '_log' are only used to remove
- ## redundency in a syslog and fallback-to-file case.
- ##
- ## The 'log_cfgs' entry defines a list of logger configs
- ## Each entry in the list is tried, and the first one that
- ## works is used. If a log_cfg list entry is an array, it will
- ## be joined with '\n'.
- _log:
- - &log_base |
- [loggers]
- keys=root,cloudinit
- [handlers]
- keys=consoleHandler,cloudLogHandler
- [formatters]
- keys=simpleFormatter,arg0Formatter
- [logger_root]
- level=DEBUG
- handlers=consoleHandler,cloudLogHandler
- [logger_cloudinit]
- level=DEBUG
- qualname=cloudinit
- handlers=
- propagate=1
- [handler_consoleHandler]
- class=StreamHandler
- level=WARNING
- formatter=arg0Formatter
- args=(sys.stderr,)
- [formatter_arg0Formatter]
- format=%(asctime)s - %(filename)s[%(levelname)s]: %(message)s
- [formatter_simpleFormatter]
- format=[CLOUDINIT] %(filename)s[%(levelname)s]: %(message)s
- - &log_file |
- [handler_cloudLogHandler]
- class=FileHandler
- level=DEBUG
- formatter=arg0Formatter
- args=('/var/log/cloud-init.log',)
- - &log_syslog |
- [handler_cloudLogHandler]
- class=handlers.SysLogHandler
- level=DEBUG
- formatter=simpleFormatter
- args=("/dev/log", handlers.SysLogHandler.LOG_USER)
- log_cfgs:
- - [ *log_base, *log_syslog ]
- - [ *log_base, *log_file ]
- datasource_list: [ GCE ]
- final_message: "The system is finally up, after $UPTIME seconds"
- # All files in this directory will be read by cloud-init
- # They are read in lexical order. Later files overwrite values in
- # earlier files.
Advertisement
Add Comment
Please, Sign In to add comment