diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-15 16:18:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-15 16:18:36 +0100 |
commit | e025b43060e7d9841dfdc7c9bfca93c7d99241b4 (patch) | |
tree | 46c6e4b9b94116446c6e316799d10db61103bf07 /pkg/api/server/register_containers.go | |
parent | d914cc231a0b1b27f2f29dabc58bcb1b88e12822 (diff) | |
parent | d8d42512c15b32a9013938018cdc0f441561944e (diff) | |
download | podman-e025b43060e7d9841dfdc7c9bfca93c7d99241b4.tar.gz podman-e025b43060e7d9841dfdc7c9bfca93c7d99241b4.tar.bz2 podman-e025b43060e7d9841dfdc7c9bfca93c7d99241b4.zip |
Merge pull request #4872 from vrothberg/v2-stats
v2 api: stats improvements
Diffstat (limited to 'pkg/api/server/register_containers.go')
-rw-r--r-- | pkg/api/server/register_containers.go | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/pkg/api/server/register_containers.go b/pkg/api/server/register_containers.go index 711aecc84..95b986170 100644 --- a/pkg/api/server/register_containers.go +++ b/pkg/api/server/register_containers.go @@ -629,7 +629,30 @@ func (s *APIServer) RegisterContainersHandlers(r *mux.Router) error { // '500': // "$ref": "#/responses/InternalError" r.HandleFunc(VersionedPath("/libpod/containers/{name:..*}/start"), APIHandler(s.Context, handlers.StartContainer)).Methods(http.MethodPost) - r.HandleFunc(VersionedPath("/libpod/containers/{name:..*}/stats"), APIHandler(s.Context, libpod.StatsContainer)).Methods(http.MethodGet) + // swagger:operation GET /libpod/containers/{nameOrID}/stats containers statsContainer + // --- + // summary: Get stats for a container + // description: This returns a live stream of a container’s resource usage statistics. + // parameters: + // - in: path + // name: nameOrID + // required: true + // description: the name or ID of the container + // - in: query + // name: stream + // type: bool + // default: true + // description: Stream the output + // produces: + // - application/json + // responses: + // '200': + // description: no error + // '404': + // "$ref": "#/responses/NoSuchContainer" + // '500': + // "$ref": "#/responses/InternalError" + r.HandleFunc(VersionedPath("/libpod/containers/{name:..*}/stats"), APIHandler(s.Context, generic.StatsContainer)).Methods(http.MethodGet) r.HandleFunc(VersionedPath("/libpod/containers/{name:..*}/top"), APIHandler(s.Context, handlers.TopContainer)).Methods(http.MethodGet) // swagger:operation POST /libpod/containers/{nameOrID}/unpause containers libpodUnpauseContainer // --- |