measurements

Retrieve measurements in a database

get/sources/{id}/dbs/{db}/measurements

Path parameters

idstring required

ID of the data source

dbstring required

Name of the database

Query parameters

limitinteger

The upper limit of the number of available database measurements to return.

offsetinteger

The number of measurements to skip before starting to collect the result set.

Response

Listing of measurements for a database

Example response

{
  "measurements": [
    {
      "name": "alerts"
    },
    {
      "name": "annotations"
    }
  ],
  "links": {
    "self": "/chronograf/v1/sources/1/dbs/chronograf/measurements?limit=100&offset=0",
    "first": "/chronograf/v1/sources/1/dbs/chronograf/measurements?limit=100&offset=0",
    "next": "/chronograf/v1/sources/1/dbs/chronograf/measurements?limit=100&offset=100"
  }
}

Changes

No recorded changes to this endpoint across all 50 revisions of this API.