/**
 * Recipe: span-metrics
 *
 * Generates RED (Request rate, Error rate, Duration) metrics from traces
 * using the OTel spanmetrics connector. Produces both metrics (to Prometheus)
 * and forwards traces (to Tempo) via dual-output fan-out.
 *
 * Generated Alloy pipeline:
 *   otelcol.receiver.otlp → otelcol.processor.batch → {
 *     otelcol.connector.spanmetrics → otelcol.exporter.otlphttp (metrics)
 *     otelcol.exporter.otlp (traces)
 *   }
 */
import type { PipelineRecipe } from "../types.js";
declare const recipe: PipelineRecipe;
export default recipe;
