mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 11:14:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			438 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			438 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #include "base/dynamicobject.h"
 | |
| 
 | |
| namespace icinga
 | |
| {
 | |
| 
 | |
| class Endpoint : DynamicObject
 | |
| {
 | |
| 	[config] String host;
 | |
| 	[config] String port;
 | |
| 	[config] Array::Ptr config_files;
 | |
| 	[config] Array::Ptr config_files_recursive;
 | |
| 	[config] Array::Ptr accept_config;
 | |
| 
 | |
| 	[state] double seen;
 | |
| 	[state] double local_log_position;
 | |
| 	[state] double remote_log_position;
 | |
| 	[state] Dictionary::Ptr features;
 | |
| 
 | |
| 	bool syncing {
 | |
| 		default {{{ return false; }}}
 | |
| 	};
 | |
| };
 | |
| 
 | |
| }
 |