mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Sampling API error report rate
This commit is contained in:
@ -24,7 +24,7 @@ const apiGeneral = async <T = unknown>({
|
||||
params,
|
||||
headers,
|
||||
body,
|
||||
sentry = false
|
||||
sentry = true
|
||||
}: Params): Promise<{ body: T }> => {
|
||||
console.log(
|
||||
ctx.bgGreen.bold(' API general ') +
|
||||
@ -58,8 +58,12 @@ const apiGeneral = async <T = unknown>({
|
||||
})
|
||||
})
|
||||
.catch(error => {
|
||||
if (sentry) {
|
||||
Sentry.Native.setExtras(error.response || error.request)
|
||||
if (sentry && Math.random() < 0.001) {
|
||||
Sentry.Native.setExtras({
|
||||
API: 'instance',
|
||||
...(error.response && { response: error.response }),
|
||||
...(error.request && { request: error.request })
|
||||
})
|
||||
Sentry.Native.captureException(error)
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,7 @@ import axios, { AxiosRequestConfig } from 'axios'
|
||||
import chalk from 'chalk'
|
||||
import Constants from 'expo-constants'
|
||||
import li from 'li'
|
||||
import * as Sentry from 'sentry-expo'
|
||||
|
||||
const ctx = new chalk.Instance({ level: 3 })
|
||||
|
||||
@ -97,6 +98,15 @@ const apiInstance = async <T = unknown>({
|
||||
})
|
||||
})
|
||||
.catch(error => {
|
||||
if (Math.random() < 0.001) {
|
||||
Sentry.Native.setExtras({
|
||||
API: 'instance',
|
||||
...(error.response && { response: error.response }),
|
||||
...(error.request && { request: error.request })
|
||||
})
|
||||
Sentry.Native.captureException(error)
|
||||
}
|
||||
|
||||
if (error.response) {
|
||||
// The request was made and the server responded with a status code
|
||||
// that falls out of the range of 2xx
|
||||
|
@ -29,7 +29,7 @@ const apiTooot = async <T = unknown>({
|
||||
params,
|
||||
headers,
|
||||
body,
|
||||
sentry = false
|
||||
sentry = true
|
||||
}: Params): Promise<{ body: T }> => {
|
||||
console.log(
|
||||
ctx.bgGreen.bold(' API tooot ') +
|
||||
@ -61,8 +61,12 @@ const apiTooot = async <T = unknown>({
|
||||
})
|
||||
})
|
||||
.catch(error => {
|
||||
if (sentry) {
|
||||
Sentry.Native.setExtras(error.response || error.request)
|
||||
if (sentry && Math.random() < 0.005) {
|
||||
Sentry.Native.setExtras({
|
||||
API: 'tooot',
|
||||
...(error.response && { response: error.response }),
|
||||
...(error.request && { request: error.request })
|
||||
})
|
||||
Sentry.Native.captureException(error)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user