Dataiku Metrics API

Retrieve metrics and health information

Operations 2

GET /metrics Dataiku Get API node metrics #
GET /health Dataiku Get API node health #

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/dataiku-metrics-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

dataiku-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dataiku API Node Administration Metrics API
  description: REST API for administering Dataiku API Nodes, managing deployed services, service generations, prediction endpoints, and authentication keys for real-time API serving of machine learning models and data lookups.
  version: '13.0'
  contact:
    name: Dataiku Support
    url: https://www.dataiku.com/support
    email: support@dataiku.com
  termsOfService: https://www.dataiku.com/terms/
servers:
- url: https://{apinode-host}:{port}/admin/api
  description: Dataiku API Node Instance
  variables:
    apinode-host:
      default: apinode.example.com
      description: Hostname of the Dataiku API Node
    port:
      default: '12443'
      description: Admin API port
security:
- apiKeyAuth: []
tags:
- name: Metrics
  description: Retrieve metrics and health information
paths:
  /metrics:
    get:
      operationId: getMetrics
      summary: Dataiku Get API node metrics
      description: Retrieve metrics about the API node including request counts, latencies, and error rates.
      tags:
      - Metrics
      responses:
        '200':
          description: API node metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Metrics'
        '401':
          description: Unauthorized
  /health:
    get:
      operationId: getHealth
      summary: Dataiku Get API node health
      description: Check the health status of the API node.
      tags:
      - Metrics
      responses:
        '200':
          description: API node is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthStatus'
      security: []
components:
  schemas:
    HealthStatus:
      type: object
      properties:
        status:
          type: string
          enum:
          - HEALTHY
          - DEGRADED
          - UNHEALTHY
          description: Overall health status
        details:
          type: object
          description: Additional health check details
    Metrics:
      type: object
      properties:
        totalRequests:
          type: integer
          format: int64
          description: Total number of requests processed
        activeRequests:
          type: integer
          description: Number of currently active requests
        averageLatencyMs:
          type: number
          format: double
          description: Average request latency in milliseconds
        errorCount:
          type: integer
          format: int64
          description: Total number of error responses
        serviceMetrics:
          type: object
          additionalProperties:
            type: object
            properties:
              requestCount:
                type: integer
                format: int64
              averageLatencyMs:
                type: number
                format: double
              errorCount:
                type: integer
                format: int64
          description: Per-service metrics keyed by service ID
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Admin API key passed as Bearer token
externalDocs:
  description: Dataiku API Node Administration Documentation
  url: https://doc.dataiku.com/dss/latest/apinode/api/admin-api.html