Skip to content

Commit b014672

Browse files
committed
update default metrics domain fallback
1 parent 389d815 commit b014672

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.7]
6+
### Changed
7+
- Updated the SDK’s default metrics collection domain to improve endpoint reliability and alignment with current infrastructure.
8+
- Explicitly configured custom domains continue to be respected.
9+
510
## [1.0.6]
611
### Changed
712
- Updated npm authentication from Classic token to Granular token for improved security and fine-grained permissions.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fastpix/video-data-core",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"author": "FastPix, Inc",
55
"license": "MIT",
66
"description": "FastPix Video Data SDK for real-time monitoring of HTML5 video players.",

src/CommonMethods/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function formulateBeaconUrl(
122122
config: ActionableDataTypes,
123123
): string {
124124
const { beaconDomain } = config;
125-
const targetDomain = beaconDomain ?? "metrix.ws";
125+
const targetDomain = beaconDomain ?? "anlytix.io";
126126
const finalWorkspace = workspace ?? "collector";
127127

128128
return `https://${finalWorkspace}.${targetDomain}`;

src/MonitorMetrics/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function nucleusState(
5151
fileInstance.id = token;
5252
const defaultConfig = {
5353
debug: actionableData?.debug ?? false,
54-
beaconDomain: actionableData.configDomain ?? "metrix.ws",
54+
beaconDomain: actionableData.configDomain ?? "anlytix.io",
5555
disableCookies: actionableData.disableCookies ?? false,
5656
respectDoNotTrack: actionableData.respectDoNotTrack ?? false,
5757
allowRebufferTracking: false,

0 commit comments

Comments
 (0)