github.com/kardianos/nomad@v0.1.3-0.20151022182107-b13df73ee850/website/source/docs/commands/alloc-status.html.md.erb (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: alloc-status"
     4  sidebar_current: "docs-commands-alloc-status"
     5  description: >
     6    Display status and metadata about existing allocations
     7  ---
     8  
     9  # Command: alloc-status
    10  
    11  The `alloc-status` command displays status information and metadata about
    12  an existing allocation. It can be useful while debugging to reveal the
    13  underlying reasons for scheduling decisions or failures.
    14  
    15  ## Usage
    16  
    17  ```
    18  nomad alloc-status [options] <allocation>
    19  ```
    20  
    21  An allocation ID must be provided. This specific allocation will be queried
    22  and detailed information for it will be dumped.
    23  
    24  ## General Options
    25  
    26  <%= general_options_usage %>
    27  
    28  ## Examples
    29  
    30  ```
    31  nomad alloc-status 9f3276d6-c873-c0a3-81ae-247e8c665cbe
    32  ID                = 9f3276d6-c873-c0a3-81ae-247e8c665cbe
    33  EvalID            = dc186cc2-a9b2-218e-cc00-eea3d4eaccf4
    34  Name              = example.cache[0]
    35  NodeID            = <none>
    36  JobID             = example
    37  ClientStatus      = failed
    38  ClientDescription = <none>
    39  NodesEvaluated    = 1
    40  NodesFiltered     = 1
    41  NodesExhausted    = 0
    42  AllocationTime    = 15.242µs
    43  CoalescedFailures = 0
    44  
    45  ==> Status
    46  Allocation "9f3276d6-c873-c0a3-81ae-247e8c665cbe" status "failed" (1/1 nodes filtered)
    47    * Constraint "$attr.kernel.name = linux" filtered 1 nodes
    48  ```