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

# Get Metrics Summary

> Key pipeline metrics from Prometheus.



## OpenAPI

````yaml /api/openapi.json get /api/internal/pipeline/metrics-summary
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/internal/pipeline/metrics-summary:
    get:
      tags:
        - pipeline-health
      summary: Get Metrics Summary
      description: Key pipeline metrics from Prometheus.
      operationId: get_metrics_summary_api_internal_pipeline_metrics_summary_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricsSummaryResponse'
components:
  schemas:
    MetricsSummaryResponse:
      properties:
        bars_per_min:
          anyOf:
            - type: number
            - type: 'null'
          title: Bars Per Min
        bars_per_min_1h_avg:
          anyOf:
            - type: number
            - type: 'null'
          title: Bars Per Min 1H Avg
        consumer_lag:
          anyOf:
            - type: number
            - type: 'null'
          title: Consumer Lag
        graph_flush_p95_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Graph Flush P95 Seconds
        conviction_freshness_p50_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Conviction Freshness P50 Seconds
        conviction_freshness_p95_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Conviction Freshness P95 Seconds
        signals_last_hour:
          anyOf:
            - type: integer
            - type: 'null'
          title: Signals Last Hour
        pd_cycles_5m:
          anyOf:
            - type: number
            - type: 'null'
          title: Pd Cycles 5M
        quality_gate_suppression:
          anyOf:
            - additionalProperties:
                type: number
              type: object
            - type: 'null'
          title: Quality Gate Suppression
        checked_at:
          type: string
          format: date-time
          title: Checked At
      type: object
      required:
        - bars_per_min
        - bars_per_min_1h_avg
        - consumer_lag
        - graph_flush_p95_seconds
        - conviction_freshness_p50_seconds
        - conviction_freshness_p95_seconds
        - signals_last_hour
        - pd_cycles_5m
        - quality_gate_suppression
        - checked_at
      title: MetricsSummaryResponse
      description: Flat summary of key Prometheus metrics.

````