Last active
February 25, 2025 17:14
-
-
Save stympy/34968396b9dd2ba48a32863df5a6eb13 to your computer and use it in GitHub Desktop.
Override javascript error fingerprint for Honeybadger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Honeybadger from "@honeybadger-io/js"; | |
const honeybadger = Honeybadger.configure({ | |
apiKey: "your-api-key", | |
}); | |
// Function to generate a SHA-256 hash in pure JavaScript | |
async function generateFingerprint(stackFrame) { | |
const { file, line, method } = stackFrame; | |
try { | |
// Extract the file path without the domain | |
const url = new URL(file); | |
const filePath = url.pathname; // Removes protocol and domain | |
// Concatenate the relevant data | |
const fingerprintData = `${filePath}:${line}:${method}`; | |
// Convert to a Uint8Array | |
const encoder = new TextEncoder(); | |
const data = encoder.encode(fingerprintData); | |
// Compute SHA-256 hash | |
const hashBuffer = await crypto.subtle.digest("SHA-256", data); | |
const hashArray = Array.from(new Uint8Array(hashBuffer)); | |
// Convert to hex string | |
return hashArray.map((b) => b.toString(16).padStart(2, "0")).join(""); | |
} catch (error) { | |
console.error("Error generating fingerprint:", error); | |
return null; // Fallback if hashing fails | |
} | |
} | |
// Modify Honeybadger before reporting | |
honeybadger.beforeNotify(async (notice) => { | |
if (notice.backtrace && notice.backtrace.length > 0) { | |
const firstFrame = notice.backtrace[0]; | |
const fingerprint = await generateFingerprint(firstFrame); | |
if (fingerprint) { | |
notice.fingerprint = fingerprint; | |
} | |
} | |
}); | |
export default honeybadger; |
Sorry, I meant to use notice.backtrace
instead of notice.stack
. I have updated the gist.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The code you provided, specifically line 38, does not work as intended:
const firstFrame = notice.stack[0];
When debugging, I see that
notice.stack[0]
is just a string. See the output ofnotice
below.When line 9
const { file, line, method } = stackFrame;
tries to run, I get a new error sayingError generating fingerprint: TypeError: Failed to construct 'URL': Invalid URL
Is there something that I'm missing or perhaps a different way for this to be done?