forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTopContainerCmdExec.java
More file actions
37 lines (28 loc) · 1.39 KB
/
Copy pathTopContainerCmdExec.java
File metadata and controls
37 lines (28 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.github.dockerjava.core.exec;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.core.type.TypeReference;
import com.github.dockerjava.api.command.TopContainerCmd;
import com.github.dockerjava.api.command.TopContainerResponse;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.MediaType;
import com.github.dockerjava.core.WebTarget;
public class TopContainerCmdExec extends AbstrSyncDockerCmdExec<TopContainerCmd, TopContainerResponse> implements
TopContainerCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(TopContainerCmdExec.class);
public TopContainerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected TopContainerResponse execute(TopContainerCmd command) {
WebTarget webResource = getBaseResource().path("/containers/{id}/top").resolveTemplate("id",
command.getContainerId());
if (!StringUtils.isEmpty(command.getPsArgs())) {
webResource = webResource.queryParam("ps_args", command.getPsArgs());
}
LOGGER.trace("GET: {}", webResource);
return webResource.request().accept(MediaType.APPLICATION_JSON).get(new TypeReference<TopContainerResponse>() {
});
}
}