openfalcon 添加http远程监控 (for status code and for content match)

  • 做个falcon的小脚本,一来可以监控http的返回吗,如果是2xx或者3xx就是对的,否则就是111; 二来监控内容是否包含, 如果包含那就是对的,否则返回111

  • 直接上代码

#!/usr/bin/env python
#coding: utf-8

import os, sys, re
import json
import requests
import time
import urllib2, base64
from socket import *

def checkHttp(httpurl,neirong=''):
    # 获取数据
    try:
        r = requests.get(httpurl, timeout=3)
        # 判断http返回码是不是正常
        if r.status_code in [ 200, 201, 301, 302]:
            pass
        else:
            return 111
        # 判断返回的里面有没有指定字符串
        results = re.findall('%s'%neirong,r.text)
        if len(results) > 0:
            return 0
        else:
            return 111
    except Exception:
        return 111

# 上报
def uploadToAgent(p):
    method = "POST"
    handler = urllib2.HTTPHandler()
    opener = urllib2.build_opener(handler)
    url = "http://127.0.0.1:1988/v1/push"
    request = urllib2.Request(url, data=json.dumps(p))
    request.add_header('Content-Type','application/json')
    request.get_method = lambda: method
    try:
        connection = opener.open(request)
    except urllib2.HTTPError,e:
        connection = e

    if connection.code == 200:
        print connection.read()
    else:
        print '{"err":1,"msg":"%s"}' % connection


print "开始 "

# 准备上报数据
def zuzhuangData(tags = '', value = ''):
    endpoint = "10.0.2.90"
    metric = "userdefine"
    key = "remotehttpcheck"
    timestamp = int(time.time())
    step = 60
    vtype = "GAUGE"

    i = {
            'Metric' :'%s.%s'%(metric,key),
            'Endpoint': endpoint,
            'Timestamp': timestamp,
            'Step': step,
            'value': value,
            'CounterType': vtype,
            'TAGS': tags
            }
    return i

p = []
with open("./remotehttpcheck.txt") as f:
    for line in f:
        results = re.findall("(\S+)",line)
        print results
        httpurl = results[0]
        description = results[1]
        neirong = results[2]
        tags = "httpurl=%s,description=%s,neirong=%s"%(httpurl,description,neirong)
        value = checkHttp(httpurl,neirong)
        p.append(zuzhuangData(tags,value))

print json.dumps(p, sort_keys=True,indent = 4)

uploadToAgent(p)
  • 上配置文件
http://www.baidu.com/   百度  新闻
https://www.baidu.com/  百度  新闻
  • 加cron
* * * * * cd /data/openfalcon/agent/userdefine && ./remotehttpcheck 1>>/tmp/1.txt 2>&1
  • 看是否可以找到上报数据

这里写图片描述

这里写图片描述

  • 添加报警template

咱们直接在上一个tcpcheck的 template模板里面进行添加

这里写图片描述

  • 等待报警中…

这里写图片描述

这里写图片描述

  • 搞定, 修改报警值

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值