3767 lines
170 KiB
PHP
3767 lines
170 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders\testdata;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class HealthCheckResultsSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('health_check_result_history_items')->insert(
|
|
$health_check_result_history_items = [
|
|
[
|
|
'id' => 177,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 178,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 179,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '1.48 1.46 0.83',
|
|
'meta' => '{"last_minute":1.48,"last_5_minutes":1.46,"last_15_minutes":0.83}',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 180,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 181,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 182,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 183,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'failed',
|
|
'notification_message' => 'The schedule did not run yet.',
|
|
'short_summary' => 'Failed',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 184,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:27:02',
|
|
'batch' => '77d78683-eba6-4e66-b5a1-12526f1eff4f',
|
|
'created_at' => '2022-02-12 22:27:02',
|
|
'updated_at' => '2022-02-12 22:27:02',
|
|
],
|
|
[
|
|
'id' => 185,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 186,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 187,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.78 1.27 0.8',
|
|
'meta' => '{"last_minute":0.78,"last_5_minutes":1.27,"last_15_minutes":0.8}',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 188,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 189,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 190,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 191,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'failed',
|
|
'notification_message' => 'The schedule did not run yet.',
|
|
'short_summary' => 'Failed',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 192,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:28:02',
|
|
'batch' => 'd1e30c0a-4b1b-4931-aa07-237ed65d57ab',
|
|
'created_at' => '2022-02-12 22:28:02',
|
|
'updated_at' => '2022-02-12 22:28:02',
|
|
],
|
|
[
|
|
'id' => 193,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 194,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 195,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.61 1.15 0.79',
|
|
'meta' => '{"last_minute":0.61,"last_5_minutes":1.15,"last_15_minutes":0.79}',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 196,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 197,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 198,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 199,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'failed',
|
|
'notification_message' => 'The schedule did not run yet.',
|
|
'short_summary' => 'Failed',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 200,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:29:02',
|
|
'batch' => '15dff57f-78aa-40d7-821f-7d0af870c77b',
|
|
'created_at' => '2022-02-12 22:29:02',
|
|
'updated_at' => '2022-02-12 22:29:02',
|
|
],
|
|
[
|
|
'id' => 201,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 202,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 203,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.87 1.1 0.79',
|
|
'meta' => '{"last_minute":0.87,"last_5_minutes":1.1,"last_15_minutes":0.79}',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 204,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 205,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 206,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 207,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'failed',
|
|
'notification_message' => 'The schedule did not run yet.',
|
|
'short_summary' => 'Failed',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 208,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:30:02',
|
|
'batch' => '0818db5c-a5f1-44cf-aaa7-2bf1c3d7d661',
|
|
'created_at' => '2022-02-12 22:30:02',
|
|
'updated_at' => '2022-02-12 22:30:02',
|
|
],
|
|
[
|
|
'id' => 209,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 210,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 211,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.67 0.99 0.77',
|
|
'meta' => '{"last_minute":0.67,"last_5_minutes":0.99,"last_15_minutes":0.77}',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 212,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 213,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 214,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 215,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'failed',
|
|
'notification_message' => 'The schedule did not run yet.',
|
|
'short_summary' => 'Failed',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 216,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:31:02',
|
|
'batch' => 'ca2f186d-00a5-47b3-b777-71d84dbca94d',
|
|
'created_at' => '2022-02-12 22:31:02',
|
|
'updated_at' => '2022-02-12 22:31:02',
|
|
],
|
|
[
|
|
'id' => 217,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 218,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 219,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.28 0.82 0.73',
|
|
'meta' => '{"last_minute":0.28,"last_5_minutes":0.82,"last_15_minutes":0.73}',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 220,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 221,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 222,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 223,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 224,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:32:02',
|
|
'batch' => '2a96e258-b16e-4d66-966d-3526b3b90979',
|
|
'created_at' => '2022-02-12 22:32:02',
|
|
'updated_at' => '2022-02-12 22:32:02',
|
|
],
|
|
[
|
|
'id' => 225,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:33:01',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 226,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:33:01',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 227,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.26 0.7 0.69',
|
|
'meta' => '{"last_minute":0.26,"last_5_minutes":0.7,"last_15_minutes":0.69}',
|
|
'ended_at' => '2022-02-12 22:33:01',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 228,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:33:01',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 229,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:33:02',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 230,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:33:02',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 231,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:33:02',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 232,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:33:02',
|
|
'batch' => 'aa75505f-1ff5-4a84-a170-69b0704f3e6b',
|
|
'created_at' => '2022-02-12 22:33:02',
|
|
'updated_at' => '2022-02-12 22:33:02',
|
|
],
|
|
[
|
|
'id' => 233,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 234,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 235,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.6 0.72 0.7',
|
|
'meta' => '{"last_minute":0.6,"last_5_minutes":0.72,"last_15_minutes":0.7}',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 236,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 237,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 238,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 239,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 240,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:34:02',
|
|
'batch' => 'dec4566a-8557-4a49-8721-d5ab9df675f0',
|
|
'created_at' => '2022-02-12 22:34:02',
|
|
'updated_at' => '2022-02-12 22:34:02',
|
|
],
|
|
[
|
|
'id' => 241,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 242,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 243,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.38 0.62 0.66',
|
|
'meta' => '{"last_minute":0.38,"last_5_minutes":0.62,"last_15_minutes":0.66}',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 244,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 245,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 246,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 247,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 248,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:35:02',
|
|
'batch' => '3422cfb5-31e5-4c37-b417-8ec0f64e8e28',
|
|
'created_at' => '2022-02-12 22:35:02',
|
|
'updated_at' => '2022-02-12 22:35:02',
|
|
],
|
|
[
|
|
'id' => 249,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 250,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 251,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.18 0.52 0.62',
|
|
'meta' => '{"last_minute":0.18,"last_5_minutes":0.52,"last_15_minutes":0.62}',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 252,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 253,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 254,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 255,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 256,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:36:02',
|
|
'batch' => '89607211-feb3-4cf9-a97d-9cb22d2990df',
|
|
'created_at' => '2022-02-12 22:36:02',
|
|
'updated_at' => '2022-02-12 22:36:02',
|
|
],
|
|
[
|
|
'id' => 257,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 258,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 259,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.34 0.49 0.61',
|
|
'meta' => '{"last_minute":0.34,"last_5_minutes":0.49,"last_15_minutes":0.61}',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 260,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 261,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 262,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 263,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 264,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:37:01',
|
|
'batch' => '1eed253d-8b49-4d9b-b20f-d3fdf2cdb59d',
|
|
'created_at' => '2022-02-12 22:37:01',
|
|
'updated_at' => '2022-02-12 22:37:01',
|
|
],
|
|
[
|
|
'id' => 265,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 266,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 267,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.47 0.49 0.6',
|
|
'meta' => '{"last_minute":0.47,"last_5_minutes":0.49,"last_15_minutes":0.6}',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 268,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 269,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 270,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 271,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 272,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:38:02',
|
|
'batch' => '3c98612b-9e98-44de-b1b6-9560e4046ec5',
|
|
'created_at' => '2022-02-12 22:38:02',
|
|
'updated_at' => '2022-02-12 22:38:02',
|
|
],
|
|
[
|
|
'id' => 273,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 274,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 275,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.21 0.41 0.56',
|
|
'meta' => '{"last_minute":0.21,"last_5_minutes":0.41,"last_15_minutes":0.56}',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 276,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 277,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 278,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 279,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 280,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:39:02',
|
|
'batch' => '7c596ae4-9007-4a58-bf82-a33fa7b8abe4',
|
|
'created_at' => '2022-02-12 22:39:02',
|
|
'updated_at' => '2022-02-12 22:39:02',
|
|
],
|
|
[
|
|
'id' => 281,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 282,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 283,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.08 0.34 0.53',
|
|
'meta' => '{"last_minute":0.08,"last_5_minutes":0.34,"last_15_minutes":0.53}',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 284,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 285,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 286,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 287,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 288,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:40:01',
|
|
'batch' => '11d15cdc-d54c-45dc-84c5-853dbf94cebe',
|
|
'created_at' => '2022-02-12 22:40:01',
|
|
'updated_at' => '2022-02-12 22:40:01',
|
|
],
|
|
[
|
|
'id' => 289,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 290,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 291,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.69 0.46 0.56',
|
|
'meta' => '{"last_minute":0.69,"last_5_minutes":0.46,"last_15_minutes":0.56}',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 292,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 293,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 294,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 295,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 296,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:41:02',
|
|
'batch' => 'a8167006-d091-4c23-8bb9-838ee5fdd94c',
|
|
'created_at' => '2022-02-12 22:41:02',
|
|
'updated_at' => '2022-02-12 22:41:02',
|
|
],
|
|
[
|
|
'id' => 297,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 298,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 299,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.33 0.39 0.52',
|
|
'meta' => '{"last_minute":0.33,"last_5_minutes":0.39,"last_15_minutes":0.52}',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 300,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 301,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 302,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 303,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 304,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:42:02',
|
|
'batch' => '36247a0e-db8a-481b-a5bc-d30f4d5712b6',
|
|
'created_at' => '2022-02-12 22:42:02',
|
|
'updated_at' => '2022-02-12 22:42:02',
|
|
],
|
|
[
|
|
'id' => 305,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 306,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 307,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.4 0.39 0.52',
|
|
'meta' => '{"last_minute":0.4,"last_5_minutes":0.39,"last_15_minutes":0.52}',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 308,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 309,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 310,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 311,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 312,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:43:02',
|
|
'batch' => '1b8414ec-93b0-4500-9f76-795aaac79509',
|
|
'created_at' => '2022-02-12 22:43:02',
|
|
'updated_at' => '2022-02-12 22:43:02',
|
|
],
|
|
[
|
|
'id' => 313,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 314,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 315,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.16 0.32 0.49',
|
|
'meta' => '{"last_minute":0.16,"last_5_minutes":0.32,"last_15_minutes":0.49}',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 316,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 317,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 318,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 319,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 320,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:44:01',
|
|
'batch' => '3917e4a1-bd73-4b87-b12b-7139296ce9e9',
|
|
'created_at' => '2022-02-12 22:44:01',
|
|
'updated_at' => '2022-02-12 22:44:01',
|
|
],
|
|
[
|
|
'id' => 321,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:45:01',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 322,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:45:01',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 323,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.16 0.29 0.46',
|
|
'meta' => '{"last_minute":0.16,"last_5_minutes":0.29,"last_15_minutes":0.46}',
|
|
'ended_at' => '2022-02-12 22:45:01',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 324,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:45:01',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 325,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:45:02',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 326,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:45:02',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 327,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:45:02',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 328,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:45:02',
|
|
'batch' => '2ba8a6a4-0557-4c00-9759-fc339e931271',
|
|
'created_at' => '2022-02-12 22:45:02',
|
|
'updated_at' => '2022-02-12 22:45:02',
|
|
],
|
|
[
|
|
'id' => 329,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 330,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 331,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.31 0.3 0.45',
|
|
'meta' => '{"last_minute":0.31,"last_5_minutes":0.3,"last_15_minutes":0.45}',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 332,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 333,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 334,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 335,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 336,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:46:02',
|
|
'batch' => 'f69b3804-106f-4fd5-9d20-1d489a4496c9',
|
|
'created_at' => '2022-02-12 22:46:02',
|
|
'updated_at' => '2022-02-12 22:46:02',
|
|
],
|
|
[
|
|
'id' => 337,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 338,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 339,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.58 0.37 0.46',
|
|
'meta' => '{"last_minute":0.58,"last_5_minutes":0.37,"last_15_minutes":0.46}',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 340,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 341,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 342,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 343,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 344,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:47:02',
|
|
'batch' => '5954344c-b6d9-463a-8f79-c323862ac4c1',
|
|
'created_at' => '2022-02-12 22:47:02',
|
|
'updated_at' => '2022-02-12 22:47:02',
|
|
],
|
|
[
|
|
'id' => 345,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 346,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 347,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.29 0.31 0.44',
|
|
'meta' => '{"last_minute":0.29,"last_5_minutes":0.31,"last_15_minutes":0.44}',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 348,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 349,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 350,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 351,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 352,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:48:02',
|
|
'batch' => '925e8268-8c17-4231-b20e-a2260f06013b',
|
|
'created_at' => '2022-02-12 22:48:02',
|
|
'updated_at' => '2022-02-12 22:48:02',
|
|
],
|
|
[
|
|
'id' => 353,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:49:01',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 354,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:49:01',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 355,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.11 0.26 0.41',
|
|
'meta' => '{"last_minute":0.11,"last_5_minutes":0.26,"last_15_minutes":0.41}',
|
|
'ended_at' => '2022-02-12 22:49:01',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 356,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:49:01',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 357,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:49:02',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 358,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:49:02',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 359,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:49:02',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 360,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:49:02',
|
|
'batch' => '0b425606-baae-4c7c-a8fb-4e020bffd814',
|
|
'created_at' => '2022-02-12 22:49:02',
|
|
'updated_at' => '2022-02-12 22:49:02',
|
|
],
|
|
[
|
|
'id' => 361,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 362,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 363,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.28 0.27 0.4',
|
|
'meta' => '{"last_minute":0.28,"last_5_minutes":0.27,"last_15_minutes":0.4}',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 364,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 365,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 366,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 367,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 368,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:50:02',
|
|
'batch' => '84728b48-b54d-4519-a2ef-2663f0ea31a4',
|
|
'created_at' => '2022-02-12 22:50:02',
|
|
'updated_at' => '2022-02-12 22:50:02',
|
|
],
|
|
[
|
|
'id' => 369,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 370,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 371,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.22 0.25 0.39',
|
|
'meta' => '{"last_minute":0.22,"last_5_minutes":0.25,"last_15_minutes":0.39}',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 372,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 373,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 374,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 375,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 376,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:51:02',
|
|
'batch' => 'c536a6ea-7253-48f6-9132-10fa02fd7012',
|
|
'created_at' => '2022-02-12 22:51:02',
|
|
'updated_at' => '2022-02-12 22:51:02',
|
|
],
|
|
[
|
|
'id' => 377,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 378,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 379,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.53 0.35 0.41',
|
|
'meta' => '{"last_minute":0.53,"last_5_minutes":0.35,"last_15_minutes":0.41}',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 380,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 381,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 382,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 383,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 384,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:52:01',
|
|
'batch' => '6c595670-c9d0-4a36-9529-df81696f9473',
|
|
'created_at' => '2022-02-12 22:52:01',
|
|
'updated_at' => '2022-02-12 22:52:01',
|
|
],
|
|
[
|
|
'id' => 385,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 386,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 387,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.51 0.37 0.42',
|
|
'meta' => '{"last_minute":0.51,"last_5_minutes":0.37,"last_15_minutes":0.42}',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 388,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 389,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 390,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 391,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 392,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:53:02',
|
|
'batch' => 'e0f26dc2-d352-4483-8dc0-4649ba0fed56',
|
|
'created_at' => '2022-02-12 22:53:02',
|
|
'updated_at' => '2022-02-12 22:53:02',
|
|
],
|
|
[
|
|
'id' => 393,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 394,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 395,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.54 0.4 0.42',
|
|
'meta' => '{"last_minute":0.54,"last_5_minutes":0.4,"last_15_minutes":0.42}',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 396,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 397,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 398,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 399,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 400,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:54:02',
|
|
'batch' => '554a74fd-a269-4c46-889c-e73c97fa4972',
|
|
'created_at' => '2022-02-12 22:54:02',
|
|
'updated_at' => '2022-02-12 22:54:02',
|
|
],
|
|
[
|
|
'id' => 401,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 402,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 403,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.27 0.34 0.4',
|
|
'meta' => '{"last_minute":0.27,"last_5_minutes":0.34,"last_15_minutes":0.4}',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 404,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 405,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 406,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 407,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 408,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:55:01',
|
|
'batch' => 'bd9b0765-fa2a-453e-ae1d-927d901a004f',
|
|
'created_at' => '2022-02-12 22:55:01',
|
|
'updated_at' => '2022-02-12 22:55:01',
|
|
],
|
|
[
|
|
'id' => 409,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 410,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 411,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.44 0.35 0.39',
|
|
'meta' => '{"last_minute":0.44,"last_5_minutes":0.35,"last_15_minutes":0.39}',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 412,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 413,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 414,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 415,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 416,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:56:02',
|
|
'batch' => 'abd3e233-aadd-44ee-b0fd-2b6da9b326ab',
|
|
'created_at' => '2022-02-12 22:56:02',
|
|
'updated_at' => '2022-02-12 22:56:02',
|
|
],
|
|
[
|
|
'id' => 417,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 418,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 419,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.6 0.43 0.42',
|
|
'meta' => '{"last_minute":0.6,"last_5_minutes":0.43,"last_15_minutes":0.42}',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 420,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 421,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 422,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 423,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 424,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:57:02',
|
|
'batch' => '8a42530c-910c-4e88-bfb0-d648472d7c0a',
|
|
'created_at' => '2022-02-12 22:57:02',
|
|
'updated_at' => '2022-02-12 22:57:02',
|
|
],
|
|
[
|
|
'id' => 425,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 426,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 427,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.62 0.46 0.43',
|
|
'meta' => '{"last_minute":0.62,"last_5_minutes":0.46,"last_15_minutes":0.43}',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 428,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 429,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 430,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 431,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 432,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:58:02',
|
|
'batch' => '8824a5b1-8b82-45c7-8526-64de10798fbc',
|
|
'created_at' => '2022-02-12 22:58:02',
|
|
'updated_at' => '2022-02-12 22:58:02',
|
|
],
|
|
[
|
|
'id' => 433,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 22:59:01',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 434,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 22:59:01',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 435,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.42 0.43 0.42',
|
|
'meta' => '{"last_minute":0.42,"last_5_minutes":0.43,"last_15_minutes":0.42}',
|
|
'ended_at' => '2022-02-12 22:59:01',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 436,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:59:01',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 437,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:59:02',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 438,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 22:59:02',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 439,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 22:59:02',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 440,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 22:59:02',
|
|
'batch' => '1ac3e21f-0cc7-4698-90a1-b826b4552184',
|
|
'created_at' => '2022-02-12 22:59:02',
|
|
'updated_at' => '2022-02-12 22:59:02',
|
|
],
|
|
[
|
|
'id' => 441,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 442,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 443,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.7 0.54 0.46',
|
|
'meta' => '{"last_minute":0.7,"last_5_minutes":0.54,"last_15_minutes":0.46}',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 444,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 445,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 446,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 447,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 448,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 23:00:02',
|
|
'batch' => '17998b67-6790-4092-9dd4-74680b13968f',
|
|
'created_at' => '2022-02-12 23:00:02',
|
|
'updated_at' => '2022-02-12 23:00:02',
|
|
],
|
|
[
|
|
'id' => 449,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 450,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 451,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.42 0.48 0.44',
|
|
'meta' => '{"last_minute":0.42,"last_5_minutes":0.48,"last_15_minutes":0.44}',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 452,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 453,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 454,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 455,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 456,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 23:01:02',
|
|
'batch' => '1bf31822-c391-402c-984c-bfb157e6e2ee',
|
|
'created_at' => '2022-02-12 23:01:02',
|
|
'updated_at' => '2022-02-12 23:01:02',
|
|
],
|
|
[
|
|
'id' => 457,
|
|
'check_name' => 'Database',
|
|
'check_label' => 'Database',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"mysql"}',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 458,
|
|
'check_name' => 'Cache',
|
|
'check_label' => 'Cache',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"driver":"redis"}',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 459,
|
|
'check_name' => 'CpuLoad',
|
|
'check_label' => 'Cpu Load',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '0.23 0.4 0.42',
|
|
'meta' => '{"last_minute":0.23,"last_5_minutes":0.4,"last_15_minutes":0.42}',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 460,
|
|
'check_name' => 'Horizon',
|
|
'check_label' => 'Horizon',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Running',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 461,
|
|
'check_name' => 'Ping',
|
|
'check_label' => 'Ping',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'reachable',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 462,
|
|
'check_name' => 'Redis',
|
|
'check_label' => 'Redis',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '{"connection_name":"default"}',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 463,
|
|
'check_name' => 'Schedule',
|
|
'check_label' => 'Schedule',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => 'Ok',
|
|
'meta' => '[]',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
[
|
|
'id' => 464,
|
|
'check_name' => 'UsedDiskSpace',
|
|
'check_label' => 'Used Disk Space',
|
|
'status' => 'ok',
|
|
'notification_message' => '',
|
|
'short_summary' => '59%',
|
|
'meta' => '{"disk_space_used_percentage":59}',
|
|
'ended_at' => '2022-02-12 23:02:02',
|
|
'batch' => '2d1e6012-be3f-4e58-a6fb-debc3d30739c',
|
|
'created_at' => '2022-02-12 23:02:02',
|
|
'updated_at' => '2022-02-12 23:02:02',
|
|
],
|
|
]
|
|
);
|
|
}
|
|
}
|