# Alluxio Worker REST API Documentation
HTTP://[Alluxio Worker Hostname]/api/v1
The Alluxio Workers are processes which provide clients access to the data exposed by the Alluxio System.
# APIs
## /worker/info
### GET
Get general Alluxio Worker service information
#### Request
##### Parameters
Name |
Located in |
Required |
Description |
Default |
Schema |
raw_configuration |
query |
no |
|
- |
boolean |
#### Response
**Content-Type: ** application/json
| Status Code | Reason | Response Model |
|-------------|-------------|----------------|
| 200 | successful operation | AlluxioWorkerInfo|
# Definitions
## AlluxioWorkerInfo
name |
type |
required |
description |
example |
metrics |
object
|
optional |
- |
|
tierPaths |
object
|
optional |
- |
|
rpcAddress |
string
|
optional |
- |
|
tierCapacity |
object
|
optional |
- |
|
capacity |
Capacity
|
optional |
- |
|
startTimeMs |
integer (int64)
|
optional |
- |
|
uptimeMs |
integer (int64)
|
optional |
- |
|
version |
string
|
optional |
- |
|
configuration |
object
|
optional |
- |
|
## Capacity
name |
type |
required |
description |
example |
total |
integer (int64)
|
optional |
- |
|
used |
integer (int64)
|
optional |
- |
|