aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-04 12:05:05 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-04 12:05:05 +0300
commita0c23306be55216fc6fa4dc761dbf3151672a855 (patch)
treed769f364244d2979ac5341e958b5354ae512cdf8 /index.html
parentget rid of the /timers endpoit, use /status (diff)
downloadlinux-status-a0c23306be55216fc6fa4dc761dbf3151672a855.tar.gz
linux-status-a0c23306be55216fc6fa4dc761dbf3151672a855.zip
add journalctl output
Diffstat (limited to '')
-rw-r--r--index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/index.html b/index.html
index 3cbf6cc..d1adc14 100644
--- a/index.html
+++ b/index.html
@@ -50,6 +50,11 @@ h1, .h1 {
<pre class="pre-scrollable" id="timers_system"></pre>
</div>
<hr>
+ <p><button type="button" class="btn btn-outline-primary btn-sm button-expand" data-toggle="collapse" data-target="#collapse_journal_system">+</button><a href="#collapse_journal_system" data-toggle="collapse"><code>journalctl --system -b --lines=20</code></a></p>
+ <div class="collapse" id="collapse_journal_system">
+ <pre class="pre-scrollable" id="journal_system"></pre>
+ </div>
+ <hr>
</div>
</div>
<div id="users">
@@ -98,6 +103,9 @@ function set_system(data) {
if ('timers' in data) {
$('#timers_system').text(data['timers']);
}
+ if ('journal' in data) {
+ $('#journal_system').text(data['journal']);
+ }
}
var users = [];
@@ -126,6 +134,11 @@ function add_user(name) {
<pre class="pre-scrollable" id="timers_user_${name}"></pre>
</div>
<hr>
+ <p><button type="button" class="btn btn-outline-primary btn-sm button-expand" data-toggle="collapse" data-target="#collapse_journal_user_${name}">+</button><a href="#collapse_journal_user_${name}" data-toggle="collapse"><code>journalctl --user -b --lines=20</code></a></p>
+ <div class="collapse" id="collapse_journal_user_${name}">
+ <pre class="pre-scrollable" id="journal_user_${name}"></pre>
+ </div>
+ <hr>
</div>
</div>
`;
@@ -144,6 +157,9 @@ function set_user(name, data) {
if ('timers' in data) {
$('#timers_user_' + name).text(data['timers']);
}
+ if ('journal' in data) {
+ $('#journal_user_' + name).text(data['journal']);
+ }
}
function set_users(data) {