Riak KV Stats API

The Stats API from Riak KV — 1 operation(s) for stats.

OpenAPI Specification

riak-stats-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Riak KV HTTP Mapred Stats API
  version: '2.2'
  description: 'Riak KV exposes a RESTful HTTP API for interacting with buckets, keys,

    bucket-type properties, secondary indexes, MapReduce, search, and CRDT

    data types, alongside higher-performance Protocol Buffers (PBC) endpoints

    over TCP. This specification describes the publicly documented HTTP

    interface as published at docs.riak.com.

    '
  contact:
    name: Riak KV documentation
    url: https://docs.riak.com/riak/kv/latest/developing/api/http/
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://{host}:{port}
  description: Riak KV HTTP listener (default port 8098)
  variables:
    host:
      default: localhost
    port:
      default: '8098'
tags:
- name: Stats
paths:
  /stats:
    get:
      summary: Server statistics
      operationId: stats
      responses:
        '200':
          description: JSON document of cluster and node statistics
          content:
            application/json:
              schema:
                type: object
      tags:
      - Stats
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: 'Riak KV supports optional security with HTTPS and basic auth or

        certificate-based authentication. By default, the HTTP listener is

        unauthenticated.

        '