小命令 sysdig

详情请自行google

安装方法:

curl -s https://s3.amazonaws.com/download.draios.com/stable/install-sysdig | bash

执行 sysdig -cl | less出现的结果

Category: Application

---------------------

httplog         HTTP requests log

httptop         Top HTTP requests

memcachelog     memcached requests log

Category: CPU Usage

-------------------

spectrogram     Visualize OS latency in real time.

subsecoffset    Visualize subsecond offset execution time.

topcontainers_cpu

Top containers by CPU usage

topprocs_cpu    Top processes by CPU usage

Category: Errors

----------------

topcontainers_error

Top containers by number of errors

topfiles_errors Top files by number of errors

topprocs_errors top processes by number of errors

Category: I/O

-------------

echo_fds        Print the data read and written by processes.

fdbytes_by      I/O bytes, aggregated by an arbitrary filter field

fdcount_by      FD count, aggregated by an arbitrary filter field

fdtime_by       FD time group by

iobytes         Sum of I/O bytes on any type of FD

iobytes_file    Sum of file I/O bytes

spy_file        Echo any read/write made by any process to all files. Optionall

y, you can provide the name of one file to only intercept reads

/writes to that file.

stderr          Print stderr of processes

stdin           Print stdin of processes

stdout          Print stdout of processes

topcontainers_file

Top containers by R+W disk bytes

topfiles_bytes  Top files by R+W bytes

topfiles_time   Top files by time

topprocs_file   Top processes by R+W disk bytes

Category: Logs

--------------

spy_logs        Echo any write made by any process to a log file. Optionally, e

xport the events around each log message to file.

spy_syslog      Print every message written to syslog. Optionally, export the e

vents around each syslog message to file.

Category: Misc

--------------

around          Export to file the events around the time range where the given

filter matches.

Category: Net

-------------

iobytes_net     Show total network I/O bytes

spy_ip          Show the data exchanged with the given IP address

spy_port        Show the data exchanged using the given IP port number

topconns        Top network connections by total bytes

topcontainers_net

Top containers by network I/O

topports_server Top TCP/UDP server ports by R+W bytes

topprocs_net    Top processes by network I/O

Category: Performance

---------------------

bottlenecks     Slowest system calls

fileslower      Trace slow file I/O

netlower        Trace slow network I/0

proc_exec_time  Show process execution time

scallslower     Trace slow syscalls

topscalls       Top system calls by number of calls

topscalls_time  Top system calls by time

Category: Security

------------------

list_login_shells

List the login shell IDs

shellshock_detect

print shellshock attacks

spy_users       Display interactive user activity

Category: System State

----------------------

lscontainers    List the running containers

lsof            List (and optionally filter) the open file descriptors.

netstat         List (and optionally filter) network connections.

ps              List (and optionally filter) the machine processes.

Category: Tracers

-----------------

tracers_2_statsd

Export spans duration as statds metrics.

Use the -i flag to get detailed information about a specific chisel

时间: 2024-10-08 23:46:00

小命令 sysdig的相关文章

Linux小命令(1)yum

Linux命令(1)yum 使用最简易安装CentOS后.开启了网卡基本就可以使用yum在Linux中下载安装软件了.Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE.CentOS中的Shell前端软件包管理器.基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装. 命令格式如下: #yum [options] [command] [package ...] 常用命令: #yum grouplikst 查询可能批量安

博客1: 将相关的小命令进行全析了解      

对于文件的相关操作:    1.首先你要查看,那么相关的查看文件的命令是:            cat,tac,head,tail,more,less    这其中包括了多功能查看一个文件的选项,可以查看man文档.    2.那么我们知道,一个文件它有分为两部分,一部分是matadata,另一部分就是我们熟知的data.      上文中介绍了如何查看正文data的方法,下面我们介绍如何管理matadata的相关命令:          touch,stat    对于时间戳的理解,及其命令

Linux小命令(4)ls

Linux命令(4)ls ls是列出文件或者目录的命令,ls是Linux下最常用的命令.ls就是list的缩写,缺省下ls用来打印当前的目录清单,如果ls指定其他目录,那么就会显示指定目录里的文件及文件夹清单了.通过ls命令不仅可以查看linux文件夹包含的文件,而且可以查看文件权限,ls命令在日常的Linux操作中用的很多. 下面举了几个常用的ls的命令.详细的可以通过#man ls去查O(∩_∩)O~ ? 命令格式: #ls [-la1Rh] [路径] ? 常用参数: #ls 列出目录和文件

电脑木马的三个小命令

一.检测网络连接 如果你怀疑自己的计算机上被别人安装了木马,或者是中了病毒,但是手里没有完善的工具来检测是不是真有这样的事情发生,那可以使用Windows自带的网络命令来看看谁在连接你的计算机. 具体的命令格式是:netstat -an这个命令能看到所有和本地计算机建立连接的IP,它包含四个部分——proto(连接方式).local address(本地连接地址).foreign address(和本地建立连接的地址).state(当前端口状态).通过这个命令的详细信息,我们就可以完全监控计算机

【小命令大作用】第三篇 ls 命令 - 查看目录或文件

ls命令查看目录或文件 [语法] ls [选项] (路径) [常用选项] -l    长文本查看文件=windows的右键属性 -d    查看目录 PS:一般配合-l使用 -a    查看目录下所有文件(包括隐藏文件) -i    显示索引号(inode) -F    给文件加标识 -t    以文件修改时间排序 -r    倒序排列 -k    以K为单位显示大小 [实例] 查看/etc/最近修改的文件并以长格式显示 [[email protected] ~]# ls -lrt /etc/ 

Linux小命令(3)cat

Linux命令(3)cat Cat是查看文件内容 ? 命令格式:cat file 常用参数说明: -n或-nimber由1开始对所有输出的行数编号. 例子: Cat /etc/passwd ? -b或-number-nonblank和-n相似,只不过对于空白行不编号. 例子: Cat /etc/passwd ? ? -s或-spueeze-blank当遇到有连续两行以上的空白行,就代换为一行的空白行 ? 首先进入home目录,创建几个文件用来测试,并且输入信息 #cd ~????????????

我的常用linux小命令

这里并不是系统详细介绍每一个Linux命令,仅仅是记录本人在平时工作中经常用到的一些比较基础的命令及相关的参数,同时用了一些简单的例子来说明这些命令的用途,以及如何用多种命令来实现同一种功能. 1.ls命令 要显示当前目录下的文件列表时,我经常就使用ls命令的以下三个参数. -l 使用长列表格式 -h 文件大小以人可读的方式打印 -t 以最后修改时间排序,最新的放在最前 使用例子,如何显示当前文件夹下的目录? 方法1: ls -l | grep '^d' 方法2: ls -l | awk '/^

Linux下提权常用小命令

有些新手朋友在拿到一个webshell后如果看到服务器是Linux或Unix操作系统的就直接放弃提权,认为Linux或Unix下的提权很难,不是大家能做的,其实Linux下的提权并没有很多人想象的那么难,你真去尝试做了,也许你就会发现Linux下的提权并不难,尤其是一些简单的提权方法是很容易学会的.Linux下的提权我知道的比较简单的方法都是在命令行下完成的,很多新手叉子可能根本没接触过Linux下的一些常用命令,今天危险漫步就给大家介绍一些Linux下提权过程中常用到的Linux命令,由于我也

【小命令大作用】cd 命令

[小命令大作用]cd 命令 cd命令可以说是linux中最常用的命令,那么下面来看看你所熟悉又陌生的cd. [命令格式] cd (目录名) [命令功能] cd的主要就是切换目录层次,到达指定目录. [使用实例] 1.切换至当前用户的家目录. [[email protected] ~]# cd ~ [[email protected] ~]# pwd /root 扩展:~代表当前用户的家目录,pwd显示当前所在目录. 2.接题1,切换到上级目录.