/**
  * @return array
  */
 protected function gatherDashboardStatistics()
 {
     $_stats = ['user' => User::count()];
     return $_stats;
     //  The new way
     //return $this->telemetry->make('dashboard')->getTelemetry();
 }