Galileo Technologies auto-metric-suggestions API

The auto-metric-suggestions API from Galileo Technologies — 2 operation(s) for auto-metric-suggestions.

Operations 2

POST /experimental/projects/{project_id}/log_streams/{log_stream_id}/auto_metric_suggestions Get Metric Suggestions #
POST /experimental/projects/{project_id}/log_streams/{log_stream_id}/auto_metric_suggestions/chat Chat With Metric Suggestions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/galileo-technologies-auto-metric-suggestions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

galileo-technologies-auto-metric-suggestions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Galileo API Server annotation Auto Metric Suggestions API
  version: 1.1085.0
servers:
- url: https://api.galileo.ai
  description: Galileo API Server - galileo-v2
tags:
- name: auto-metric-suggestions
paths:
  /experimental/projects/{project_id}/log_streams/{log_stream_id}/auto_metric_suggestions:
    post:
      tags:
      - auto-metric-suggestions
      summary: Get Metric Suggestions
      description: Get metric suggestions for a given project and log stream.
      operationId: get_metric_suggestions_experimental_projects__project_id__log_streams__log_stream_id__auto_metric_suggestions_post
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: log_stream_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Log Stream Id
      - name: project_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Project Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoMetricSuggestionGetRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutoMetricSuggestionGetResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /experimental/projects/{project_id}/log_streams/{log_stream_id}/auto_metric_suggestions/chat:
    post:
      tags:
      - auto-metric-suggestions
      summary: Chat With Metric Suggestions
      description: Process a chat query and create a job for metric suggestions.
      operationId: chat_with_metric_suggestions_experimental_projects__project_id__log_streams__log_stream_id__auto_metric_suggestions_chat_post
      security:
      - ClassicAPIKeyHeader: []
      - APIKeyHeader: []
      - OAuth2PasswordBearer: []
      - HTTPBasic: []
      parameters:
      - name: log_stream_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Log Stream Id
      - name: project_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Project Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChatWithMetricRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatWithMetricResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AutoMetricSuggestionGetRequest:
      properties:
        project_id:
          type: string
          format: uuid4
          title: Project Id
        log_stream_id:
          type: string
          format: uuid4
          title: Log Stream Id
        label:
          anyOf:
          - $ref: '#/components/schemas/AutoMetricSuggestionLabel'
          - type: 'null'
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        is_restart:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Is Restart
          default: false
      type: object
      required:
      - project_id
      - log_stream_id
      title: AutoMetricSuggestionGetRequest
    ChatWithMetricRequest:
      properties:
        project_id:
          type: string
          format: uuid4
          title: Project Id
        log_stream_id:
          type: string
          format: uuid4
          title: Log Stream Id
        metric_name:
          type: string
          title: Metric Name
        chat_query:
          anyOf:
          - type: string
          - type: 'null'
          title: Chat Query
        is_restart:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Is Restart
          default: false
      type: object
      required:
      - project_id
      - log_stream_id
      - metric_name
      title: ChatWithMetricRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    ChatWithMetricResponse:
      properties:
        project_id:
          type: string
          format: uuid4
          title: Project Id
        log_stream_id:
          type: string
          format: uuid4
          title: Log Stream Id
        label:
          anyOf:
          - $ref: '#/components/schemas/AutoMetricSuggestionLabel'
          - type: 'null'
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        chat_query:
          type: string
          title: Chat Query
        chat_response:
          anyOf:
          - type: string
          - type: 'null'
          title: Chat Response
        metric_name:
          type: string
          title: Metric Name
        job_status:
          anyOf:
          - $ref: '#/components/schemas/JobStatus'
          - type: 'null'
      type: object
      required:
      - project_id
      - log_stream_id
      - chat_query
      - metric_name
      title: ChatWithMetricResponse
    AutoMetricSuggestionGetResponse:
      properties:
        project_id:
          type: string
          format: uuid4
          title: Project Id
        log_stream_id:
          type: string
          format: uuid4
          title: Log Stream Id
        label:
          anyOf:
          - type: string
          - type: 'null'
          title: Label
        metrics:
          anyOf:
          - items:
              $ref: '#/components/schemas/AutoMetric'
            type: array
          - type: 'null'
          title: Metrics
        job_status:
          anyOf:
          - $ref: '#/components/schemas/JobStatus'
          - type: 'null'
      type: object
      required:
      - project_id
      - log_stream_id
      title: AutoMetricSuggestionGetResponse
    AutoMetricSuggestionLabel:
      type: string
      enum:
      - Retriever Augmented Generation (RAG)
      - Agent
      - Code Generation
      - Multi-turn dialogue system
      title: AutoMetricSuggestionLabel
    AutoMetric:
      properties:
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        implementation:
          type: string
          title: Implementation
          default: galileo
        code:
          type: string
          title: Code
          default: ''
      type: object
      required:
      - name
      - description
      title: AutoMetric
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    JobStatus:
      type: string
      enum:
      - unstarted
      - in_progress
      - processed
      - completed
      - error
      - failed
      title: JobStatus
  securitySchemes:
    ClassicAPIKeyHeader:
      type: apiKey
      in: header
      name: Galileo-API-Key
    APIKeyHeader:
      type: apiKey
      in: header
      name: Splunk-AO-API-Key
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: https://api.galileo.ai/login
    HTTPBasic:
      type: http
      scheme: basic