> ## Documentation Index
> Fetch the complete documentation index at: https://www.1password.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Query server for exposed Prometheus metrics

> See Prometheus documentation for a complete data model.



## OpenAPI

````yaml /openapi/connect_server_api.yaml get /metrics
openapi: 3.0.2
info:
  title: 1Password Connect
  description: REST API interface for 1Password Connect.
  version: 1.8.1
  contact:
    name: 1Password Integrations
    email: support@1password.com
    url: https://support.1password.com/
servers:
  - url: http://localhost:8080/v1
security: []
tags:
  - name: Items
    description: Access and manage items inside 1Password Vaults
  - name: Vaults
    description: Access 1Password Vaults
  - name: Activity
    description: Access API Request Activity
paths:
  /metrics:
    get:
      tags:
        - Metrics
      summary: Query server for exposed Prometheus metrics
      description: See Prometheus documentation for a complete data model.
      operationId: GetPrometheusMetrics
      responses:
        '200':
          description: Successfully returned Prometheus metrics
          content:
            text/plain:
              schema:
                type: string
                example: >
                  # HELP go_gc_duration_seconds A summary of the pause duration
                  of garbage collection cycles.

                  # TYPE go_gc_duration_seconds summary

                  go_gc_duration_seconds{quantile="0"} 2.9153e-05

                  go_gc_duration_seconds{quantile="0.25"} 6.2832e-05

                  go_gc_duration_seconds{quantile="0.5"} 9.7187e-05

                  go_gc_duration_seconds{quantile="0.75"} 0.000112967

                  go_gc_duration_seconds{quantile="1"} 0.000215819

                  go_gc_duration_seconds_sum 0.001376862

                  go_gc_duration_seconds_count 14
      servers:
        - url: http://localhost:8080

````