# TelemetryClient

# Reference

const client = new TelemetryClient(logRocketClient?, honeycombClient?, mixpanelClient?);

# Parameters

# Getters

# Usage

# LogRocket instrumentation client

import { useTelemetryClient } from "@workleap/telemetry/react";

const client = useTelemetryClient();

client.logRocket.registerGetSessionUrlListener(sessionUrl => {
    console.log(sessionUrl);
});

# Honeycomb instrumentation client

import { useTelemetryClient } from "@workleap/telemetry/react";

const client = useTelemetryClient();

client.honeycomb.setGlobalSpanAttributes({
    "app.user_id": "123"
});

# Mixpanel client

import { useTelemetryClient } from "@workleap/telemetry/react";

const client = useTelemetryClient();

client.mixpanel.setGlobalEventProperties({
    "User Id": "123"
});