mirror of
				https://github.com/ClusterCockpit/cc-metric-collector.git
				synced 2025-11-04 02:35:07 +01:00 
			
		
		
		
	Collectors in parallel (#74)
* Provide info to CollectorManager whether the collector can be executed in parallel with others * Split serial and parallel collectors. Read in parallel first
This commit is contained in:
		@@ -35,6 +35,10 @@ func (m *SampleCollector) Init(config json.RawMessage) error {
 | 
			
		||||
	m.name = "InternalCollector"
 | 
			
		||||
	// This is for later use, also call it early
 | 
			
		||||
	m.setup()
 | 
			
		||||
	// Tell whether the collector should be run in parallel with others (reading files, ...)
 | 
			
		||||
	// or it should be run serially, mostly for collectors acutally doing measurements
 | 
			
		||||
	// because they should not measure the execution of the other collectors
 | 
			
		||||
	m.parallel = true
 | 
			
		||||
	// Define meta information sent with each metric
 | 
			
		||||
	// (Can also be dynamic or this is the basic set with extension through AddMeta())
 | 
			
		||||
	m.meta = map[string]string{"source": m.name, "group": "SAMPLE"}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user