mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
* Replace analytics service with Echo backend * Add Rudderstack integration and general pageview and interaction Echo events * Update conf/defaults.ini Co-authored-by: Dan Cech <dcech@grafana.com> * Update packages/grafana-runtime/src/types/analytics.ts Co-authored-by: Dan Cech <dcech@grafana.com> * Update conf/defaults.ini Co-authored-by: Dan Cech <dcech@grafana.com> * Update tests * Force cla check Co-authored-by: Dan Cech <dcech@grafana.com>
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { attachDebugger, createLogger } from '@grafana/ui';
|
|
|
|
/** @internal */
|
|
export const echoLogger = createLogger('EchoSrv');
|
|
export const echoLog = echoLogger.logger;
|
|
|
|
attachDebugger('echo', undefined, echoLogger);
|