當前位置: 首頁>>代碼示例>>Golang>>正文


Golang container.LogConfig類代碼示例

本文整理匯總了Golang中github.com/docker/engine-api/types/container.LogConfig的典型用法代碼示例。如果您正苦於以下問題:Golang LogConfig類的具體用法?Golang LogConfig怎麽用?Golang LogConfig使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了LogConfig類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: mergeAndVerifyLogConfig

// mergeLogConfig merges the daemon log config to the container's log config if the container's log driver is not specified.
func (daemon *Daemon) mergeAndVerifyLogConfig(cfg *containertypes.LogConfig) error {
	if cfg.Type == "" {
		cfg.Type = daemon.defaultLogConfig.Type
	}

	if cfg.Config == nil {
		cfg.Config = make(map[string]string)
	}

	if cfg.Type == daemon.defaultLogConfig.Type {
		for k, v := range daemon.defaultLogConfig.Config {
			if _, ok := cfg.Config[k]; !ok {
				cfg.Config[k] = v
			}
		}
	}

	return logger.ValidateLogOpts(cfg.Type, cfg.Config)
}
開發者ID:Raphaeljunior,項目名稱:docker,代碼行數:20,代碼來源:logs.go

示例2: getLogConfig

// getLogConfig returns the log configuration for the container.
func (daemon *Daemon) getLogConfig(cfg containertypes.LogConfig) containertypes.LogConfig {
	if cfg.Type != "" || len(cfg.Config) > 0 { // container has log driver configured
		if cfg.Type == "" {
			cfg.Type = jsonfilelog.Name
		}
		return cfg
	}

	// Use daemon's default log config for containers
	return daemon.defaultLogConfig
}
開發者ID:ungureanuvladvictor,項目名稱:docker,代碼行數:12,代碼來源:logs.go


注:本文中的github.com/docker/engine-api/types/container.LogConfig類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。