summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/containers_top.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-15 16:51:46 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-15 17:08:22 +0100
commita65068aff8d0cd9fdb8993c20e609364eb1213af (patch)
tree5758bdaaff7fe9ac72cdd9fc2363ef85537c50b8 /pkg/api/handlers/containers_top.go
parent9d54815c2690353a295b602b67084fd1f3c095e8 (diff)
downloadpodman-a65068aff8d0cd9fdb8993c20e609364eb1213af.tar.gz
podman-a65068aff8d0cd9fdb8993c20e609364eb1213af.tar.bz2
podman-a65068aff8d0cd9fdb8993c20e609364eb1213af.zip
api: utils: add an `IsLibpodRequest` handler
Add a hanlder to figure out if the specified http request came through a libpod endpoint. A first user is the top endpoint which has a different default value for `ps_args` depending if the request came through the docker or libpod endpoint. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/api/handlers/containers_top.go')
-rw-r--r--pkg/api/handlers/containers_top.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/api/handlers/containers_top.go b/pkg/api/handlers/containers_top.go
index 1a310262c..6b7688eb0 100644
--- a/pkg/api/handlers/containers_top.go
+++ b/pkg/api/handlers/containers_top.go
@@ -15,10 +15,14 @@ func TopContainer(w http.ResponseWriter, r *http.Request) {
runtime := r.Context().Value("runtime").(*libpod.Runtime)
decoder := r.Context().Value("decoder").(*schema.Decoder)
+ defaultValue := "-ef"
+ if utils.IsLibpodRequest(r) {
+ defaultValue = ""
+ }
query := struct {
PsArgs string `schema:"ps_args"`
}{
- PsArgs: "-ef",
+ PsArgs: defaultValue,
}
if err := decoder.Decode(&query, r.URL.Query()); err != nil {
utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest,