We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127a19e commit c2000a9Copy full SHA for c2000a9
database/seeders/DatabaseSeeder.php
@@ -9,6 +9,7 @@
9
use Cachet\Enums\MetricViewEnum;
10
use Cachet\Enums\ResourceVisibilityEnum;
11
use Cachet\Enums\ScheduleStatusEnum;
12
+use Cachet\Models\Component;
13
use Cachet\Models\ComponentGroup;
14
use Cachet\Models\Incident;
15
use Cachet\Models\Metric;
@@ -78,6 +79,13 @@ public function run(): void
78
79
],
80
]);
81
82
+ Component::create([
83
+ 'name' => 'Cachet',
84
+ 'description' => 'The open-source status page system.',
85
+ 'link' => 'https://cachethq.io',
86
+ 'status' => ComponentStatusEnum::operational,
87
+ ]);
88
+
89
$metric = Metric::create([
90
'name' => 'Checkmango Requests',
91
'suffix' => 'req/s',
0 commit comments