public function ImageMissingStyleSensorPlugin::resultVerbose in Monitoring 8
Provide additional info about sensor call.
This method is only executed on request. It is guaranteed that runSensor() is executed before this method.
Parameters
\Drupal\monitoring\Result\SensorResultInterface $result: Sensor result.
Return value
array Sensor call verbose info as render array.
Overrides DatabaseAggregatorSensorPlugin::resultVerbose
File
- src/
Plugin/ monitoring/ SensorPlugin/ ImageMissingStyleSensorPlugin.php, line 69 - Contains \Drupal\monitoring\Plugin\monitoring\SensorPlugin\ImageMissingStyleSensorPlugin.
Class
- ImageMissingStyleSensorPlugin
- Monitors image derivate creation errors from dblog.
Namespace
Drupal\monitoring\Plugin\monitoring\SensorPluginCode
public function resultVerbose(SensorResultInterface $result) {
// The unaggregated result in a fieldset.
$output = parent::resultVerbose($result);
// The result aggregated per user.
$this
->verboseResultCounting($output);
return $output;
}