Files
speedtest-tracker/database/settings/2025_11_25_191005_create_prometheus_settings.php
T
Sven van Ginkel d27000f05f feat: Add Prometheus (#2440)
Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
2025-12-02 16:31:40 -05:00

13 lines
320 B
PHP

<?php
use Spatie\LaravelSettings\Migrations\SettingsMigration;
class CreatePrometheusSettings extends SettingsMigration
{
public function up(): void
{
$this->migrator->add('dataintegration.prometheus_enabled', false);
$this->migrator->add('dataintegration.prometheus_allowed_ips', []);
}
}