{% extends "base.html" %} {% block title %}MDE · {{ machine.name }}{% endblock %} {% block breadcrumb %}

MDE-Dashboard / {{ machine.name }}

{% endblock %} {% block heading %}{{ machine.name }} · Maschinen-Detail{% endblock %} {% block content %}
Auslastung
{{ stats.run_pct }} %
in den letzten {{ hours }} h
Stückzähler-Delta
+{{ stats.parts_delta }}
{{ stats.samples }} Messungen
Stillstand / Alarm
{{ stats.idle_pct }} % / {{ stats.alarm_pct }} %
{% if stats.alarm_pct > 5 %}⚠ erhöht{% else %}OK{% endif %}

Konfiguration

Steuerung: {{ machine.controller_type or '—' }} {{ machine.controller_model or '' }}
Protokoll: {{ machine.protocol or 'none' }}
OPC-UA-Endpoint: {{ machine.opcua_endpoint or '—' }}

Verlauf — letzte {{ hours }} Stunden

{{ history|length }} Messungen

{% for r in history|reverse %} {% else %} {% endfor %}
ZeitStatusStückzähler SpindelProgramm OverrideFehler
{{ r.ts }} {{ r.status or '—' }} {{ r.part_count if r.part_count is not none else '—' }} {{ r.spindle_rpm if r.spindle_rpm else '—' }} {{ r.current_nc or '—' }} {{ (r.feed_override|string + '%') if r.feed_override else '—' }} {{ r.error or '' }}
Keine Messungen im Zeitraum.
1 h 24 h 7 Tage
{% endblock %}