diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-03-28 08:37:53 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-03-28 08:37:53 +0200 |
commit | 1356145026a8673b192bcb632f272a4aa819b5d5 (patch) | |
tree | a2cedf4fa8a0d644d02441af4a39c43baca310ba | |
parent | 6b617bd448bf0122f2183e60f0fb4537b13caece (diff) |
Add ogServer uptime to the dashboard
ogServer GET /stats returns ogServer uptime in seconds.
Transform seconds to days, hours and minutes and print them in the
dashboard.
-rw-r--r-- | ogcp/templates/dashboard.html | 8 | ||||
-rw-r--r-- | ogcp/views.py | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html index a84ae4d..e1d9dc4 100644 --- a/ogcp/templates/dashboard.html +++ b/ogcp/templates/dashboard.html @@ -23,6 +23,14 @@ </ul> <ul class="list-group list-group-horizontal"> <li class="list-group-item w-50"> + {{ _('ogServer uptime') }} + </li> + <li class="list-group-item w-50"> + <p class="card-text">{{ time_dict['start'] }}</p> + </li> + </ul> + <ul class="list-group list-group-horizontal"> + <li class="list-group-item w-50"> {{ _('Connected clients (ogClient)') }} </li> <li class="list-group-item w-50"> diff --git a/ogcp/views.py b/ogcp/views.py index 01b7a0f..d8d76c5 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -242,7 +242,8 @@ def index(): timestamp = datetime.datetime.fromtimestamp(stats.get('time').get('now')) now = timestamp.strftime('%Y-%m-%d %H:%M:%S') boot = display_time(stats.get('time').get('boot')) - time_dict = {'now': now, 'boot': boot} + start = display_time(stats.get('time').get('start')) + time_dict = {'now': now, 'boot': boot, 'start': start} return render_template('dashboard.html', clients=clients, images=images, disk=disk, colsize="6", oglive_list=oglive_list, stats=stats, |