mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
20 lines
607 B
TypeScript
20 lines
607 B
TypeScript
import { captureException } from '@sentry/browser';
|
|
|
|
import { getEchoSrv, EchoEventType } from '@grafana/runtime';
|
|
|
|
import { PerformanceEvent } from './backends/PerformanceBackend';
|
|
|
|
export const reportPerformance = (metric: string, value: number) => {
|
|
getEchoSrv().addEvent<PerformanceEvent>({
|
|
type: EchoEventType.Performance,
|
|
payload: {
|
|
name: metric,
|
|
value: value,
|
|
},
|
|
});
|
|
};
|
|
|
|
// Sentry will process the error, adding it's own metadata, applying any sampling rules,
|
|
// then push it to EchoSrv as SentryEvent
|
|
export const reportError = (error: Error) => captureException(error);
|