Meta Muse Spark Monitoring with OpenTelemetry SigNoz published a guide for monitoring Meta's Muse Spark reasoning model family through the OpenAI-compatible Meta Model API using standard OpenTelemetry instrumentation, with the model muse-spark-1.3 priced at $1.25 per million input tokens, $0.15 per million cached input tokens, and $4.25 per million output tokens. The guide states that stock instrumentation drops reasoning tokens, cached input tokens, and time to first chunk, and that cached input is roughly 8x cheaper on the standard tier, causing span-derived cost to overstate real spend by three to five times. It requires Python 3.9 or later, a Meta Model API key, and a SigNoz Cloud account or self-hosted SigNoz instance, and notes that only Chat Completions is traced while the Responses API produces no span. What is Meta Muse Spark Monitoring? Meta Muse Spark is a reasoning model family served through the Meta Model API. Because the API is OpenAI compatible, you instrument it with the standard OpenTelemetry OpenAI instrumentation rather than a provider specific library, which gives you request traces, model and token usage, latency, and errors. With full Muse Spark monitoring in SigNoz, you can attribute spend to a model and a tier, watch how much of every response is spent on reasoning the caller never sees, measure the wait before the first visible token, and catch the truncated responses that a plain error rate misses. Prerequisites - A SigNoz Cloud account https://signoz.io/teams/ with an active ingestion key, or a self-hosted SigNoz instance https://signoz.io/docs/install/self-host/ - Python 3.9 or later - A Meta Model API key from the Meta AI developer site https://developer.meta.com/ai/ - Network access to api.meta.ai and to SigNoz Monitor Meta Muse Spark with OpenTelemetry Muse Spark is reached over an OpenAI compatible endpoint, so opentelemetry-instrument can trace it with no changes to your application code. 1. Step 1: Install the SDK, the OpenTelemetry distro, and the exporter, then let bootstrap add the matching instrumentation. pip install openai httpx opentelemetry-distro opentelemetry-exporter-otlp opentelemetry-bootstrap --action=install 2. Step 2: Point the OpenAI client at the Meta Model API. Only the base URL and the key change. python from openai import OpenAI client = OpenAI api key="