第三十二课预习笔记--shell(2)

20.16 shell中的函数

函数就是把一段代码整理到了一个小单元中,并给这个小单元起一个名字,当用到这段代码时直接调用这个小单元的名字即可。

格式:

function f_name() {                   

    command           

}

函数必须要放在最前面,function 可以省略。
示例1 
#!/bin/bash
input_1() {
    echo "this is the first paramater $1" 

    echo "this is the second paramater $2"

    echo "this is the third paramater $3"

    echo "this is the script paramater $0"

    echo "the number of  paramater $#"
}

input_1 a b c
其中:$1、$2、$3表示函数的参数;$0表示脚本名字;$#表示参数的总个数。

执行脚本:

[root@liang-00 shell]# sh func1.sh 
the first parameter is a
the second parameter is b
the third parameter is c
the script parameter is func1.sh
the number of  parameters is 3
[root@liang-00 shell]# 

当有更多参数时:

input_1 a b c d e

[root@liang-00 shell]# sh func1.sh 
the first parameter is a
the second parameter is b
the third parameter is c
the script parameter is func1.sh
the number of  parameters is 5
[root@liang-00 shell]# 

还可以指定脚本的参数:

#!/bin/bash
function input_1() {
    echo "the first parameter is $1"
    echo "the second parameter is $2"
    echo "the third parameter is $3"
    echo "the script parameter is $0"
    echo "the number of  parameters is $#"
}

input_1 $1

[root@liang-00 shell]# sh func1.sh 1
the first parameter is 1
the second parameter is 
the third parameter is 
the script parameter is func1.sh
the number of  parameters is 1
[root@liang-00 shell]#

示例2:

设计一个求和函数

#!/bin/bash

sum() {

    s=$[$1+$2]

    echo $s

}

sum 2 3

执行结果:

[root@liang-00 shell]# sh -x func2.sh 
+ sum 2 3
+ s=5
+ echo 5
5
[root@liang-00 shell]# 

示例:

输入网卡的名字显示IP

#!/bin/bash
getIP() {
    ifconfig |grep -A1 "$1: " |tail -1 |awk  '/inet/ {print $2}'
}
read -p "Please input the eth name: " e
getIP $e
 

结果:

[root@liang-00 shell]# sh -x func3.sh
+ read -p 'Please input the eth name: ' e
Please input the eth name: ens37
+ getIP ens37
+ grep -A1 'ens37: '
+ awk '/inet/ {print $2}'
+ ifconfig
[root@liang-00 shell]# sh -x func3.sh
+ read -p 'Please input the eth name: ' e
Please input the eth name: ens33:0
+ getIP ens33:0
+ awk '/inet/ {print $2}'
+ grep -A1 'ens33:0: '
+ ifconfig
192.168.37.199
[root@liang-00 shell]# sh  func3.sh
Please input the eth name: ens33
192.168.37.200
[root@liang-00 shell]# 

改进:1、判断输入的网卡是否存在;2、判断输入的网卡是否有IP

#!/bin/bash
#获取所有网卡的名字
a=`ifconfig |grep 'flags'|awk '{print $1}'`
getIP() {
    ifconfig |grep -A1 "$1: " |awk '/inet/ {print $2}'
}



while :
do
    read -p "Please input the eth name: " e
#判断网卡是否存在
    c=`echo $a|grep "$e"`
    if [ -n "$c" ]
    then
        b=`getIP $e`
    else
        echo "$e not exist."
        continue
    fi

    if [ -z "$b" ]
    then
        echo "$e IP not exist."
        continue
    else
        echo "$e IP is $b"
        exit
    fi
done

20.18 shell中的数组

定义数组 a=(1 2 3 4 5); echo ${a[@]}

[root@liang-00 ~]# a=(1 2 3)
[root@liang-00 ~]# echo ${a[*]}
1 2 3
[root@liang-00 ~]# echo ${a[@]}
1 2 3
[root@liang-00 ~]# 

echo ${#a[@]} 获取数组的元素个数

[root@liang-00 ~]# echo ${#a[*]}
3
[root@liang-00 ~]# 

echo ${a[2]} 读取第三个元素,数组从0开始

[root@liang-00 ~]# a=(1 2 3)
[root@liang-00 ~]# echo ${a[0]}
1
[root@liang-00 ~]# echo ${a[1]}
2
[root@liang-00 ~]# echo ${a[2]}
3
[root@liang-00 ~]# 

数组赋值:

a[3]=100; echo ${a[@]} 如果下标不存在则会自动添加一个元素

[root@liang-00 ~]# a[3]=100
[root@liang-00 ~]# echo ${a[*]}
1 2 3 100
[root@liang-00 ~]# 

数组的删除:

[root@liang-00 ~]# a=(1 2 3 100)
[root@liang-00 ~]# unset a[3]
[root@liang-00 ~]# echo ${a[*]}
1 2 3
[root@liang-00 ~]# unset a
[root@liang-00 ~]# echo ${a[*]}

[root@liang-00 ~]# 

数组的分片

定义数组a=(`seq 1 10`)

[root@liang-00 ~]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@liang-00 ~]# 

从第一个元素开始,截取三个

[root@liang-00 ~]# echo ${a[*]:0:3}
1 2 3
[root@liang-00 ~]# 

从第二个元素开始,截取四个

[root@liang-00 ~]# echo ${a[*]:1:4}
2 3 4 5
[root@liang-00 ~]# 

从倒数第三个元素开始,截取两个

[root@liang-00 ~]# echo ${a[*]:0-3:2}
8 9
[root@liang-00 ~]#

数组替换:

把数组中的元素8替换成6;之后再把6替换成8

[root@liang-00 ~]# echo ${a[*]/8/6}
1 2 3 4 5 6 7 6 9 10
[root@liang-00 ~]# a=(${a[*]/6/8})
[root@liang-00 ~]# echo ${a[*]}
1 2 3 4 5 8 7 8 9 10

 

shell项目-告警系统

  • 需求:使用shell定制各种个性化告警工具(zabbix中不好实现的,比如zabbix-agent无法把数据发送给server了),但需要统一化管理、规范化管理。
  • 思路:指定一个脚本包,包含主程序、子程序、配置文件、邮件引擎、输出日志等。
  • 主程序:作为整个脚本的入口,是整个系统的命脉。
  • 配置文件:是一个控制中心,用它来开关各个子程序,指定各个相关联的日志文件。
  • 子程序:这个才是真正的监控脚本,用来监控各个指标。
  • 邮件引擎:是由一个python程序来实现,它可以定义发邮件的服务器、发邮件人以及发件人密码。
  • 输出日志:整个监控系统要有日志输出。

要求:我们的机器角色多种多样,但是所有机器上都要部署同样的监控系统,也就说所有机器不管什么角色,整个程序框架都是一致的,不同的地方在于根据不同的角色,定制不同的配            置文件。
程序架构:

4f3ea30031484abd3fe94e9b450534feceb.jpg

bin 下是主程序
conf 下是配置文件
shares 下是各个监控脚本
mail 下是邮件引擎
log 下是日志。

1、每台监控的机器都要定义架构中的目录。

[root@liang-00 ~]# cd /usr/local/sbin/
[root@liang-00 sbin]# mkdir mon
[root@liang-00 sbin]# ls mon
mon
[root@liang-00 sbin]# cd mon/
[root@liang-00 mon]# mkdir bin conf shares mail log
[root@liang-00 mon]# ls
bin  conf  log  mail  shares
[root@liang-00 mon]# 

2、main.sh脚本中的内容,在../bin目录下。

#!/bin/bash
#Written by aming.
# 是否发送邮件的开关
export send=1
# 过滤ip地址,
export addr=`/sbin/ifconfig |grep -A1 "ens33: "|awk '/inet/ {print $2}'`
dir=`pwd`
# 只需要最后一级目录名
last_dir=`echo $dir|awk -F'/' '{print $NF}'`
# 下面的判断目的是,保证执行脚本的时候,我们在bin目录里,不然监控脚本、邮件和日志很有可能找不到
if [ $last_dir == "bin" ] || [ $last_dir == "bin/" ]; then
    conf_file="../conf/mon.conf"
else
    echo "you shoud cd bin dir"
    exit
fi
# 对执行的日志定向到指定的目录文件中
exec 1>>../log/mon.log 2>>../log/err.log
echo "`date +"%F %T"` load average"
/bin/bash ../shares/load.sh
#先检查配置文件中是否需要监控502
if grep -q 'to_mon_502=1' $conf_file; then
    export log=`grep 'logfile=' $conf_file |awk -F '=' '{print $2}' |sed 's/ //g'`
    /bin/bash  ../shares/502.sh
fi

mon.conf,在../conf目录下。

## to config the options if to monitor
## 定义mysql的服务器地址、端口以及user、password
to_mon_cdb=0   ##0 or 1, default 0,0 not monitor, 1 monitor
db_ip=10.20.3.13
db_port=3315
db_user=username
db_pass=passwd
## httpd   如果是1则监控,为0不监控
to_mon_httpd=0
## php 如果是1则监控,为0不监控
to_mon_php_socket=0
## http_code_502  需要定义访问日志的路径
to_mon_502=1
logfile=/data/log/xxx.xxx.com/access.log
## request_count   定义日志路径以及域名
to_mon_request_count=0
req_log=/data/log/www.discuz.net/access.log
domainname=www.discuz.net

load.sh,在../shares目录下。

#! /bin/bash
##Writen by aming##
load=`uptime |awk -F 'average:' '{print $2}'|cut -d',' -f1|sed 's/ //g' |cut -d. -f1`
if [ $load -gt 10 ] && [ $send -eq "1" ]
then
    echo "$addr `date +%T` load is $load" >../log/load.tmp
    /bin/bash ../mail/mail.sh zhexiansql@163.com "$addr\_load:$load" `cat ../log/load.tmp`
fi
echo "`date +%T` load is $load"

502.sh,在../shares目录下。

#! /bin/bash
d=`date -d "-1 min" +%H:%M`
c_502=`grep :$d:  $log  |grep ' 502 '|wc -l`
if [ $c_502 -gt 10 ] && [ $send == 1 ]; then
     echo "$addr $d 502 count is $c_502">../log/502.tmp
     /bin/bash ../mail/mail.sh $addr\_502 $c_502  ../log/502.tmp
fi
echo "`date +%T` 502 $c_502"

disk.sh,在../shares目录下。

#! /bin/bash
##Writen by aming##
rm -f ../log/disk.tmp
for r in `df -h |awk -F '[ %]+' '{print $5}'|grep -v Use`
do
    if [ $r -gt 90 ] && [ $send -eq "1" ]
then
    echo "$addr `date +%T` disk useage is $r" >>../log/disk.tmp
fi
if [ -f ../log/disk.tmp ]
then
    df -h >> ../log/disk.tmp
    /bin/bash ../mail/mail.sh $addr\_disk $r ../log/disk.tmp
    echo "`date +%T` disk useage is nook"
else
    echo "`date +%T` disk useage is ok"
fi

mail.sh,在../mail目录下。

log=$1
t_s=`date +%s`
t_s2=`date -d "2 hours ago" +%s`
if [ ! -f /tmp/$log ]
then
    echo $t_s2 > /tmp/$log
fi
t_s2=`tail -1 /tmp/$log|awk '{print $1}'`
echo $t_s>>/tmp/$log
v=$[$t_s-$t_s2]
echo $v
if [ $v -gt 3600 ]
then
    ./mail.py  $1  $2  $3
    echo "0" > /tmp/$log.txt
else
    if [ ! -f /tmp/$log.txt ]
    then
        echo "0" > /tmp/$log.txt
    fi
    nu=`cat /tmp/$log.txt`
    nu2=$[$nu+1]
    echo $nu2>/tmp/$log.txt
    if [ $nu2 -gt 10 ]
    then
         ./mail.py  $1 "trouble continue 10 min $2" "$3"
         echo "0" > /tmp/$log.txt
    fi
fi  

mail.py,在../mail目录下。

#!/usr/bin/env python
#-*- coding: UTF-8 -*-
import os,sys
reload(sys)
sys.setdefaultencoding('utf8')
import getopt
import smtplib
from email.MIMEText import MIMEText
from email.MIMEMultipart import MIMEMultipart
from  subprocess import *

def sendqqmail(username,password,mailfrom,mailto,subject,content):
    gserver = 'smtp.qq.com'
    gport = 25

    try:
        # msg = MIMEText(unicode(content).encode('utf-8')) //如果发送的邮件有乱码,可以尝试把这行改成如下:
        msg = MIMEText(content,'plan','utf-8') 
        msg['from'] = mailfrom
        msg['to'] = mailto
        msg['Reply-To'] = mailfrom
        msg['Subject'] = subject

        smtp = smtplib.SMTP(gserver, gport)
        smtp.set_debuglevel(0)
        smtp.ehlo()
        smtp.login(username,password)

        smtp.sendmail(mailfrom, mailto, msg.as_string())
        smtp.close()
    except Exception,err:
        print "Send mail failed. Error: %s" % err


def main():
    to=sys.argv[1]
    subject=sys.argv[2]
    content=sys.argv[3]
##定义QQ邮箱的账号和密码,你需要修改成你自己的账号和密码(请不要把真实的用户名和密码放到网上公开,否则你会死的很惨)
    sendqqmail('1234567@qq.com','aaaaaaaaaa','1234567@qq.com',to,subject,content)

if __name__ == "__main__":
    main()
    
    
#####脚本使用说明######
#1. 首先定义好脚本中的邮箱账号和密码
#2. 脚本执行命令为:python mail.py 目标邮箱 "邮件主题" "邮件内容"

4、测试:因为只监控了负载,而且负载并没有超过告警,所以只在log中记录了日志。

[root@liang-00 bin]# sh -x main.sh 
+ export send=1
+ send=1
++ grep -A1 'ens33: '
++ awk '/inet/ {print $2}'
++ /sbin/ifconfig
+ export addr=192.168.37.200
+ addr=192.168.37.200
++ pwd
+ dir=/usr/local/sbin/mon/bin
++ echo /usr/local/sbin/mon/bin
++ awk -F/ '{print $NF}'
+ last_dir=bin
+ '[' bin == bin ']'
+ conf_file=../conf/mon.conf
+ exec
[root@liang-00 bin]# cd ../log/
[root@liang-00 log]# ls
err.log  mon.log
[root@liang-00 log]# cat mon.log 
2019-01-10 19:09:50 load average
19:09:50 load is 0
2019-01-10 19:09:57 load average
19:09:57 load is 0
[root@liang-00 log]# cat err.log 
++ date '+%F %T'
+ echo '2019-01-10 19:09:57 load average'
+ /bin/bash ../shares/load.sh
+ grep -q to_mon_502=1 ../conf/mon.conf
[root@liang-00 log]# 

 

转载于:https://my.oschina.net/u/3993922/blog/3000095

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
《JVM调优工具命令详解》是一份预习资料,主要介绍了Java虚拟机(JVM)调优过程中使用的一些工具命令。这些工具命令可以帮助开发人员诊断和优化JVM的性能问题。 文中首先介绍了常用的JVM调优工具命令,包括jps、jstat、jinfo、jmap、jhat等。这些命令可以用于查看JVM进程信息、统计JVM内存和线程情况、获取JVM配置参数等。通过使用这些工具命令,开发人员可以快速定位JVM性能瓶颈所在,进行优化。 接下来,文中详细介绍了每个工具命令的使用方法和参数解释。例如,jstat命令可以用于查看JVM内存情况,包括堆内存使用量、垃圾回收情况等。而jmap命令可以用于生成堆内存转储文件,帮助开发人员分析内存泄漏问题。通过掌握这些工具命令的使用,开发人员可以更加高效地进行JVM调优。 此外,文中还介绍了一些实际的调优案例,通过使用这些工具命令来解决实际的JVM性能问题。这些案例包括内存泄漏、线程死锁、CPU占用过高等问题。通过学习这些案例,开发人员可以更好地理解如何利用工具命令来诊断和解决JVM性能问题。 总的来说,《JVM调优工具命令详解》是一份非常实用的预习资料,适合那些需要深入学习JVM性能优化的开发人员。通过学习和掌握这些工具命令,开发人员能够更加高效地进行JVM调优,提升应用程序的性能和稳定性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值