Skip to content

Commit 83898cc

Browse files
committed
Ingress domain change
1 parent 05abd2e commit 83898cc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public bool $enabled = false;
109109
public bool $debug = false;
110110
public bool $logErrors = true;
111111
public string $apiKey = '';
112-
public string $apiUrl = 'https://receiver.perfbase.com';
112+
public string $apiUrl = 'https://ingress.perfbase.cloud';
113113
public float $sampleRate = 0.1;
114114
public int $timeout = 10;
115115
public ?string $proxy = null;
@@ -129,7 +129,7 @@ perfbase.enabled=true
129129
perfbase.debug=false
130130
perfbase.logErrors=true
131131
perfbase.apiKey=
132-
perfbase.apiUrl=https://receiver.perfbase.com
132+
perfbase.apiUrl=https://ingress.perfbase.cloud
133133
perfbase.sampleRate=0.1
134134
perfbase.timeout=10
135135
perfbase.proxy=

src/Config/Perfbase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Perfbase extends BaseConfig
1313
public bool $debug = false;
1414
public bool $logErrors = true;
1515
public string $apiKey = '';
16-
public string $apiUrl = 'https://receiver.perfbase.com';
16+
public string $apiUrl = 'https://ingress.perfbase.cloud';
1717
public float $sampleRate = 0.1;
1818
public int $timeout = 10;
1919
public ?string $proxy = null;

tests/Unit/Config/PerfbaseConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testDefaultsAreCorrect(): void
2929
self::assertFalse($config->enabled);
3030
self::assertFalse($config->debug);
3131
self::assertTrue($config->logErrors);
32-
self::assertSame('https://receiver.perfbase.com', $config->apiUrl);
32+
self::assertSame('https://ingress.perfbase.cloud', $config->apiUrl);
3333
self::assertSame(0.1, $config->sampleRate);
3434
self::assertSame(['*'], $config->includeHttp);
3535
self::assertSame([], $config->excludeConsole);

0 commit comments

Comments
 (0)