Extra analytics logging from code review

This commit is contained in:
Michael Shanks 2020-09-29 16:35:47 +01:00
parent 701c82cb1f
commit a665399785
4 changed files with 6 additions and 2 deletions

View File

@ -50,6 +50,7 @@ async function identifyByApiKey(apiKey) {
function captureException(err) {
if (!analyticsEnabled) return
Sentry.captureException(err)
captureEvent("Error", { error: err.message ? err.message : err })
}
function captureEvent(eventName, props = {}) {

View File

@ -36,7 +36,7 @@
function saveView() {
backendUiStore.actions.views.save(view)
notifier.success(`View ${view.name} saved.`)
analytics.captureEvent("Added View Calculate")
analytics.captureEvent("Added View Calculate", { field: view.field })
dropdown.hide()
}
</script>

View File

@ -64,7 +64,9 @@
backendUiStore.actions.views.save(view)
notifier.success(`View ${view.name} saved.`)
dropdown.hide()
analytics.captureEvent("Added View Filter")
analytics.captureEvent("Added View Filter", {
filters: JSON.stringify(view.filters),
})
}
function removeFilter(idx) {

View File

@ -30,6 +30,7 @@
// make sure we only fetch once, unless API Key is changed
if (isApiKeyValid === undefined || apiKey !== lastApiKey) {
lastApiKey = apiKey
// svelte reactivity was causing a requst to get fired mutiple times
// so, we make everything await the same promise, if one exists
if (!fetchApiKeyPromise) {