open-nomad/website/source/api/search.html.md

115 lines
2.6 KiB
Markdown
Raw Normal View History

2017-08-24 22:33:28 +00:00
---
layout: api
page_title: Search - HTTP API
sidebar_current: api-search
description: |-
2017-08-25 14:08:22 +00:00
The /search endpoint is used to search for Nomad objects
2017-08-24 22:33:28 +00:00
---
# Search HTTP API
The `/search` endpoint returns matches for a given prefix and context, where a
2017-10-16 18:17:04 +00:00
context can be jobs, allocations, evaluations, nodes, or deployments. When using
Nomad Enterprise, the allowed contexts include quotas and namespaces.
2017-08-24 22:33:28 +00:00
Additionally, a prefix can be searched for within every context.
| Method | Path | Produces |
| ------- | ---------------------------- | -------------------------- |
2018-06-13 09:50:13 +00:00
| `POST` | `/v1/search` | `application/json` |
2017-08-24 22:33:28 +00:00
The table below shows this endpoint's support for
[blocking queries](/api/index.html#blocking-queries) and
[required ACLs](/api/index.html#acls).
2017-10-10 22:04:23 +00:00
| Blocking Queries | ACL Required |
| ---------------- | -------------------------------- |
| `NO` | `node:read, namespace:read-jobs` |
When ACLs are enabled, requests must have a token valid for `node:read` or
`namespace:read-jobs` roles. If the token is only valid for `node:read`, then
job related results will not be returned. If the token is only valid for
`namespace:read-jobs`, then node results will not be returned.
2017-08-24 22:33:28 +00:00
### Parameters
- `Prefix` `(string: <required>)` - Specifies the identifer against which
matches will be found. For example, if the given prefix were "a", potential
matches might be "abcd", or "aabb".
- `Context` `(string: <required>)` - Defines the scope in which a search for a
prefix operates. Contexts can be: "jobs", "evals", "allocs", "nodes",
2017-08-26 00:04:23 +00:00
"deployment" or "all", where "all" means every context will be searched.
2017-08-24 22:33:28 +00:00
### Sample Payload (for a specific context)
```javascript
{
"Prefix": "abc",
"Context": "evals"
}
```
### Sample Request
```text
$ curl \
--request POST \
--data @payload.json \
https://localhost:4646/v1/search
2017-08-24 22:33:28 +00:00
```
### Sample Response
```json
{ "Matches": {
"evals": [
"abc2fdc0-e1fd-2536-67d8-43af8ca798ac"
]
},
"Truncations": {
"evals": "false"
}
}
```
### Sample Payload (for all contexts)
```javascript
{
"Prefix": "abc",
2017-08-25 14:08:22 +00:00
"Context": ""
2017-08-24 22:33:28 +00:00
}
```
### Sample Request
```text
$ curl \
--request POST \
--data @payload.json \
https://localhost:4646/v1/search
2017-08-24 22:33:28 +00:00
```
### Sample Response
```json
{ "Matches": {
"allocs": [],
"deployment": [],
"evals": [
"abc2fdc0-e1fd-2536-67d8-43af8ca798ac"
],
"jobs": [
"abcde"
],
"nodes": []
},
"Truncations": {
"allocs": "false",
"deployment": "false",
"evals": "false",
"jobs": "false",
"nodes": "false"
}
}
```