Esempio n. 1
0
    def get_request_urls_by_ip(cls):
        if not request.args.get('ip'):
            return ApiCorsResponse.response('缺少ip参数', False)

        session['now_timestamp'] = int(time.time())

        collection = current_app.db_engine_table



        res = current_app.db[collection].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}, 'ip': request.args.get('ip')}},
            {'$group': {'_id': '$request_url', 'total_num': {'$sum': 1}}},
            {'$project': {
                'total_num': 1,
                'request_url': '$_id',
            }
            },
            {'$sort': {'total_num': -1}},
            {'$limit': 20}
        ])


        data = list(res)
        data.reverse()
        return ApiCorsResponse.response(data)
Esempio n. 2
0
 def get_total_ip(cls):
     res = current_app.db[current_app.db_engine_table].aggregate([
         {'$match': {'time_str': {'$regex': '^%s' % cls.today}}},
         {'$group': {'_id': '$ip'}},
         {'$group': {'_id': '','total_num':{'$sum':1} }},
         {'$project': { '_id': 0}},
         {'$sort': {'total_num': -1}},
     ])
     res = list(res)
     if len(res) == 0 :
         return ApiCorsResponse.response({})
     return ApiCorsResponse.response(res[0])
Esempio n. 3
0
    def get_request_num_by_ip(cls):
        if request.args.get('type') == 'init':
            #  一分钟 * 10 10分钟
            limit = 60 * 10
        else:
            limit = 5

        session['now_timestamp'] = int(time.time())


        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}}},
            {'$group': {'_id': '$ip', 'total_num': {'$sum': 1}}},
            {'$project': {
                'ip':'$_id',
                'total_num': 1,
                '_id':0
                # 'percent':{ '$toDouble': {'$substr':[  {'$multiply':[ {'$divide':['$total_num' , total]} ,100] }  ,0,4  ] }   }
            }
            },
            {'$sort': {'total_num': -1}},
            {'$limit': 50}
        ])



        data = list(res)
        data.reverse()
        return ApiCorsResponse.response(data)
Esempio n. 4
0
    def get_network_traffic_by_minute(cls):
        current_hour = time.strftime('%Y-%m-%d %H', time.localtime(time.time()))

        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % current_hour}}},
            {'$project': {
                '_id': 0,
                'time_minute': {'$dateToString': {
                    'format': '%Y-%m-%d %H:%M', 'date': {'$dateFromString': {'dateString': '$time_str'}}
                }
                },
                'request_length': {'$toInt': '$request_length'},
                'bytes_sent': {'$toInt': '$bytes_sent'}
            },
            },
            {'$group': {
                '_id': '$time_minute',
                'in_network_sum': {'$sum': '$request_length'},
                'out_network_sum': {'$sum': '$bytes_sent'}
            }
            },
            {'$project': {'_id': 0, 'time_str': '$_id', 'in_network': {'$divide': ['$in_network_sum', 1024]},
                          'out_network': {'$divide': ['$out_network_sum', 1024]}}},
            {'$sort': {'time_str': -1}},

        ])

        data = []
        for i in res:
            i['time_str'] = int(time.mktime(time.strptime(i['time_str'], '%Y-%m-%d %H:%M')))
            data.append(i)

        data.reverse()

        return ApiCorsResponse.response(data)
Esempio n. 5
0
    def get_request_num_by_url(cls):
        # if request.args.get('type') == 'init':
        #     #  一分钟 * 10 10分钟
        #     limit = 60 * 10
        # else:
        #     limit = 5


        collection = current_app.db_engine_table


        # total = current_app.db[collection].find({'time_str': {'$regex': '^%s' % cls.today}}).count()

        res = current_app.db[collection].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}}},
            {'$group': {'_id': '$request_url', 'total_num': {'$sum': 1}}},
            {'$project': {
                'request_url': '$_id',
                'total_num': 1,
                '_id': 0,
                # 'percent': {'$toDouble': {'$substr': [{'$multiply': [{'$divide': ['$total_num', total]}, 100]}, 0, 4]}}
            }
            },
            {'$sort': {'total_num': -1}},
            {'$limit': 50}
        ])

        data = list(res)
        data.reverse()

        return ApiCorsResponse.response(data)
Esempio n. 6
0
    def get_request_num_by_secends(cls):

        if request.args.get('type') == 'init':
            #  一分钟 * 10 10分钟
            limit = 60 * 10
        else:
            limit = 5

        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as total_request_num,`timestamp` from {0}
                       where FROM_UNIXTIME(`timestamp`,'%Y-%m-%d') = :today 
                       group by `timestamp`
                       order by `timestamp` desc 
                       limit {1}
                       """.format(current_app.db_engine_table, limit))

            res = cursor.execute(sql, {'today': cls.today})
            res = Func.fetchall(res)

            data = []
            for i in res:

                item = {}
                # item['timestamp'] = time.strftime('%H:%M:%S', time.localtime(i['timestamp']))
                # * 1000 for js timestamp
                item['timestamp'] = i['timestamp'] * 1000
                item['total_request_num'] = i['total_request_num']
                data.append(item)

            data.reverse()

            return ApiCorsResponse.response(data)
Esempio n. 7
0
    def get_network_traffic_by_minute(self):
        with current_app.db.connect() as cursor:
            current_hour_str = time.strftime('%Y-%m-%d %H',
                                             time.localtime(time.time()))
            next_hour_str = time.strftime('%Y-%m-%d %H',
                                          time.localtime(time.time() + 3600))
            current_hour = int(
                time.mktime(time.strptime(current_hour_str, '%Y-%m-%d %H')))
            next_hour = int(
                time.mktime(time.strptime(next_hour_str, '%Y-%m-%d %H')))

            sql = text("""
            select round((sum(bytes_sent) /1024),2)  as out_network, round((sum(request_length) / 1024) ,2) as in_network  ,unix_timestamp(STR_TO_DATE(time_str,'%Y-%m-%d %H:%i')) as time_str
            from {0}
            where `timestamp` >= {1} and `timestamp` < {2}
            GROUP BY MINUTE(time_str)
            ORDER BY MINUTE(time_str) desc
            limit 10
            """.format(current_app.db_engine_table, current_hour, next_hour))

            res = cursor.execute(sql)
            data = Func.fetchall(res)
            data.reverse()

            return ApiCorsResponse.response(data)
Esempio n. 8
0
    def get_ip_pv_num_by_minute(cls):

        current_hour = time.strftime('%Y-%m-%d %H', time.localtime(time.time()))

        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % current_hour}}},
            {'$project': {
                    '_id': 0,
                    'time_minute': {
                            '$dateToString': {
                                'format': '%Y-%m-%d %H:%M', 'date': {'$dateFromString': {'dateString': '$time_str'}}
                            }
                    },
                    'ip': 1
                },
            },
            {'$group': {
                '_id': '$time_minute',
                'pv_num': {'$sum': 1},
                'ip_arr': {'$addToSet': '$ip'}
                }
            },
            {'$project': {'_id': 0, 'time_str': '$_id', 'pv_num': 1, 'ip_num': {'$size': '$ip_arr'}}},
            {'$sort': {'time_str': -1}},
        ])

        data = []
        for i in res:
            i['time_str'] = int(time.mktime(time.strptime(i['time_str'], '%Y-%m-%d %H:%M')))
            data.append(i)

        data.reverse()
        return ApiCorsResponse.response(data)
Esempio n. 9
0
    def get_request_num_by_secends(cls):
        if request.args.get('type') == 'init':
            #  一分钟 * 10 10分钟
            limit = 60 * 10
        else:
            limit = 5


        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}}},
            {'$group': {'_id': '$timestamp', 'total_num': {'$sum': 1}}},
            {'$project': {'timestamp': '$_id', 'total_request_num': '$total_num', '_id': 0}},
            {'$sort': {'timestamp': -1}},
            {'$limit': limit}
        ])

        data = []
        for i in res:
            item = {}
            # item['timestamp'] = time.strftime('%H:%M:%S', time.localtime(i['timestamp']))
            # * 1000 for js timestamp
            item['timestamp'] = i['timestamp'] * 1000
            item['total_request_num'] = i['total_request_num']
            data.append(item)

        data.reverse()
        return ApiCorsResponse.response(data)
Esempio n. 10
0
    def get_request_num_by_status_code(cls):
        if not request.args.get('code'):
            return ApiCorsResponse.response('缺少code参数', False)

        session['now_timestamp'] = int(time.time())



        arg = re.findall('\d+?', request.args.get('code'))
        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}, 'status': ''.join(arg)}},
            {'$group': {'_id': '$request_url', 'total_num': {'$sum': 1}}},
            {'$project': {'request_url': '$_id', 'total_num': 1, '_id': 0}},
            {'$sort': {'total_num': -1}},
        ])

        data = list(res)
        data.reverse()

        return ApiCorsResponse.response(data)
Esempio n. 11
0
    def get_request_urls_by_ip(cls):
        if not request.args.get('ip'):
            return ApiCorsResponse.response('缺少ip参数', False)

        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as total_num ,request_url from {0}
                       where FROM_UNIXTIME(`timestamp`,'%Y-%m-%d') = :today and ip = :ip
                       group by request_url
                       order by total_num desc
                       limit 50
                       """.format(current_app.db_engine_table))

            ip = request.args.get('ip')

            res = cursor.execute(sql, {'today': cls.today, 'ip': ip})
            data = Func.fetchall(res)
            data.reverse()

            return ApiCorsResponse.response(data)
Esempio n. 12
0
    def get_total_pv(cls):
        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as total_num from {0}  FORCE INDEX(timestamp)
                       where `timestamp` >= UNIX_TIMESTAMP(:today)
                       """.format(current_app.db_engine_table))

            res = cursor.execute(sql, {'today': cls.today})

            total = Func.fetchone(res)
            return ApiCorsResponse.response(total)
Esempio n. 13
0
    def get_spider_by_ua(cls):
        with current_app.db.connect() as cursor:
            sql = text("""
                            select count(*) as total_num ,ua from {0}  
                            where MATCH(`ua`) AGAINST('spider') 
                            GROUP BY ua
                            ORDER BY total_num desc
                              """.format(current_app.db_engine_table))

            res = cursor.execute(sql, {'today': cls.today})
            data = Func.fetchall(res)
            return ApiCorsResponse.response(data)
Esempio n. 14
0
    def get_request_num_by_status_code(cls):

        if not request.args.get('code'):
            return ApiCorsResponse.response('缺少code参数', False)

        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as total_num,`request_url` from {0}
                       where FROM_UNIXTIME(`timestamp`,'%Y-%m-%d') = :today AND `status_code` = :status_code
                       group by request_url
                       order by total_num desc
                       limit 30
                       """.format(current_app.db_engine_table))

            code = request.args.get('code')

            res = cursor.execute(sql, {
                'today': cls.today,
                'status_code': code
            })
            data = Func.fetchall(res)
            data.reverse()
            return ApiCorsResponse.response(data)
Esempio n. 15
0
    def get_request_num_by_ip(cls):
        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as total_num,ip from {0}
                       where `timestamp` >= UNIX_TIMESTAMP(:today)
                       group by ip
                       order by total_num desc
                       limit 50
                       """.format(current_app.db_engine_table))

            res = cursor.execute(sql, {'today': cls.today})
            data = Func.fetchall(res)
            data.reverse()
            return ApiCorsResponse.response(data)
Esempio n. 16
0
    def get_request_num_by_province(cls):
        session['now_timestamp'] = int(time.time())

        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {'time_str': {'$regex': '^%s' % cls.today}}},
            {'$group': {'_id': '$province', 'total_num': {'$sum': 1}}},
            {'$project': {'province': '$_id', 'value': '$total_num', '_id': 0}},
            {'$sort': {'total_num': -1}},
        ])

        data = list(res)
        data.reverse()

        return ApiCorsResponse.response(data)
Esempio n. 17
0
    def get_request_num_by_province(cls):

        with current_app.db.connect() as cursor:
            sql = text("""
                       select count(*) as value,`province`  from {0}
                       where `timestamp` >= UNIX_TIMESTAMP(:today) AND province != '0'
                       group by `province`
                       order by `value` desc 
                       """.format(current_app.db_engine_table))

            res = cursor.execute(sql, {'today': cls.today})
            data = Func.fetchall(res)
            data.reverse()

            return ApiCorsResponse.response(data)
Esempio n. 18
0
    def get_spider_by_ua(cls):
        res = current_app.db[current_app.db_engine_table].aggregate([
            {'$match': {
                'time_str': {'$regex': '^%s' % cls.today} ,
                'ua':{'$regex':'spider'}
                }
            },
            {'$group': {'_id': '$ua', 'total_num': {'$sum': 1}}},
            {'$project': {'ua': '$_id', 'total_num': 1, '_id': 0}},
            {'$sort': {'total_num': -1}},
        ])

        data = list(res)
        data.reverse()
        return ApiCorsResponse.response(data)
Esempio n. 19
0
    def get_device_type_by_ua(cls):
        with current_app.db.connect() as cursor:
            sql = text("""
                            select count(DISTINCT ua) as pc_num, (
			                        select count(DISTINCT ua) as mobile_num
				                    from {0}
				                    where match(`ua`) AGAINST('mobile xfb' IN BOOLEAN MODE)
	                            ) as mobile_num
                            from {1}
                            where match(`ua`) AGAINST('+gecko -mobile' IN BOOLEAN MODE)
                              """.format(current_app.db_engine_table,
                                         current_app.db_engine_table))

            res = cursor.execute(sql, {'today': cls.today})
            data = Func.fetchall(res)
            return ApiCorsResponse.response(data)
Esempio n. 20
0
    def get_ip_pv_num_by_minute(cls):
        with current_app.db.connect() as cursor:
            current_hour_str = time.strftime('%Y-%m-%d %H',
                                             time.localtime(time.time()))
            next_hour_str = time.strftime('%Y-%m-%d %H',
                                          time.localtime(time.time() + 3600))
            current_hour = int(
                time.mktime(time.strptime(current_hour_str, '%Y-%m-%d %H')))
            next_hour = int(
                time.mktime(time.strptime(next_hour_str, '%Y-%m-%d %H')))

            sql = text("""
            select count(DISTINCT ip) as ip_num,count(*) as pv_num  ,unix_timestamp(STR_TO_DATE(time_str,'%Y-%m-%d %H:%i')) as time_str
            from {0}
            where `timestamp` >= {1} and `timestamp` < {2}
            GROUP BY MINUTE(time_str)
            ORDER BY MINUTE(time_str) desc
            limit 10
            """.format(current_app.db_engine_table, current_hour, next_hour))

            res = cursor.execute(sql)
            data = Func.fetchall(res)
            data.reverse()
            return ApiCorsResponse.response(data)
Esempio n. 21
0
 def get_total_pv(cls):
     res = current_app.db[current_app.db_engine_table].find({'time_str': {'$regex': '^%s' % cls.today}}).count()
     return ApiCorsResponse.response({'total_num':res})