mirror of
				https://github.com/jumpserver/jumpserver.git
				synced 2025-11-03 23:47:27 +00:00 
			
		
		
		
	perf: 修改core celery 组件状态 (#12684)
Co-authored-by: feng <1304903146@qq.com>
This commit is contained in:
		@@ -19,6 +19,7 @@ logger = get_logger(__file__)
 | 
			
		||||
 | 
			
		||||
class TerminalStatusMixin:
 | 
			
		||||
    id: str
 | 
			
		||||
    type: str
 | 
			
		||||
    ALIVE_KEY = 'TERMINAL_ALIVE_{}'
 | 
			
		||||
    status_set: models.Manager
 | 
			
		||||
 | 
			
		||||
@@ -29,7 +30,7 @@ class TerminalStatusMixin:
 | 
			
		||||
    @lazyproperty
 | 
			
		||||
    def load(self):
 | 
			
		||||
        from ...utils import ComputeLoadUtil
 | 
			
		||||
        return ComputeLoadUtil.compute_load(self.last_stat)
 | 
			
		||||
        return ComputeLoadUtil.compute_load(self.last_stat, self.type)
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def is_alive(self):
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
from itertools import groupby
 | 
			
		||||
 | 
			
		||||
from common.utils import get_logger
 | 
			
		||||
from terminal.const import ComponentLoad
 | 
			
		||||
from terminal.const import ComponentLoad, TerminalType
 | 
			
		||||
 | 
			
		||||
logger = get_logger(__name__)
 | 
			
		||||
 | 
			
		||||
@@ -38,8 +38,12 @@ class ComputeLoadUtil:
 | 
			
		||||
        return system_status
 | 
			
		||||
 | 
			
		||||
    @classmethod
 | 
			
		||||
    def compute_load(cls, stat):
 | 
			
		||||
    def compute_load(cls, stat, terminal_type=None):
 | 
			
		||||
        if not stat:
 | 
			
		||||
            # TODO The core component and celery component will return true for the time being.
 | 
			
		||||
            if terminal_type in [TerminalType.core, TerminalType.celery]:
 | 
			
		||||
                return ComponentLoad.normal
 | 
			
		||||
            else:
 | 
			
		||||
                return ComponentLoad.offline
 | 
			
		||||
        system_status_values = cls._compute_system_stat_status(stat).values()
 | 
			
		||||
        if ComponentLoad.critical in system_status_values:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user