> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# observability • TypeScript AI Agent SDK

> * Observability Module - Unified tracing, logging, and metrics

# observability

<Badge color="green">TypeScript AI Agent</Badge>

* Observability Module - Unified tracing, logging, and metrics
* Supports 14+ observability integrations:

- Langfuse, LangSmith, LangWatch
- Arize AX, Axiom, Braintrust
- Helicone, Laminar, Maxim
- Patronus, Scorecard, SigNoz
- Traceloop, Weave

*

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { createObservabilityAdapter, setObservabilityAdapter } from 'praisonai';
* // Enable observability
const adapter = await createObservabilityAdapter('langfuse');
setObservabilityAdapter(adapter);
* // Use with agents
const agent = new Agent({ 
instructions: "You are helpful"
});
```

## Import

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { observability } from 'praisonai';
```

## Functions

<CardGroup cols={2}>
  <Card title="setObservabilityAdapter()" icon="function" href="../functions/setObservabilityAdapter">
    Function definition.
  </Card>

  <Card title="getObservabilityAdapter()" icon="function" href="../functions/getObservabilityAdapter">
    Function definition.
  </Card>

  <Card title="resetObservabilityAdapter()" icon="function" href="../functions/resetObservabilityAdapter">
    Function definition.
  </Card>

  <Card title="trace()" icon="function" href="../functions/trace">
    Function definition.
  </Card>
</CardGroup>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="JS Observability" icon="eye" href="/docs/js/observability" />

  <Card title="JS Observability CLI" icon="terminal" href="/docs/js/observability-cli" />
</CardGroup>
