mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
d27000f05f
Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
30 lines
533 B
PHP
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';
|
|
}
|
|
}
|