open-nomad/website/source/docs/http/client-fs-stat.html.md
2016-06-14 03:00:53 +02:00

1.1 KiB

layout page_title sidebar_current description
http HTTP API: /v1/client/fs/stat docs-http-client-fs-stat The '/v1/client/fs/stat` endpoint is used to stat a file in an allocation directory.

/v1/client/fs/stat

The /fs/stat endpoint is used to stat a file in an allocation directory. This API endpoint is hosted by the Nomad client and requests have to be made to the Nomad client where the particular allocation was placed.

GET

Description
Stat a file in an allocation directory.
Method
GET
URL
`/v1/client/fs/stat/`
Parameters
  • path required The path of the file relative to the root of the allocation directory.
Returns
```javascript
{
  "Name": "redis-syslog-collector.out",
  "IsDir": false,
  "Size": 96,
  "FileMode": "-rw-rw-r--",
  "ModTime": "2016-03-15T15:40:56.822238153-07:00"
}
```