-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?php | ||
|
||
namespace Cachet\Database\Seeders; | ||
|
||
use Cachet\Enums\ComponentStatusEnum; | ||
use Cachet\Enums\IncidentStatusEnum; | ||
use Cachet\Enums\MetricTypeEnum; | ||
use Cachet\Enums\MetricViewEnum; | ||
use Cachet\Enums\ResourceVisibilityEnum; | ||
use Cachet\Models\ComponentGroup; | ||
use Cachet\Models\Incident; | ||
use Cachet\Models\Metric; | ||
use Illuminate\Database\Seeder; | ||
use Illuminate\Support\Arr; | ||
use Illuminate\Support\Str; | ||
use Workbench\App\User; | ||
|
||
class DatabaseSeeder extends Seeder | ||
{ | ||
/** | ||
* Run the database seeds. | ||
*/ | ||
public function run(): void | ||
{ | ||
$user = User::create([ | ||
'name' => 'Cachet Demo', | ||
'email' => '[email protected]', | ||
'password' => bcrypt('test123'), | ||
'email_verified_at' => now(), | ||
'active' => true, | ||
]); | ||
|
||
$componentGroup = ComponentGroup::create([ | ||
'name' => 'Checkmango', | ||
'visible' => ResourceVisibilityEnum::guest, | ||
]); | ||
|
||
$componentGroup->components()->createMany([ | ||
[ | ||
'name' => 'Dashboard', | ||
'description' => 'The Checkmango Dashboard.', | ||
'link' => 'https://checkmango.com', | ||
'status' => ComponentStatusEnum::operational, | ||
], [ | ||
'name' => 'API', | ||
'description' => 'The Checkmango API.', | ||
'link' => 'https://developers.checkmango.com', | ||
'status' => ComponentStatusEnum::operational, | ||
], [ | ||
'name' => 'Documentation', | ||
'description' => 'The Checkmango Documentation.', | ||
'link' => 'https://docs.checkmango.com', | ||
'status' => ComponentStatusEnum::performance_issues, | ||
], | ||
]); | ||
|
||
$metric = Metric::create([ | ||
'name' => 'Checkmango Requests', | ||
'suffix' => 'req/s', | ||
'description' => 'The number of requests to the Checkmango API.', | ||
'default_view' => MetricViewEnum::last_hour, | ||
'calc_type' => MetricTypeEnum::average, | ||
'display_chart' => true, | ||
'places' => 2, | ||
'default_value' => 0, | ||
]); | ||
|
||
$metric->metricPoints()->createMany(Arr::map(range(1, 60), fn (int $i) => [ | ||
'value' => random_int(1, 100), | ||
'created_at' => now()->subMinutes(random_int(0, $i * 60)), | ||
])); | ||
|
||
tap(Incident::create([ | ||
'name' => 'DNS Provider Outage', | ||
'message' => 'We\'re investigating an issue with our DNS provider causing the site to be offline.', | ||
'status' => IncidentStatusEnum::fixed, | ||
'visible' => ResourceVisibilityEnum::guest, | ||
'guid' => Str::uuid(), | ||
'user_id' => $user->id, | ||
'created_at' => $timestamp = now()->subDay(), | ||
'updated_at' => $timestamp, | ||
]), function (Incident $incident) use ($user) { | ||
$incident->incidentUpdates()->create([ | ||
'status' => IncidentStatusEnum::identified, | ||
'message' => 'We\'ve confirmed the issue is with our DNS provider. We\'re waiting on them to provide an ETA.', | ||
'user_id' => $user->id, | ||
'created_at' => $timestamp = $incident->created_at->addMinutes(30), | ||
'updated_at' => $timestamp, | ||
]); | ||
|
||
$incident->incidentUpdates()->create([ | ||
'status' => IncidentStatusEnum::fixed, | ||
'message' => 'Our DNS provider has fixed the issue. We will continue to monitor the situation.', | ||
'user_id' => $user->id, | ||
'created_at' => $timestamp = $incident->created_at->addMinutes(45), | ||
'updated_at' => $timestamp, | ||
]); | ||
}); | ||
|
||
$incident = Incident::create([ | ||
'name' => 'Documentation Performance Degradation', | ||
'message' => 'We\'re investigating an issue with our documentation causing the site to be slow.', | ||
'status' => IncidentStatusEnum::investigating, | ||
'visible' => ResourceVisibilityEnum::guest, | ||
'guid' => Str::uuid(), | ||
'created_at' => $timestamp = now()->subMinutes(30), | ||
'updated_at' => $timestamp, | ||
]); | ||
|
||
$incident->incidentUpdates()->create([ | ||
'status' => IncidentStatusEnum::identified, | ||
'message' => 'We\'ve identified the issue and are working on a fix.', | ||
]); | ||
|
||
// IncidentTemplate::create([ | ||
// 'name' => 'Third-Party Service Outage', | ||
// 'slug' => 'third-party-service-outage', | ||
// 'template' => 'We\'re investigating an issue with a third-party provider ({{ name }}) causing our services to be offline.', | ||
// 'engine' => IncidentTemplateEngineEnum::twig, | ||
// ]); | ||
} | ||
} |