码迷,mamicode.com
首页 > 其他好文 > 详细

自定义监控脚本--监控端口

时间:2019-06-14 12:34:58      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:scripts   color   array   端口   discovery   ash   ++   输出   span   

#!/bin/bash

port_array=(`netstat -ntpl|egrep -i "$1"|awk {print $4}|awk -F: {if ($NF~/^[0-9]*$/) print $NF}|sort|uniq`)
length=${#port_array[@]}

printf "{\n"
printf \t‘"\"data\":["
for ((i=0; i<$length; i++))
do
    printf \n\t\t{
    printf "\"{#TCP_PORT}\":\"${port_array[$i]}\""
    if [ $i -lt $[$length - 1] ]; then
        printf ,
    fi
done

printf "\n\t]\n"
printf "}\n"

输出

[root@localhost alterscripts]# ./discovery_port.sh   
{
        "data":[
                {"{#TCP_PORT}":"10050",
                {"{#TCP_PORT}":"2371",
                {"{#TCP_PORT}":"25",
                {"{#TCP_PORT}":"3306"
        ]
}

 

自定义监控脚本--监控端口

标签:scripts   color   array   端口   discovery   ash   ++   输出   span   

原文地址:https://www.cnblogs.com/dingzp/p/11022485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!