Merge branch '20540-crunch-run-retry'
[arvados.git] / doc / admin / inspect.html.textile.liquid
1 ---
2 layout: default
3 navsection: admin
4 title: Inspecting active requests
5 ...
6
7 {% comment %}
8 Copyright (C) The Arvados Authors. All rights reserved.
9
10 SPDX-License-Identifier: CC-BY-SA-3.0
11 {% endcomment %}
12
13 Most Arvados services publish a snapshot of HTTP requests currently being serviced at @/_inspect/requests@. This can be useful for troubleshooting slow requests and understanding high server load conditions.
14
15 To access snapshots, services must be configured with a "management token":management-token.html. When accessing this endpoint, prefix the management token with @"Bearer "@ and supply it in the @Authorization@ request header.
16
17 In an interactive setting, use the @jq@ tool to format the JSON response.
18
19 <notextile><pre><code>curl -sfH "Authorization: Bearer <span class="userinput">your_management_token_goes_here</span>" "https://<span class="userinput">0.0.0.0:25107</span>/_inspect/requests" | jq .
20 </code></pre></notextile>
21
22 table(table table-bordered table-condensed table-hover){width:40em}.
23 |_. Component|_. Provides @/_inspect/requests@ endpoint|
24 |arvados-api-server||
25 |arvados-controller|✓|
26 |arvados-dispatch-cloud|✓|
27 |arvados-dispatch-lsf|✓|
28 |arvados-git-httpd||
29 |arvados-ws|✓|
30 |composer||
31 |keepproxy|✓|
32 |keepstore|✓|
33 |keep-balance|✓|
34 |keep-web|✓|
35 |workbench1||
36 |workbench2||
37
38 h2. Report fields
39
40 Most fields are self explanatory.
41
42 The @Host@ field reports the virtual host specified in the incoming HTTP request.
43
44 The @RemoteAddr@ field reports the source of the incoming TCP connection, which is typically a local address associated with the Nginx proxy service.
45
46 The @Elapsed@ field reports the number of seconds since the incoming HTTP request headers were received.
47
48 h2. Example response
49
50 <pre>
51 [
52   {
53     "RequestID": "req-1vzzj6nwrki0rd2hj08a",
54     "Method": "GET",
55     "Host": "tordo.arvadosapi.com",
56     "URL": "/arvados/v1/groups?order=name+asc&filters=[[%22owner_uuid%22,%22%3D%22,%22zzzzz-tpzed-aaaaaaaaaaaaaaa%22],[%22group_class%22,%22in%22,[%22project%22,%22filter%22]]]",
57     "RemoteAddr": "127.0.0.1:55822",
58     "Elapsed": 0.006363228
59   },
60   {
61     "RequestID": "req-1wrof2b2wlj5s1rao4u3",
62     "Method": "GET",
63     "Host": "tordo.arvadosapi.com",
64     "URL": "/arvados/v1/users/current",
65     "RemoteAddr": "127.0.0.1:55814",
66     "Elapsed": 0.04796585
67   }
68 ]
69 </pre>