mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			560 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			560 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package serverconfigs
 | 
						|
 | 
						|
// AccessLogESStorageConfig ElasticSearch存储策略
 | 
						|
type AccessLogESStorageConfig struct {
 | 
						|
	Endpoint     string `yaml:"endpoint" json:"endpoint"`
 | 
						|
	Index        string `yaml:"index" json:"index"`
 | 
						|
	MappingType  string `yaml:"mappingType" json:"mappingType"`
 | 
						|
	Username     string `yaml:"username" json:"username"`
 | 
						|
	Password     string `yaml:"password" json:"password"`
 | 
						|
	IsDataStream bool   `yaml:"isDataStream" json:"isDataStream"` // 是否为Data Stream模式
 | 
						|
}
 |