Github user kkhatua commented on a diff in the pull request:
https://github.com/apache/drill/pull/953#discussion_r140927942
--- Diff: exec/java-exec/src/main/resources/rest/profile/list.ftl ---
@@ -37,7 +37,15 @@
<strong>No running queries.</strong>
</div>
</#if>
- <h3>Completed Queries</h3>
+ <table width="100%">
+ <tr>
+ <td><h3>Completed Queries</h3></td>
+ <td align="right">
+ <form action="/profiles" method="get"><span title="Max number of
profiles to list"># Profiles: </span>
+ <input type="text" size="7" name="max" value="20">
+ <input type="submit" value="Fetch">
+ </form></td>
+ </tr></table>
--- End diff --
@paul-rogers I agree. Ideally, this should all be paginated, but we're a
while away from that.
I'll modify the commit to display
```
Completed Queries Show [ 20] [Go]
```
And remove mentioning the value of 20. This modification came up because
Saurabh couldn't figure out the option of reloading more profiles until he
asked me.
---