The Browser SDK should support masking of sensitive data in both request bodies and headers before sending telemetry to HyperDX. This feature is important for privacy and compliance, ensuring that sensitive fields such as tokens, credentials, or personal data are not transmitted or stored.
Recommended Acceptance Criteria:
HyperDX.init({
apiKey: "<API_KEY>",
maskFields: {
headers: ["authorization", "x-api-key"],
body: ["password", "creditCard.number"]
},
maskPlaceholder: "***"
});
Goal:
Prevent sensitive or personally identifiable information from being logged or transmitted by the HyperDX Browser SDK.
The Browser SDK should support masking of sensitive data in both request bodies and headers before sending telemetry to HyperDX. This feature is important for privacy and compliance, ensuring that sensitive fields such as tokens, credentials, or personal data are not transmitted or stored.
Recommended Acceptance Criteria:
Goal:
Prevent sensitive or personally identifiable information from being logged or transmitted by the HyperDX Browser SDK.