mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-29 18:23:51 +01:00 
			
		
		
		
	
							parent
							
								
									e1a941e5c7
								
							
						
					
					
						commit
						2fc33996b6
					
				| @ -82,10 +82,11 @@ void Checkable::UpdateNextCheck(const MessageOrigin::Ptr& origin) | |||||||
| 	adj = std::min(0.5 + fmod(GetSchedulingOffset(), interval * 5) / 100.0, adj); | 	adj = std::min(0.5 + fmod(GetSchedulingOffset(), interval * 5) / 100.0, adj); | ||||||
| 
 | 
 | ||||||
| 	double nextCheck = now - adj + interval; | 	double nextCheck = now - adj + interval; | ||||||
|  | 	double lastCheck = GetLastCheck(); | ||||||
| 
 | 
 | ||||||
| 	Log(LogDebug, "Checkable") | 	Log(LogDebug, "Checkable") | ||||||
| 		<< "Update checkable '" << GetName() << "' with check interval '" << GetCheckInterval() | 		<< "Update checkable '" << GetName() << "' with check interval '" << GetCheckInterval() | ||||||
| 		<< "' from last check time at " << Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", GetLastCheck()) | 		<< "' from last check time at " << Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", (lastCheck < 0 ? 0 : lastCheck)) | ||||||
| 		<< " (" << GetLastCheck() << ") to next check time at " << Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", nextCheck) << "(" << nextCheck << ")."; | 		<< " (" << GetLastCheck() << ") to next check time at " << Utility::FormatDateTime("%Y-%m-%d %H:%M:%S %z", nextCheck) << "(" << nextCheck << ")."; | ||||||
| 
 | 
 | ||||||
| 	SetNextCheck(nextCheck, false, origin); | 	SetNextCheck(nextCheck, false, origin); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user