You are here

public function TotalFailedStatistic::getDescription in Purge 8.3

Gets the description of the counter.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translated description.

Overrides ExplainedCounterInterface::getDescription

File

src/Plugin/Purge/Queue/TotalFailedStatistic.php, line 42

Class

TotalFailedStatistic
Total number of failed queue items.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function getDescription() {
  return $this
    ->t('Whenever a purger returns a queue item as failed, we track these failures in this statistic. However, failing items fail for various reasons and are usually expected to still succeed in the future. The total number of failures happening over time, should be seen as indicator whether a few incidents took place versus sky-rocketing failure rates because of some structural problem.');
}