This repository was archived by the owner on Feb 5, 2024. It is now read-only.
Replies: 1 comment
-
|
A comparison of third-party providers client APIs: Application InsightsInstall Usage const appInsights = new ApplicationInsights({ config: {
instrumentationKey: 'YOUR_INSTRUMENTATION_KEY_GOES_HERE'
/* ...Other Configuration Options... */
} });
appInsights.loadAppInsights();
appInsights.trackPageView();SentryInstall: Usage Sentry.init({
dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
maxBreadcrumbs: 50,
debug: true
});
Sentry.captureMessage("Something went wrong");FirestoreInstall Usage const firestore = new Firestore();
const document = firestore.doc('posts/intro-to-firestore');
// Enter new data into the document.
await document.set({
title: 'Welcome to Firestore',
body: 'Hello World',
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When we create a rat client for JS we can have a look on how this real world configuration is loaded and provide this as one way to load rat data: https://devblogs.microsoft.com/premier-developer/angular-how-to-editable-config-files/
Beta Was this translation helpful? Give feedback.
All reactions