File: //usr/share/sysdig/chisels/v_containers.lua
--[[
Copyright (C) 2013-2018 Draios Inc dba Sysdig.
This file is part of sysdig.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--]]
view_info =
{
id = "containers",
name = "Containers",
description = "List all the containers running on this machine, and the resources that each of them uses.",
tips = {"Select a container and click enter to drill down into it. At that point, you will be able to access several views that will show you the details of the selected container."},
tags = {"wsysdig"},
view_type = "table",
applies_to = {"", "evt.res", "k8s.pod.id", "k8s.rc.id", "k8s.rs.id", "k8s.svc.id", "k8s.ns.id", "marathon.app.id", "marathon.group.name", "mesos.task.id", "mesos.framework.name"},
filter = "container.name != host",
use_defaults = true,
drilldown_target = "procs",
columns =
{
{
name = "NA",
field = "thread.tid",
is_key = true
},
{
name = "CPU",
field = "thread.cpu",
description = "Amount of CPU used by the container.",
colsize = 8,
aggregation = "AVG",
groupby_aggregation = "SUM",
is_sorting = true
},
{
name = "PROCS",
field = "evt.count.procinfo",
description = "Number of processes currently running inside the container.",
aggregation = "AVG",
groupby_aggregation = "SUM",
colsize = 8,
},
{
name = "THREADS",
field = "evt.count.threadinfo",
description = "Number of threads currently running inside the container.",
aggregation = "AVG",
groupby_aggregation = "SUM",
colsize = 8
},
{
name = "VIRT",
field = "thread.vmsize.b",
description = "Total virtual memory for the process.",
aggregation = "MAX",
groupby_aggregation = "SUM",
colsize = 9
},
{
name = "RES",
field = "thread.vmrss.b",
description = "Resident non-swapped memory for the process.",
aggregation = "MAX",
groupby_aggregation = "SUM",
colsize = 9
},
{
name = "FILE",
field = "evt.buflen.file",
description = "Total (input+output) file I/O bandwidth generated by the container, in bytes per second.",
colsize = 8,
aggregation = "TIME_AVG",
groupby_aggregation = "SUM"
},
{
name = "NET",
field = "evt.buflen.net",
description = "Total (input+output) network bandwidth generated by the container, in bytes per second.",
colsize = 8,
aggregation = "TIME_AVG",
groupby_aggregation = "SUM"
},
{
name = "NA",
field = "container.id",
is_groupby_key = true
},
{
name = "ENGINE",
field = "container.type",
description = "Container type.",
colsize = 8
},
{
name = "IMAGE",
field = "container.image",
description = "Container image name.",
colsize = 30
},
{
name = "ID",
field = "container.id",
description = "Container ID. The format of this column depends on the containerization technology. For example, Docker ID are 12 characters hexadecimal digit strings.",
colsize = 13
},
{
name = "NAME",
field = "container.name",
description = "Name of the container.",
colsize = 0
},
},
actions =
{
{
hotkey = "a",
command = "docker attach %container.id",
description = "docker attach"
},
{
hotkey = "b",
command = "docker exec -i -t %container.id /bin/bash",
description = "bash shell",
wait_finish = false
},
{
hotkey = "f",
command = "docker logs -f %container.id",
description = "follow logs"
},
{
hotkey = "h",
command = "docker history %container.image",
description = "image history"
},
{
hotkey = "i",
command = "docker inspect %container.id",
description = "docker inspect"
},
{
hotkey = "k",
command = "docker kill %container.id",
description = "docker kill",
ask_confirmation = true
},
{
hotkey = "l",
command = "docker logs %container.id",
description = "docker logs"
},
{
hotkey = "s",
command = "docker stop %container.id",
description = "docker stop"
},
{
hotkey = "z",
command = "docker pause %container.id",
description = "docker pause"
},
{
hotkey = "u",
command = "docker unpause %container.id",
description = "docker unpause"
},
{
hotkey = "w",
command = "docker wait %container.id",
description = "docker wait"
},
},
}