{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2024 Teclib' and contributors. # @copyright 2003-2014 by the INDEPNET Development Team. # @licence https://www.gnu.org/licenses/gpl-3.0.html # # --------------------------------------------------------------------- # # LICENSE # # This file is part of GLPI. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # --------------------------------------------------------------------- #}

{{ __('Statistics') }}

{{ __('Run count') }}
  • {{ _n('%s start', '%s starts', stats.runs.starts)|format(stats.runs.starts) }}
  • {{ _n('%s stop', '%s stops', stats.runs.stops)|format(stats.runs.stops) }}
  • {{ _n('%s error', '%s errors', stats.runs.errors)|format(stats.runs.errors) }}
{% if stats.runs.stops > 0 %}
{{ __('Start date') }}
{{ stats.datemin|formatted_datetime }}
{{ __('Minimal time') }}
{{ _n('%s second', '%s seconds', stats.elapsedmin)|format(stats.elapsedmin|formatted_number) }}
{{ __('Maximal time') }}
{{ _n('%s second', '%s seconds', stats.elapsedmax)|format(stats.elapsedmax|formatted_number) }}
{{ __('Average time') }}
{{ _n('%s second', '%s seconds', stats.elapsedavg)|format(stats.elapsedavg|formatted_number) }}
{{ __('Total duration') }}
{{ _n('%s second', '%s seconds', stats.elapsedtot)|format(stats.elapsedtot|formatted_number) }}
{% if stats.voltot > 0 %}
{{ __('Minimal count') }}
{{ _n('%s item', '%s items', stats.volmin)|format(stats.volmin) }}
{{ __('Maximal count') }}
{{ _n('%s item', '%s items', stats.volmax)|format(stats.volmax) }}
{{ __('Average count') }}
{{ _n('%s item', '%s items', stats.volavg)|format(stats.volavg|formatted_number) }}
{{ __('Total count') }}
{{ _n('%s item', '%s items', stats.voltot)|format(stats.voltot) }}
{{ __('Average speed') }}
{{ __('%s items/sec')|format((stats.voltot / stats.elapsedtot)|formatted_number) }}
{% endif %} {% endif %}