-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
192 lines (171 loc) · 7.5 KB
/
index.html
File metadata and controls
192 lines (171 loc) · 7.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monitux</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Fira+Code&display=swap" rel="stylesheet">
<style>
:root {
--bg-page: #27364E; /* Bleu ardoise */
--card-bg: #000000; /* Fond Matrix */
--header-bg: #1e293b; /* Entête sombre */
--text-title: #38bdf8; /* Bleu Cyan */
--matrix-green: #00ff41; /* Vert Matrix */
--border: #cbd5e1;
}
body {
background-color: var(--bg-page);
color: #334155;
font-family: 'Inter', sans-serif;
margin: 0;
padding: 15px;
}
p { color: white; }
a { color: white; text-decoration: underline dotted; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.full-width { grid-column: 1 / -1; }
.card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 8px;
display: flex;
flex-direction: column;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
/* Hauteurs selon vos derniers réglages */
.h-normal { height: 350px; }
.h-reduced { height: 210px; }
.extra-tall { height: 600px; }
.h-pid { height: 200px; }
.card-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 15px;
background: var(--header-bg);
border-bottom: 1px solid #000;
color: #fff;
}
.title-area {
font-size: 0.85rem;
font-weight: 600;
color: var(--text-title);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.header-actions {
display: flex;
gap: 8px; /* Espace entre les deux boutons */
}
.btn-raw {
text-decoration: none !important;
color: var(--matrix-green) !important;
font-size: 0.7rem;
padding: 3px 8px;
border: 1px solid var(--matrix-green);
border-radius: 4px;
background: rgba(0, 255, 65, 0.1);
font-family: 'Fira Code', monospace;
transition: 0.2s;
font-weight: normal;
}
.btn-raw:hover { background: var(--matrix-green); color: #000 !important; }
.card-body { flex-grow: 1; background: #000; overflow: hidden; }
iframe { width: 100%; height: 100%; border: none; display: block; }
.danger-zone { border: 2px solid #ef4444; }
@media (max-width: 1100px) { .grid { grid-template-columns: 1fr; } }
</style>
</head>
<body>
<div class="grid">
<div class="card h-normal">
<div class="card-header">
<div class="title-area">📈 Historique CPU</div>
<div class="header-actions">
<a href="monitoring-CPU-PROD2.html" target="_blank" class="btn-raw">VIEW FULL</a>
<a href="monitoring-cpu-log.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="monitoring-cpu-log-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="tac.html"></iframe></div>
</div>
<div class="card h-normal">
<div class="card-header">
<div class="title-area">💾 Espace Disque</div>
<div class="header-actions">
<a href="df-log.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="df-log-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="df-log.html"></iframe></div>
</div>
<div class="card h-normal">
<div class="card-header">
<div class="title-area">✅ Services Actifs</div>
<div class="header-actions">
<a href="srvc-ena.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="srvc-ena-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="srvc-ena.html"></iframe></div>
</div>
<div class="card h-reduced">
<div class="card-header">
<div class="title-area">🛡️ Connexions Réseau</div>
<div class="header-actions">
<a href="connex.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="connex-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="connex.html"></iframe></div>
</div>
<div class="card h-reduced">
<div class="card-header">
<div class="title-area">🌐 Apache Logs</div>
<div class="header-actions">
<a href="apache-request.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="apache-request-log.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="apache-request.html"></iframe></div>
</div>
<div class="card h-reduced">
<div class="card-header">
<div class="title-area">📋 Tous les Services</div>
<div class="header-actions">
<a href="srvc-all.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="srvc-all-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="srvc-all.html"></iframe></div>
</div>
<div class="card full-width extra-tall">
<div class="card-header">
<div class="title-area">⚡ PROCESSUS TEMPS RÉEL (TOP)</div>
<div class="header-actions">
<a href="top.txt" target="_blank" class="btn-raw">VIEW RAW</a>
<a href="top-backup.txt" target="_blank" class="btn-raw">LOG</a>
</div>
</div>
<div class="card-body"><iframe src="top.html"></iframe></div>
</div>
</div>
<p><br></p>
<div class="card full-width danger-zone h-pid">
<div class="card-header" style="background: #450a0a; color: #fca5a5;">
<div class="title-area" style="color: #fca5a5;">🚨 PID MONITORING EMERGENCY ZONE</div>
<a href="id-processus.txt" target="_blank" class="btn-raw" style="color: #fca5a5; border-color: #fca5a5;">VIEW RAW</a>
</div>
<div class="card-body"><iframe src="ps.html"></iframe></div>
</div>
<p><br></p>
<center>
<p>[ Monitux est proposé par <a href="https://simple-crm.ai" target="_blank">SIMPLE CRM</a>
et codé par <a href="https://www.ihaveto.be" target="_blank">Brice Cornet</a> |
<a href="https://github.com/simple-group/Monitux" target="_blank">GITHUB</a> ]</p>
</center>
<p><br></p>
</body>
</html>