mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import "encoding/json"
 | 
						|
 | 
						|
// DecodeKeys 解析Key
 | 
						|
func (this *MetricStat) DecodeKeys() []string {
 | 
						|
	var result []string
 | 
						|
	if len(this.Keys) > 0 {
 | 
						|
		_ = json.Unmarshal([]byte(this.Keys), &result)
 | 
						|
	}
 | 
						|
	return result
 | 
						|
}
 |