简体   繁体   English

Munin 图形的含义

[英]Munin Graphs meaning

I've been using Munin for some days and I think it's very interesting information, but I don't understand some of the graphs, and how they can be used/read to get information to improve system.我使用 Munin 已经有几天了,我认为这是非常有趣的信息,但我不明白一些图表,以及如何使用/阅读它们来获取信息以改进系统。

The ones I don't understand are:我不明白的是:

Disk
Disk throughput per device
Inode usage in percent
IOstat
Firewall Throughput

Processes
Fork rate
Number of threads
VMstat

System
Available entropy
File table usage
Individual interrupts
Inode table usage
Interrupts and context switches

Ty!泰!

Munin creates graphs that enable you to see trends. Munin 创建图表,使您能够看到趋势。 This is very useful to see if a change you made doesn't negatively impact the performance of the system.这对于查看您所做的更改是否不会对系统性能产生负面影响非常有用。

Disk磁盘

Disk throughput per device & IOstat The amount of data written or read from a disk device.每个设备的磁盘吞吐量和 IOstat从磁盘设备写入或读取的数据量。 Disks are always slow compared to memory.与 memory 相比,磁盘总是很慢。 A lot of disk reads could for example indicate that your database server doesn't have enough RAM.例如,大量磁盘读取可能表明您的数据库服务器没有足够的 RAM。

Inode usage in percent Every filesystem has a index where information about the files is stored, like name, permissions and location on the disk. Inode 使用百分比每个文件系统都有一个索引,其中存储了有关文件的信息,例如名称、权限和磁盘上的位置。 With many small files the space available to this index could run out.对于许多小文件,此索引的可用空间可能会用完。 If that happens no new files can be saved to that filesystem, even if there is enough space on the device.如果发生这种情况,即使设备上有足够的空间,也无法将新文件保存到该文件系统。

Firewall Throughput Just like it says, the amount of packets going though the iptables firewall.防火墙吞吐量正如它所说,通过 iptables 防火墙的数据包数量。 Often this firewall is active on all interfaces on the system.通常,此防火墙在系统上的所有接口上都处于活动状态。 This is only really interesting if you run munin on a router/firewall/gateway system.只有在路由器/防火墙/网关系统上运行 munin 时,这才是真正有趣的。

Processes流程

Fork rate Processes are created by forking a existing process into two processes.分叉率进程是通过将现有进程分叉成两个进程来创建的。 This is the rate at wich new processes are created.这是创建新进程的速率。

Number of threads The total number of processes running in the system.线程数 系统中运行的进程总数。

VMstat Usage of cpu time. VMstat CPU 时间的使用情况。

  • running: time spent running non-kernel code running:运行非内核代码所花费的时间
  • I/O sleep: Time spent waiting for IO I/O 睡眠:等待 IO 所花费的时间

System系统

Available entropy : The entropy is the measure of the random numbers available from /dev/urandom.可用熵:熵是对 /dev/urandom 中可用随机数的度量。 These random numbers are needed to create SSL connections.需要这些随机数来创建 SSL 连接。 If you create a large number of SSL connections this randomness pool could possibly run out of real random numbers.如果您创建大量 SSL 连接,则此随机池可能会用完真实随机数。

File table usage The total number of files open in the system.文件表使用情况系统中打开的文件总数。 If this number suddenly goes up there might be a program that is not releasing its file handles properly.如果此数字突然上升,则可能是某个程序未正确释放其文件句柄。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM