Files
speedtest-tracker/app/Settings/DataIntegrationSettings.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

30 lines
533 B
PHP

<?php
namespace App\Settings;
use Spatie\LaravelSettings\Settings;
class DataIntegrationSettings extends Settings
{
public bool $influxdb_v2_enabled;
public ?string $influxdb_v2_url;
public ?string $influxdb_v2_org;
public string $influxdb_v2_bucket;
public ?string $influxdb_v2_token;
public bool $influxdb_v2_verify_ssl;
public bool $prometheus_enabled;
public array $prometheus_allowed_ips = [];
public static function group(): string
{
return 'dataintegration';
}
}