Files
TimeTrack/templates/system_admin_health.html
Jens Luedicke 9a79778ad6 Squashed commit of the following:
commit 1eeea9f83ad9230a5c1f7a75662770eaab0df837
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 21:15:41 2025 +0200

    Disable resuming of old time entries.

commit 3e3ec2f01cb7943622b819a19179388078ae1315
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 20:59:19 2025 +0200

    Refactor db migrations.

commit 15a51a569da36c6b7c9e01ab17b6fdbdee6ad994
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 19:58:04 2025 +0200

    Apply new style for Time Tracking view.

commit 77e5278b303e060d2b03853b06277f8aa567ae68
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:06:04 2025 +0200

    Allow direct registrations as a Company.

commit 188a8772757cbef374243d3a5f29e4440ddecabe
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:04:45 2025 +0200

    Add email invitation feature.

commit d9ebaa02aa01b518960a20dccdd5a327d82f30c6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 17:12:32 2025 +0200

    Apply common style for Company, User, Team management pages.

commit 81149caf4d8fc6317e2ab1b4f022b32fc5aa6d22
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 16:44:32 2025 +0200

    Move export functions to own module.

commit 1a26e19338e73f8849c671471dd15cc3c1b1fe82
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 15:51:15 2025 +0200

    Split up models.py.

commit 61f1ccd10f721b0ff4dc1eccf30c7a1ee13f204d
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 12:05:28 2025 +0200

    Move utility function into own modules.

commit 84b341ed35e2c5387819a8b9f9d41eca900ae79f
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:44:24 2025 +0200

    Refactor auth functions use.

commit 923e311e3da5b26d85845c2832b73b7b17c48adb
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:35:52 2025 +0200

    Refactor route nameing and fix bugs along the way.

commit f0a5c4419c340e62a2615c60b2a9de28204d2995
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 10:34:33 2025 +0200

    Fix URL endpoints in announcement template.

commit b74d74542a1c8dc350749e4788a9464d067a88b5
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:25:53 2025 +0200

    Move announcements to own module.

commit 9563a28021ac46c82c04fe4649b394dbf96f92c7
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:16:30 2025 +0200

    Combine Company view and edit templates.

commit 6687c373e681d54e4deab6b2582fed5cea9aadf6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 08:17:42 2025 +0200

    Move Users, Company and System Administration to own modules.

commit 8b7894a2e3eb84bb059f546648b6b9536fea724e
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:40:57 2025 +0200

    Move Teams and Projects to own modules.

commit d11bf059d99839ecf1f5d7020b8c8c8a2454c00b
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:09:33 2025 +0200

    Move Tasks and Sprints to own modules.
2025-07-07 21:16:36 +02:00

559 lines
15 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<div class="container">
<div class="header-section">
<h1>🏥 System Health Check</h1>
<p class="subtitle">System diagnostics and event monitoring</p>
<a href="{{ url_for('system_admin.system_admin_dashboard') }}" class="btn btn-secondary">← Back to Dashboard</a>
</div>
<!-- System Health Status -->
<div class="health-status-section">
<h2>🔍 System Status</h2>
<div class="health-cards">
<div class="health-card {% if health_summary.health_status == 'healthy' %}healthy{% elif health_summary.health_status == 'issues' %}warning{% else %}critical{% endif %}">
<div class="health-icon">
{% if health_summary.health_status == 'healthy' %}
{% elif health_summary.health_status == 'issues' %}
⚠️
{% else %}
{% endif %}
</div>
<div class="health-info">
<h3>Overall Health</h3>
<p class="health-status">{{ health_summary.health_status|title }}</p>
<small>
{% if health_summary.health_status == 'healthy' %}
All systems running normally
{% elif health_summary.health_status == 'issues' %}
Minor issues detected
{% else %}
Critical issues require attention
{% endif %}
</small>
</div>
</div>
<div class="health-card {% if db_healthy %}healthy{% else %}critical{% endif %}">
<div class="health-icon">
{% if db_healthy %}✅{% else %}❌{% endif %}
</div>
<div class="health-info">
<h3>Database</h3>
<p class="health-status">{% if db_healthy %}Connected{% else %}Error{% endif %}</p>
<small>
{% if db_healthy %}
PostgreSQL connection active
{% else %}
{{ db_error }}
{% endif %}
</small>
</div>
</div>
<div class="health-card info">
<div class="health-icon">⏱️</div>
<div class="health-info">
<h3>Uptime</h3>
<p class="health-status">{{ uptime_duration.days }}d {{ uptime_duration.seconds//3600 }}h {{ (uptime_duration.seconds//60)%60 }}m</p>
<small>Since first recorded event</small>
</div>
</div>
</div>
</div>
<!-- Quick Stats -->
<div class="stats-section">
<h2>📊 Event Statistics</h2>
<div class="stats-grid">
<div class="stat-card {% if health_summary.errors_24h > 0 %}error{% endif %}">
<h3>{{ health_summary.errors_24h }}</h3>
<p>Errors (24h)</p>
</div>
<div class="stat-card {% if health_summary.warnings_24h > 0 %}warning{% endif %}">
<h3>{{ health_summary.warnings_24h }}</h3>
<p>Warnings (24h)</p>
</div>
<div class="stat-card">
<h3>{{ today_events }}</h3>
<p>Events Today</p>
</div>
<div class="stat-card">
<h3>{{ health_summary.total_events_week }}</h3>
<p>Events This Week</p>
</div>
</div>
</div>
<!-- Recent Errors -->
{% if errors %}
<div class="events-section error-section">
<h2>🚨 Recent Errors</h2>
<div class="events-list">
{% for error in errors %}
<div class="event-item error">
<div class="event-header">
<span class="event-type">{{ error.event_type }}</span>
<span class="event-time">{{ error.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</span>
</div>
<div class="event-description">{{ error.description }}</div>
{% if error.user %}
<div class="event-meta">User: {{ error.user.username }}</div>
{% endif %}
{% if error.company %}
<div class="event-meta">Company: {{ error.company.name }}</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Recent Warnings -->
{% if warnings %}
<div class="events-section warning-section">
<h2>⚠️ Recent Warnings</h2>
<div class="events-list">
{% for warning in warnings %}
<div class="event-item warning">
<div class="event-header">
<span class="event-type">{{ warning.event_type }}</span>
<span class="event-time">{{ warning.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</span>
</div>
<div class="event-description">{{ warning.description }}</div>
{% if warning.user %}
<div class="event-meta">User: {{ warning.user.username }}</div>
{% endif %}
{% if warning.company %}
<div class="event-meta">Company: {{ warning.company.name }}</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- System Event Log -->
<div class="events-section">
<h2>📋 System Event Log (Last 7 Days)</h2>
<div class="events-controls">
<button class="filter-btn active" data-filter="all">All Events</button>
<button class="filter-btn" data-filter="auth">Authentication</button>
<button class="filter-btn" data-filter="user_management">User Management</button>
<button class="filter-btn" data-filter="system">System</button>
<button class="filter-btn" data-filter="error">Errors</button>
</div>
<div class="events-list" id="eventsList">
{% for event in recent_events %}
<div class="event-item {{ event.severity }} {{ event.event_category }}" data-category="{{ event.event_category }}" data-severity="{{ event.severity }}">
<div class="event-header">
<span class="event-type">{{ event.event_type }}</span>
<span class="event-category-badge">{{ event.event_category }}</span>
<span class="event-time">{{ event.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</span>
</div>
<div class="event-description">{{ event.description }}</div>
{% if event.user %}
<div class="event-meta">User: {{ event.user.username }}</div>
{% endif %}
{% if event.company %}
<div class="event-meta">Company: {{ event.company.name }}</div>
{% endif %}
{% if event.ip_address %}
<div class="event-meta">IP: {{ event.ip_address }}</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<!-- Last Error Details -->
{% if health_summary.last_error %}
<div class="events-section error-section">
<h2>🔍 Last Critical Error</h2>
<div class="last-error-details">
<div class="error-card">
<div class="error-header">
<h3>{{ health_summary.last_error.event_type }}</h3>
<span class="error-time">{{ health_summary.last_error.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</span>
</div>
<div class="error-description">{{ health_summary.last_error.description }}</div>
{% if health_summary.last_error.event_metadata %}
<div class="error-metadata">
<strong>Additional Details:</strong>
<pre>{{ health_summary.last_error.event_metadata }}</pre>
</div>
{% endif %}
</div>
</div>
</div>
{% endif %}
</div>
<style>
.header-section {
margin-bottom: 2rem;
}
.subtitle {
color: #6c757d;
margin-bottom: 1rem;
}
.health-status-section {
margin-bottom: 2rem;
}
.health-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
margin-bottom: 2rem;
}
.health-card {
background: white;
border-radius: 8px;
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border-left: 4px solid #dee2e6;
}
.health-card.healthy {
border-left-color: #28a745;
background: #f8fff9;
}
.health-card.warning {
border-left-color: #ffc107;
background: #fffdf7;
}
.health-card.critical {
border-left-color: #dc3545;
background: #fff8f8;
}
.health-card.info {
border-left-color: #17a2b8;
background: #f8fcfd;
}
.health-icon {
font-size: 2.5rem;
line-height: 1;
}
.health-info h3 {
margin: 0 0 0.25rem 0;
color: #495057;
}
.health-status {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.25rem 0;
}
.health-card.healthy .health-status {
color: #28a745;
}
.health-card.warning .health-status {
color: #ffc107;
}
.health-card.critical .health-status {
color: #dc3545;
}
.health-card.info .health-status {
color: #17a2b8;
}
.health-info small {
color: #6c757d;
font-size: 0.875rem;
}
.stats-section {
background: #f8f9fa;
border-radius: 8px;
padding: 2rem;
margin-bottom: 2rem;
}
.stats-section h2 {
margin-top: 0;
margin-bottom: 1.5rem;
color: #495057;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.stat-card {
background: white;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 1.5rem;
text-align: center;
border-left: 4px solid #dee2e6;
}
.stat-card.error {
border-left-color: #dc3545;
background: #fff8f8;
}
.stat-card.warning {
border-left-color: #ffc107;
background: #fffdf7;
}
.stat-card h3 {
font-size: 2rem;
margin: 0 0 0.5rem 0;
color: #007bff;
}
.stat-card.error h3 {
color: #dc3545;
}
.stat-card.warning h3 {
color: #ffc107;
}
.stat-card p {
margin: 0;
color: #6c757d;
font-weight: 500;
}
.events-section {
background: white;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 2rem;
margin-bottom: 2rem;
}
.events-section h2 {
margin-top: 0;
margin-bottom: 1.5rem;
color: #495057;
}
.events-controls {
display: flex;
gap: 0.5rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.filter-btn {
padding: 0.5rem 1rem;
border: 1px solid #dee2e6;
background: white;
color: #495057;
border-radius: 4px;
cursor: pointer;
transition: all 0.2s;
font-weight: 500;
}
.filter-btn:hover {
background: #f8f9fa;
border-color: #adb5bd;
color: #212529;
}
.filter-btn.active {
background: #007bff;
color: white;
border-color: #007bff;
}
.events-list {
max-height: 600px;
overflow-y: auto;
}
.event-item {
border: 1px solid #dee2e6;
border-radius: 6px;
padding: 1rem;
margin-bottom: 0.5rem;
background: white;
}
.event-item.error {
border-left: 4px solid #dc3545;
background: #fff8f8;
}
.event-item.warning {
border-left: 4px solid #ffc107;
background: #fffdf7;
}
.event-item.critical {
border-left: 4px solid #dc3545;
background: #fff5f5;
}
.event-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
flex-wrap: wrap;
gap: 0.5rem;
}
.event-type {
font-weight: 600;
color: #495057;
}
.event-category-badge {
background: #e9ecef;
color: #495057;
padding: 0.25rem 0.5rem;
border-radius: 4px;
font-size: 0.75rem;
text-transform: uppercase;
}
.event-time {
color: #6c757d;
font-size: 0.875rem;
}
.event-description {
margin-bottom: 0.5rem;
color: #495057;
}
.event-meta {
font-size: 0.875rem;
color: #6c757d;
margin-bottom: 0.25rem;
}
.error-section {
border-left: 4px solid #dc3545;
}
.warning-section {
border-left: 4px solid #ffc107;
}
.last-error-details {
background: #fff8f8;
border: 1px solid #f5c6cb;
border-radius: 6px;
padding: 1rem;
}
.error-card {
background: white;
border-radius: 6px;
padding: 1rem;
}
.error-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
.error-header h3 {
margin: 0;
color: #dc3545;
}
.error-time {
color: #6c757d;
font-size: 0.875rem;
}
.error-description {
margin-bottom: 0.5rem;
color: #495057;
}
.error-metadata {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 0.5rem;
}
.error-metadata pre {
margin: 0.5rem 0 0 0;
font-size: 0.875rem;
white-space: pre-wrap;
}
/* Button styles now centralized in main style.css */
@media (max-width: 768px) {
.health-cards {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.event-header {
flex-direction: column;
align-items: flex-start;
}
.events-controls {
flex-direction: column;
}
}
</style>
<script>
// Event filtering functionality
document.addEventListener('DOMContentLoaded', function() {
const filterButtons = document.querySelectorAll('.filter-btn');
const eventItems = document.querySelectorAll('.event-item');
filterButtons.forEach(button => {
button.addEventListener('click', function() {
const filter = this.dataset.filter;
// Update active button
filterButtons.forEach(btn => btn.classList.remove('active'));
this.classList.add('active');
// Filter events
eventItems.forEach(item => {
if (filter === 'all') {
item.style.display = 'block';
} else if (filter === 'error') {
item.style.display = item.classList.contains('error') || item.classList.contains('critical') ? 'block' : 'none';
} else {
item.style.display = item.dataset.category === filter ? 'block' : 'none';
}
});
});
});
});
</script>
{% endblock %}