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

# Overview

> Integrate Simplismart metrics with your monitoring and observability tools

Simplismart exposes deployment metrics in Prometheus format, ready for integration with any observability platform. Monitor GPU utilization, Kubernetes health, and HTTP request metrics, all from a single endpoint.

## Quick Start

<Steps>
  <Step title="Configure scrape endpoint">
    Below given is the scrape endpoint:

    ```
    https://api.app.simplismart.ai/observability/metrics/federate/
    ```

    <Note>
      The Federate API is rate limited to 5 requests per minute.
    </Note>
  </Step>

  <Step title="Set up authentication">
    Use [Simplismart API KEY](/model-suite/settings/api-keys) for authentication.

    ```yaml theme={null}
    authorization:
      type: Bearer
      credentials: "${SIMPLISMART_API_KEY}"
    ```
  </Step>

  <Step title="Configure scrape interval">
    The recommended scrape interval is 60 seconds.
    It is advised not to reduce the interval below 30 seconds, as shorter intervals may not provide meaningful additional visibility and can lead to unnecessary overhead.
  </Step>
</Steps>

## Supported integrations

Send metrics to your preferred observability platform using [OpenTelemetry Collector](https://opentelemetry.io/docs/collector/):

<CardGroup cols={2}>
  <Card title="Prometheus" href="/observability/export-metrics/prometheus">
    Scrape and query metrics using Prometheus
  </Card>

  <Card title="Datadog" href="/observability/export-metrics/datadog">
    Forward metrics to Datadog for monitoring
  </Card>

  <Card title="New Relic" href="/observability/export-metrics/new-relic">
    Send metrics to New Relic for observability
  </Card>
</CardGroup>

For detailed metric descriptions, see the [supported metrics reference](/observability/export-metrics/supported-metrics).
