linux服务器监控工具

监控一个进程发出和接收的系统调用 -- strace

命令行监控原始网络通信 -- tcpdump

跟踪打开的文件 -- lsof

sysdig的诞生 -- 集strace   tcpdump   lsof于一身的工具,使用lua集成的工具。

可以分析linux系统的现状,且可一把系统状态保存到一个转存文件用于离线检测。

可以自己使用脚本扩展其他功能。

sysdig安装脚本下载地址:

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

sysdig的安装脚本内容:

#!/bin/bash
#
# Copyright (C) 2013-2014 Draios inc.
#
# This file is part of sysdig.
#
# sysdig is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# sysdig is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with sysdig.  If not, see <http://www.gnu.org/licenses/>.
#
set -e

function install_rpm {
    if ! hash curl > /dev/null 2>&1; then
        echo "* Installing curl"
        yum -q -y install curl
    fi

    if ! yum -q list dkms > /dev/null 2>&1; then
        echo "* Installing EPEL repository (for DKMS)"
        if [ $VERSION -eq 7 ] && [ $DISTRO = "centos" ]; then
            rpm --quiet -i http://mirrors.kernel.org/centos/7/extras/x86_64/Packages/epel-release-7-5.noarch.rpm
        elif [ $VERSION -eq 7 ]; then
            rpm --quiet -i http://mirrors.kernel.org/fedora-epel/7/x86_64/e/epel-release-7-5.noarch.rpm
        else
            rpm --quiet -i http://mirrors.kernel.org/fedora-epel/6/i386/epel-release-6-8.noarch.rpm
        fi
    fi

    echo "* Installing Sysdig public key"
    rpm --quiet --import https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public
    echo "* Installing Sysdig repository"
    curl -s -o /etc/yum.repos.d/draios.repo http://download.draios.com/stable/rpm/draios.repo
    echo "* Installing kernel headers"
    KERNEL_VERSION=$(uname -r)
    if [[ $KERNEL_VERSION == *PAE* ]]; then
        yum -q -y install kernel-PAE-devel-${KERNEL_VERSION%.PAE} || kernel_warning
    elif [[ $KERNEL_VERSION == *stab* ]]; then
        # It‘s OpenVZ kernel and we should install another package
        yum -q -y install vzkernel-devel-$KERNEL_VERSION || kernel_warning
    else
        yum -q -y install kernel-devel-$KERNEL_VERSION || kernel_warning
    fi
    echo "* Installing Sysdig"
    yum -q -y install sysdig
}

function install_deb {
    export DEBIAN_FRONTEND=noninteractive

    if ! hash curl > /dev/null 2>&1; then
        echo "* Installing curl"
        apt-get -qq -y install curl < /dev/null
    fi

    echo "* Installing Sysdig public key"
    curl -s https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public | apt-key add -
    echo "* Installing Sysdig repository"
    curl -s -o /etc/apt/sources.list.d/draios.list http://download.draios.com/stable/deb/draios.list
    apt-get -qq update < /dev/null
    echo "* Installing kernel headers"
    apt-get -qq -y install linux-headers-$(uname -r) < /dev/null || kernel_warning
    echo "* Installing Sysdig"
    apt-get -qq -y install sysdig < /dev/null
}

function unsupported {
    echo ‘Unsupported operating system. Please consider writing to the mailing list at‘
    echo ‘https://groups.google.com/forum/#!forum/sysdig or trying the manual‘
    echo ‘installation.‘
    exit 1
}

function kernel_warning {
    echo "Unable to find kernel development files for the current kernel version" $(uname -r)
    echo "This usually means that your system is not up-to-date or you installed a custom kernel version."
    echo "The installation will continue but you‘ll need to install these yourself in order to use sysdig."
    echo ‘Please write to the mailing list at https://groups.google.com/forum/#!forum/sysdig‘
    echo "if you need further assistance."
}

if [ $(id -u) != 0 ]; then
    echo "Installer must be run as root (or with sudo)."
    exit 1
fi

echo "* Detecting operating system"

ARCH=$(uname -m)
if [[ ! $ARCH = *86 ]] && [ ! $ARCH = "x86_64" ]; then
    unsupported
fi

if [ -f /etc/debian_version ]; then
    if [ -f /etc/lsb-release ]; then
        . /etc/lsb-release
        DISTRO=$DISTRIB_ID
        VERSION=${DISTRIB_RELEASE%%.*}
    else
        DISTRO="Debian"
        VERSION=$(cat /etc/debian_version | cut -d‘.‘ -f1)
    fi

    case "$DISTRO" in

        "Ubuntu")
            if [ $VERSION -ge 10 ]; then
                install_deb
            else
                unsupported
            fi
            ;;

        "LinuxMint")
            if [ $VERSION -ge 9 ]; then
                install_deb
            else
                unsupported
            fi
            ;;

        "Debian")
            if [ $VERSION -ge 6 ]; then
                install_deb
            elif [[ $VERSION == *sid* ]]; then
                install_deb
            else
                unsupported
            fi
            ;;

        *)
            unsupported
            ;;

    esac

elif [ -f /etc/system-release-cpe ]; then
    DISTRO=$(cat /etc/system-release-cpe | cut -d‘:‘ -f3)
    VERSION=$(cat /etc/system-release-cpe | cut -d‘:‘ -f5 | cut -d‘.‘ -f1 | sed ‘s/[^0-9]*//g‘)

    case "$DISTRO" in

        "oracle" | "centos" | "redhat")
            if [ $VERSION -ge 6 ]; then
                install_rpm
            else
                unsupported
            fi
            ;;

        "amazon")
            install_rpm
            ;;

        "fedoraproject")
            if [ $VERSION -ge 13 ]; then
                install_rpm
            else
                unsupported
            fi
            ;;

        *)
            unsupported
            ;;

    esac

else
    unsupported
fi

具体的使用方法:http://blog.jobbole.com/98717/

时间: 2024-10-13 01:14:47

linux服务器监控工具的相关文章

4个Linux服务器监控工具

下面是我想呈现给你的4个强大的监控工具. htop – 交互式进程查看器 你可能知道在机器上查看实时进程的标准工具top.如果不知道,请运行$ top看看,运行$ man top阅读帮助手册. htop是top的扩展版本,有更丰富的概貌(例如全命令.可视化.图形用户界面gui和用户界面ui),有鼠标点击交互(译者注:看下面的截图,指的是最上面的列标题如CPU%.MEM%等可以通过鼠标点击切换以显示不同的功能),也有许多的指导教你如何做进程管理. 安装该命令并尝试运行: $ sudo apt-ge

10个免费的服务器监控工具

监控你的WEB服务器或者WEB主机运行是否正常与健康是非常重要的.你要确保用户始终可以打开你的网站并且网速不慢.服务器监控工具允许你收集和分析有关你的Web服务器的数据. 有许多非常好的服务器监控解决方案,而为了省去你寻找方案的麻烦,这里我为你列出了我能找到的最好的服务器监控工具. 1. Performance Co-Pilot Performance Co-Pilot,简称 PCP,是一个系统性能和分析框架.它从多个主机整理数据并实时的分析,帮你识别不正常的表现模式.它也提供 API 让你设计

免费的服务器监控工具

监控你的WEB服务器或者WEB主机运行是否正常与健康是非常重要的.你要确保用户始终可以打开你的网站并且网速不慢.服务器监控工具允许你收集和分析有关你的Web服务器的数据. 有许多非常好的服务器监控解决方案,而为了省去你寻找方案的麻烦,这里我为你列出了我能找到的最好的服务器监控工具. 1. Performance Co-Pilot Performance Co-Pilot,简称 PCP,是一个系统性能和分析框架.它从多个主机整理数据并实时的分析,帮你识别不正常的表现模式.它也提供 API 让你设计

最好的10个服务器监控工具

百万红包.火热开启!!!有你更精彩! 监控你的WEB服务器或者WEB主机运行是否正常与健康是非常重要的.你要确保用户始终可以打开你的网站并且网速不慢.服务器监控工具允许你收集和分析有关你的Web服务器的数据. 有许多非常好的服务器监控解决方案,而为了省去你寻找方案的麻烦,这里我为你列出了我能找到的最好的服务器监控工具.1. Performance Co-Pilot Performance Co-Pilot,简称 PCP,是一个系统性能和分析框架.它从多个主机整理数据并实时的分析,帮你识别不正常的

10 个免费的服务器监控工具

监控你的WEB服务器或者WEB主机运行是否正常与健康是非常重要的.你要确保用户始终可以打开你的网站并且网速不慢.服务器监控工具允许你收集和分析有关你的Web服务器的数据. 有许多非常好的服务器监控解决方案,而为了省去你寻找方案的麻烦,这里我为你列出了我能找到的最好的服务器监控工具. 1. Performance Co-Pilot Performance Co-Pilot,简称 PCP,是一个系统性能和分析框架.它从多个主机整理数据并实时的分析,帮你识别不正常的表现模式.它也提供 API 让你设计

你不得不了解的10款服务器监控工具

你不得不了解的10款服务器监控工具 背景 监控Web服务器或Web主机的运行状况和正常运行非常重要.如果希望确保您的网站可用性在您的控制之中,那你就需要收集服务器各种性能数据以供分析和调整.以下是收集的常用大多数服务器监控组件解决方案. Performance Co-Pilot,(https://pcp.io/)简称PCP,是一个系统性能分析框架.它收集并分析来自多个主机的各种性能指标.可以通过它观察指标走向的趋势,以帮助您快速识别异常所在点.它提供API,可依据此来开发自定义的监控和报告解决方

你必须了解的10款服务器监控工具

你不得不了解的10款服务器监控工具 背景 监控Web服务器或Web主机的运行状况和正常运行非常重要.如果希望确保您的网站可用性在您的控制之中,那你就需要收集服务器各种性能数据以供分析和调整.以下是收集的常用大多数服务器监控组件解决方案. Performance Co-Pilot,简称PCP,是一个系统性能分析框架.它收集并分析来自多个主机的各种性能指标.可以通过它观察指标走向的趋势,以帮助您快速识别异常所在点.它提供API,可依据此来开发自定义的监控和报告解决方案. Anturis是一个基于云的

Linux服务器性能监控工具Glances 安装过程与简单介绍

一.Glances: Glances 是一款非常不错的跨平台的性能监控工具,提供了CPU.CPU队列.内存.虚拟内存.网络.I/O和最占用服务器的资源的进程列表等,应该就这些了吧,提供了这些 指标的监控信息,并且在运行时会根据资源的占用情况适用不同的颜色标注其重要程度,非常直观,下面是使用中的截图: 二.Glances安装:   Glances的安装还是比较简单方便的,由于Glances是由python编写的,最好适用python的库管理工具pip来自动安装.并且使用工具 也将安装过程简单的.

Linux服务器性能监控工具sar二

服务器高负载因何而起? 下列项目的过度使用会直接导致高负载问题: CPU 内存(包括虚拟内存) 磁盘I/O 该如何检查这些项目? 这取决于大家是要审查当前资源使用情况还是历史资源使用情况.当然,在本文中我们将从这两方面进行探讨. 关于sar的简要说明 历史资源使用情况可通过sar工具查看,该工具在默认情况下应该通过sysstat软件包安装在所有cPanel服务器当中.只要通过cron命令对sysstat进行周期性执行(/etc/cron.d/sysstat),服务器的运行状态数据就会被收集起来.