{% extends "base.html" %} {% block title %}머신 상세 정보 - 팜큐 약국 관리 시스템{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if is_online %} {% else %} {% endif %}

{{ machine.given_name or machine.hostname }}

{{ machine.hostname }}

{% if is_online %} 온라인 {% else %} 오프라인 {% endif %} 마지막 접속: {{ last_seen_humanized }}
{% if is_online %} {% endif %}
기본 정보
머신 ID {{ machine.id }}
호스트명 {{ machine.hostname }}
표시 이름 {{ machine.given_name or '미설정' }}
사용자 {% if machine.user %} {{ machine.user.name }} {% else %} 미지정 {% endif %}
등록 방식 {{ machine.register_method or '알 수 없음' }}
등록일 {% if machine.created_at %} {% if machine.created_at.__class__.__name__ == 'datetime' %} {{ machine.created_at.strftime('%Y년 %m월 %d일 %H:%M') }} {% else %} {{ machine.created_at }} {% endif %} {% else %} 알 수 없음 {% endif %}
네트워크 정보
{% if machine.ipv6 %} {% endif %}
IPv4 주소 {{ machine.ipv4 }}
IPv6 주소 {{ machine.ipv6 }}
엔드포인트 {% if machine.get_endpoints() %}
{% for endpoint in machine.get_endpoints()[:3] %}
{{ endpoint }}
{% endfor %} {% if machine.get_endpoints()|length > 3 %}
... 및 {{ machine.get_endpoints()|length - 3 }}개 더
{% endif %}
{% else %} 없음 {% endif %}
마지막 접속 {% if machine.last_seen %} {% if machine.last_seen.__class__.__name__ == 'datetime' %} {{ machine.last_seen.strftime('%Y-%m-%d %H:%M:%S') }} {% else %} {{ machine.last_seen }} {% endif %}
{{ last_seen_humanized }} {% else %} 알 수 없음 {% endif %}
{% if specs %}
하드웨어 사양
CPU

{{ specs.cpu_model }}

{{ specs.cpu_cores }}코어
메모리

{{ specs.ram_gb }}GB

RAM
저장소

{{ specs.storage_gb }}GB

디스크
네트워크

{{ specs.network_speed }}Mbps

{{ specs.os_info or '알 수 없음' }}
{% endif %} {% if latest_monitoring %}
현재 상태
{% if latest_monitoring and latest_monitoring.collected_at %} 최종 업데이트: {% if latest_monitoring.collected_at.__class__.__name__ == 'datetime' %} {{ latest_monitoring.collected_at.strftime('%Y-%m-%d %H:%M:%S') }} {% else %} {{ latest_monitoring.collected_at }} {% endif %} {% endif %}
CPU 사용률
{{ "%.1f"|format(latest_monitoring.cpu_usage|float) }}%
메모리 사용률
{{ "%.1f"|format(latest_monitoring.memory_usage|float) }}%
디스크 사용률
{{ "%.1f"|format(latest_monitoring.disk_usage|float) }}%
CPU 온도
{{ latest_monitoring.cpu_temperature }}°C
{% endif %} {% if pharmacy %}
소속 약국
{{ pharmacy.pharmacy_name }}

{{ pharmacy.address or '주소 미등록' }}

담당자: {{ pharmacy.manager_name or '미등록' }}
연락처: {{ pharmacy.phone or '미등록' }}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}