Client HTTP API
The /client
endpoints are used to interact with the Nomad clients.
Both clients and servers can handle client endpoints. This is particularly useful for when a direct connection to a client is not possible due to the network configuration. For high volume access to the client endpoints, particularly endpoints streaming file contents, direct access to the node should be preferred as it avoids adding additional load to the servers.
When accessing the endpoints via the server, if the desired node is ambiguous
based on the URL, an additional ?node_id
query parameter must be provided to
disambiguate.
The /node
endpoints provide node information that
are retried from Nomad servers.
Read Dynamic Node Metadata
This endpoint queries Node metadata on a specific Client agent and responds with the following fields:
Meta
(object)
- The Node metadata that will be registered with the Nomad servers and used by the scheduler (after up to 10 seconds of delay for batching). This is the merged version of theStatic
andDynamic
fields.Static
(object)
- The Node metadata set in the Client agent's configuration file. Only loaded when an agent starts.Dynamic
(object)
- The Node metadata set via the API (see below). UnlikeMeta
andStatic
, this object may containnull
values to differentiate "unset" keys from keys with an empty string value (""
).
Note that /v1/node/:node_id
only contains the Meta
object.
It may take up to 10 seconds for dynamic Node metadata to be sent to Servers
and visible through the Node API. Use the Node API to see the version of Node
metadata the scheduler uses.
Method | Path | Produces |
---|---|---|
GET | /v1/client/metadata | application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | node:read |
Parameters
:node_id
(string: <optional>)
- Specifies the node to query. This is required when the endpoint is being accessed via a server. Defaults to the node recieving the request otherwise. This is specified as part of the URL. Note, this must be the full node ID, not the short 8-character one. This must be specified as part of the path (?node_id=...
).
Sample Request
Sample Response
Formatted by appending ?pretty
above.
Sample Request
Update Dynamic Node Metadata
This endpoint updates dynamic Node metadata on a specific Client agent. Since
dynamic Node metadata is only periodically synchronized to Nomad Servers, the
Meta
returned in this API may not be reflected in the
/v1/node/:node_id
API for up to 10 seconds. Scheduling uses
the Node API version of Meta
.
For convenience this endpoint returns the same response as a GET.
Method | Path | Produces |
---|---|---|
POST | /v1/client/metadata | application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | node:write |
Parameters
NodeID
or:node_id
(string: <optional>)
- Specifies the node to query. This is required when the endpoint is being accessed via a server. Defaults to the node recieving the request otherwise. This is specified as part of the URL. Note, this must be the full node ID, not the short 8-character one. This may be specified as part of the path (?node_id=...
) or request (NodeID: "..."
).Meta
(object: <required>)
- Specifies the Node metadata keys to update. Only specified keys are updated.<key>
(string: <optional>)
- Specifies a metadata key to update to a particular value. Since""
is a valid value and distinct from unset, thenull
value is used to mark a key as unset. Keys must be valid dotted HCL identifiers. For exampleconnect.log_level
is a valid key whilesome/path
is not.
Sample Payload
Sample Request
Assuming the above payload is in a file called meta.json
.
Sample Response
Formatted by appending ?pretty
above.
Read Stats
This endpoint queries the actual resources consumed on a node. The API endpoint is hosted by the Nomad client and requests have to be made to the nomad client whose resource usage metrics are of interest.
Method | Path | Produces |
---|---|---|
GET | /v1/client/stats | application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | node:read |
Parameters
node_id
(string: <optional>)
- Specifies the node to query. This is required when the endpoint is being accessed via a server. This is specified as part of the URL. Note, this must be the full node ID, not the short 8-character one. This is specified as part of the path.
Sample Request
Sample Response
Read Allocation Statistics
The client allocation
endpoint is used to query the actual resources consumed
by an allocation.
Method | Path | Produces |
---|---|---|
GET | /v1/client/allocation/:alloc_id/stats | application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-job |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.
Sample Request
Sample Response
Read File
This endpoint reads the contents of a file in an allocation directory.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/cat/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.path
(string: "/")
- Specifies the path of the file to read, relative to the root of the allocation directory.
Sample Request
Sample Response
Read File at Offset
This endpoint reads the contents of a file in an allocation directory at a particular offset and limit.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/readat/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.path
(string: "/")
- Specifies the path of the file to read, relative to the root of the allocation directory.offset
(int: <required>)
- Specifies the byte offset from where content will be read.limit
(int: <required>)
- Specifies the number of bytes to read from the offset.
Sample Request
Sample Response
Stream File
This endpoint streams the contents of a file in an allocation directory.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/stream/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.path
(string: "/")
- Specifies the path of the file to read, relative to the root of the allocation directory.follow
(bool: true)
- Specifies whether to tail the file.offset
(int: <required>)
- Specifies the byte offset from where content will be read.origin
(string: "start|end")
- Applies the relative offset to either the start or end of the file.
Sample Request
Sample Response
Field Reference
The return value is a stream of frames. These frames contain the following fields:
Data
- A base64 encoding of the bytes being streamed.FileEvent
- An event that could cause a change in the streams position. The possible values are "file deleted" and "file truncated".Offset
- Offset is the offset into the stream.File
- The name of the file being streamed.
Stream Logs
This endpoint streams a task's stderr/stdout logs. Note that if logging is set to disabled=true for the task, this endpoint will return a 404 error.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/logs/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-logs or namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.task
(string: <required>)
- Specifies the name of the task inside the allocation to stream logs from.follow
(bool: false)
- Specifies whether to tail the logs.type
(string: "stderr|stdout")
- Specifies the stream to stream.offset
(int: 0)
- Specifies the offset to start streaming from.origin
(string: "start|end")
- Specifies either "start" or "end" and applies the offset relative to either the start or end of the logs respectively. Defaults to "start".plain
(bool: false)
- Return just the plain text without framing. This can be useful when viewing logs in a browser.
Sample Request
Sample Response
Field Reference
The return value is a stream of frames. These frames contain the following fields:
Data
- A base64 encoding of the bytes being streamed.FileEvent
- An event that could cause a change in the streams position. The possible values are "file deleted" and "file truncated".Offset
- Offset is the offset into the stream.File
- The name of the file being streamed.
List Files
This endpoint lists files in an allocation directory.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/ls/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.path
(string: "/")
- Specifies the path of the file to read, relative to the root of the allocation directory.
Sample Request
Sample Response
Stat File
This endpoint stats a file in an allocation.
Method | Path | Produces |
---|---|---|
GET | /v1/client/fs/stat/:alloc_id | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:read-fs |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.path
(string: "/")
- Specifies the path of the file to read, relative to the root of the allocation directory.
Sample Request
Sample Response
GC Allocation
This endpoint forces a garbage collection of a particular, stopped allocation on a node. Note that the allocation will still exist on the server and appear in server responses.
Method | Path | Produces |
---|---|---|
GET | /v1/client/allocation/:alloc_id/gc | application/json |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | namespace:submit-job |
Parameters
:alloc_id
(string: <required>)
- Specifies the allocation ID to query. This is specified as part of the URL. Note, this must be the full allocation ID, not the short 8-character one. This is specified as part of the path.
Sample Request
GC All Allocation
This endpoint forces a garbage collection of all stopped allocations on a node.
Method | Path | Produces |
---|---|---|
GET | /v1/client/gc | text/plain |
The table below shows this endpoint's support for blocking queries and required ACLs.
Blocking Queries | ACL Required |
---|---|
NO | node:write |
Parameters
node_id
(string: <optional>)
- Specifies the node to target. This is required when the endpoint is being accessed via a server. This is specified as part of the URL. Note, this must be the full node ID, not the short 8-character one. This is specified as part of the path.
Sample Request