فهرست منبع

author:dukun
describe: 小米对账0914-1018

864633403@qq.com 5 سال پیش
والد
کامیت
65ade02289

+ 174 - 0
ChannelGroup/channel_group.py

@@ -0,0 +1,174 @@
+# -*- coding: utf-8 -*-
+# Author: dukun
+
+import re
+import os
+import sys
+import time
+import json
+import pymysql
+import hashlib
+import requests
+import pandas as pd
+from DBUtils.PooledDB import PooledDB
+
+
+comment_re = re.compile(
+    '(^)?[^\S\n]*/(?:\*(.*?)\*/[^\S\n]*|/[^\n]*)($)?',
+    re.DOTALL | re.MULTILINE
+)
+
+#解析带注释的json
+def parse_json(filename):
+    """ Parse a JSON file
+        First remove comments and then use the json module package
+        Comments look like :
+            // ...
+        or
+            /*
+            ...
+            */
+    """
+    with open(filename,encoding='utf8') as f:
+        content = ''.join(f.readlines())
+        ## Looking for comments
+        match = comment_re.search(content)
+        while match:
+            # single line comment
+            content = content[:match.start()] + content[match.end():]
+            match = comment_re.search(content)
+ 
+        #print(content)
+        # Return json file
+        return json.loads(content)
+
+def changeChannelGroup():
+    
+    que_sql = """ SELECT seq_id FROM channel_to_group WHERE channel_group_id = {} AND  channel_seq_id = {} AND weight >= 45"""
+    que_sql_45 = """ SELECT seq_id FROM channel_to_group WHERE channel_group_id = {} AND  channel_seq_id = {} AND weight < 45 """
+    del_sql = """ DELETE FROM channel_to_group WHERE seq_id = %s"""
+    up_sql = """ UPDATE   channel_to_group  SET weight = %s WHERE  seq_id = %s """
+    ins_sql = """ INSERT INTO  channel_to_group VALUES (0,%s,%s,%s) """
+    json_data = parse_json(r'./group.json')
+    #print(json_data)
+    
+    cursor = conn.cursor()
+    #print(cursor)
+    #start = time.time()
+    for item in json_data:
+        channel_group_id = item['channel_group_id']
+        
+        for channel in item['channels']:
+            channel_seq_id = channel['channel_seq_id']
+            count = channel['run_count']
+            weight = channel['low_weight']
+
+            temp_que_sql = que_sql.format(channel_group_id,channel_seq_id)
+            temp_que_sql_45 = que_sql_45.format(channel_group_id,channel_seq_id)
+            
+            df = pd.DataFrame()
+            if(weight >= 45):
+                df = pd.read_sql(temp_que_sql,conn)
+                #print(" +40===================={}".format(len(df)))
+            else :
+                df = pd.read_sql(temp_que_sql_45,conn)
+                #print(" <40********************{}".format(len(df)))
+                #print(df)
+            #print(df)
+            que_count = len(df)
+            #print('---que_count---:{}'.format(que_count))
+            #print(que_count)
+            ins_list = []
+            up_list = []
+            del_list = []
+            
+            try:
+                if(count == que_count):
+                   #up_list = []
+                   for i in range(count):              
+                        up_list.append((weight + i,df['seq_id'].values.tolist()[i]))
+                                                             
+                   cursor.executemany(up_sql,up_list)
+                
+                elif( count > que_count):
+                    #print('cuunt:{}'.format(count))
+                    #print('que_count:{}'.format(que_count))
+                    num =  count - que_count
+                    #print('-----num----:{}'.format(num))
+                    #ins_list = []
+                    #up_list = []
+                    for i in range(num):
+                        ins_list.append((channel_group_id,channel_seq_id,weight + i))
+                           
+                    cursor.executemany(ins_sql,ins_list) 
+                            
+                    temp_df =  pd.DataFrame()
+                    
+                    if(weight >= 45):
+                        temp_df = pd.read_sql(temp_que_sql,conn)
+                    else :
+                        #print(temp_que_sql_45)
+                        temp_df = pd.read_sql(temp_que_sql_45,conn)
+                         
+                       
+                    for i in range(count):              
+                        up_list.append((weight + i,temp_df['seq_id'].values.tolist()[i]))
+                                                             
+                    cursor.executemany(up_sql,up_list)
+                    
+                else:
+
+                    for i in range(count):
+                        up_list.append((weight + i,df['seq_id'].values.tolist()[i]))
+                    
+                    cursor.executemany(up_sql,up_list)
+
+                    for i in range(count,que_count):
+                        del_list.append(df['seq_id'].values.tolist()[i])
+                        #print(del_list)
+                        
+                    cursor.executemany(del_sql,del_list)
+
+            except:
+             conn.rollback()
+             print ("数据回滚")
+
+    cursor.close()
+    conn.close()
+
+    
+
+
+#创建数据库连接池
+def createPool(db_config):
+   spool = PooledDB(pymysql, 5, **db_config) 
+   return spool
+
+
+
+if __name__ == '__main__':
+
+    #数据库连接信息
+    chanel_db_config = {
+    'host' : '47.95.217.180',
+    'port' : 3306,
+    'user' : 'root',
+    'password' : '93DkChZMgZRyCbWh',
+    'db' : 'fmp',
+    'charset' : 'utf8',
+    'autocommit' : 1
+    }
+
+    #数据库连接信息
+    test_db_config = {
+    'host' : '192.168.101.7',
+    'port' : 3306,
+    'user' : 'root',
+    'password' : 'nibuzhidaowozhidao',
+    'db' : 'fmp',
+    'charset' : 'utf8',
+    'autocommit' : 1
+    }
+    conn =  createPool(chanel_db_config).connection()
+  
+    changeChannelGroup()

+ 1276 - 0
ChannelGroup/group.json

@@ -0,0 +1,1276 @@
+[
+{//通用通道组
+    "channel_group_id": 57,
+    "channels" : [
+        {
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 10,
+            "low_weight":90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 4,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 0,
+            "low_weight": 21
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 20
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 10,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 4,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 0,
+            "low_weight": 24
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 20
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 10,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 50
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 21
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 20
+        }
+		
+    ]
+},
+
+{//通用通道组【无补单】
+	"channel_group_id": 60,
+     "channels" : [
+        {
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 10,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 4,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 0,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 10,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 4,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 0,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 10,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 24
+        }
+		
+    ]
+},
+
+{//通用通道组【新客户】
+	"channel_group_id": 61,
+     "channels" : [
+        {
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 3,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 2,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 0,
+            "low_weight": 21
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 20
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 3,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 0,
+            "low_weight": 21
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 20
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 3,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 0,
+            "low_weight": 30
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 0,
+            "low_weight": 26
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 21
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 20
+        }
+		
+    ]
+},
+
+{//通用通道组【必成功】
+	"channel_group_id": 62,
+     "channels" : [
+        {
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 3,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 3,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 2,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 113, //自动补单移动2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 3,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 2,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 2,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 114, //自动补单联通2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 3,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 2,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 115, //自动补单电信2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 24
+        }
+		
+    ]
+},
+
+{//通用通道组【有拆单】
+	"channel_group_id": 63,
+    "channels" : [
+		{
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 110, //移动拆单通道
+            "run_count": 1,
+            "low_weight": 99
+        },		
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 9,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 4,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 111, //联通拆单通道
+            "run_count": 1,
+            "low_weight": 99
+        },
+		
+		
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 5,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 10,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 4,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 112, //电信拆单通道
+            "run_count": 1,
+            "low_weight": 99
+        },		
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 9,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 5,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 5,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 3,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 2,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 1,
+            "low_weight": 51
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 24
+        }
+		
+    ]
+
+		
+},{//通用通道组【极速成功】
+	"channel_group_id": 64,
+     "channels" : [
+        {
+            "channel_seq_id": 107, //移动订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 1,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 1,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 104, //亚杉移动WT
+            "run_count": 1,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 83, //满帆移动网厅
+            "run_count": 1,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 96, //自动补单移动
+            "run_count": 0,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 113, //自动补单移动2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 121, //易迅捷移动WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 95, //兆蓉移动WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 89, //兆蓉移动
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 92, //人工充值移动
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 108, //联通订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 1,
+            "low_weight": 90
+        },
+        {
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 1,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 84, //满帆联通网厅
+            "run_count": 1,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 124, //亚杉联通WT
+            "run_count": 1,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 97, //自动补单联通
+            "run_count": 0,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 114, //自动补单联通2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 123, //易迅捷联通WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 116, //兆蓉联通WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 90, //兆蓉联通
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 93, //人工充值联通
+            "run_count": 0,
+            "low_weight": 34
+        },
+		{
+            "channel_seq_id": 109, //电信订单池
+            "run_count": 1,
+            "low_weight": 100
+        },
+        {
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 1,
+            "low_weight": 90
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 1,
+            "low_weight": 80
+        },
+		{
+            "channel_seq_id": 117, //亚杉电信WT
+            "run_count": 1,
+            "low_weight": 70
+        },
+		{
+            "channel_seq_id": 85, //满帆电信网厅
+            "run_count": 1,
+            "low_weight": 60
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 1,
+            "low_weight": 52
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 50
+        },
+		{
+            "channel_seq_id": 115, //自动补单电信2
+            "run_count": 1,
+            "low_weight": 47
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 1,
+            "low_weight": 46
+        },
+		{
+            "channel_seq_id": 122, //易迅捷电信WT
+            "run_count": 0,
+            "low_weight": 40
+        },
+		{
+            "channel_seq_id": 105, //兆蓉电信WT
+            "run_count": 0,
+            "low_weight": 36
+        },
+		{
+            "channel_seq_id": 91, //兆蓉电信
+            "run_count": 0,
+            "low_weight": 35
+        },
+		{
+            "channel_seq_id": 98, //自动补单电信
+            "run_count": 0,
+            "low_weight": 25
+        },
+		{
+            "channel_seq_id": 94, //人工充值电信
+            "run_count": 0,
+            "low_weight": 24
+        }
+		
+    ]
+}
+
+]

+ 10 - 0
Monitor/balance-monitoring-chanel.py

@@ -0,0 +1,10 @@
+import requests
+  
+#url = 'http://47.108.14.99:8086/unicom/card/secret/give'
+#url = 'http://192.168.101.7:9888/balance/monitoring/chanel'
+url = 'http://localhost:9888/balance/monitoring/chanel'
+#params1 = {}
+#response = requests.get(url = url,params = params1)
+response = requests.get(url = url)
+print(response.status_code)
+print(response.text)

+ 19 - 0
Monitor/balance_monitoring.log

@@ -0,0 +1,19 @@
+2020-10-09 17-40-03 Fri balance_monitoring.py[line:130] root INFO balance_monitoring.py  17:40: 超过1小时订单总数量为:3,手机号为:
+ ['13980104874', '15979170485', '18070029002']
+2020-10-09 17-40-03 Fri balance_monitoring.py[line:177] root INFO balance_monitoring.py  17:40:超过30分钟无成功的通道:
+['亚杉电信网厅', '兆蓉电信网厅', '易迅捷联通网厅', '满帆移动网厅']
+45
+50
+3
+2020-10-09 17-50-03 Fri balance_monitoring.py[line:130] root INFO balance_monitoring.py  17:50: 超过1小时订单总数量为:3,手机号为:
+ ['13980104874', '15979170485', '15928008301']
+2020-10-09 17-50-03 Fri balance_monitoring.py[line:177] root INFO balance_monitoring.py  17:50:超过30分钟无成功的通道:
+['亚杉电信网厅', '兆蓉电信网厅', '易迅捷联通网厅', '满帆移动网厅']
+55
+00
+3
+2020-10-09 18-00-03 Fri balance_monitoring.py[line:130] root INFO balance_monitoring.py  18:00: 超过1小时订单总数量为:3,手机号为:
+ ['13980104874', '15979170485', '15928008301']
+2020-10-09 18-00-03 Fri balance_monitoring.py[line:177] root INFO balance_monitoring.py  18:00:超过30分钟无成功的通道:
+['亚杉电信网厅', '兆蓉电信网厅', '易迅捷联通网厅']
+05

+ 262 - 0
Monitor/balance_monitoring.py

@@ -0,0 +1,262 @@
+# -*- encoding=utf8 -*-
+
+import time
+import logging
+import pandas as pd
+import pymysql
+from DBUtils.PooledDB import PooledDB
+
+#配置输出日志格式
+LOG_FORMAT = '%(asctime)s %(filename)s[line:%(lineno)d] %(name)s %(levelname)s %(pathname)s  %(message)s'
+
+#配置输出时间格式
+DATE_FORMAT = '%Y-%m-%d %H-%M-%S %a'
+
+logging.basicConfig(level = logging.INFO,
+                    format = LOG_FORMAT,
+                    datefmt = DATE_FORMAT,
+                    filename = r"./balance_monitoring.log")
+
+
+
+#数据库连接
+def conMysql(mysql_host,mysql_port,mysql_user,mysql_password,mysql_db):
+    db = pymysql.connect(host=mysql_host,port=mysql_port,user=mysql_user, password=mysql_password,db=mysql_db,charset = 'utf8',
+                        autocommit = 1)
+    print("数据库连接成功")
+    return db
+
+#创建数据库连接池
+def createPool(db_config):
+   spool = PooledDB(pymysql, 5, **db_config) 
+   return spool
+
+
+#查询余额
+def getData(sql,db):
+  df = pd.read_sql(sql,con=db)
+  db.close
+  #print(df)
+  return df
+
+def saveData():
+  ys_df = chanel_df[(chanel_df['supplier_name'] == '亚杉') & (chanel_df['balance'] < 0)]
+  mf_df = chanel_df[(chanel_df['supplier_name'] == '满帆起航') & (chanel_df['balance'] <= -45000)]
+  zr_df = chanel_df[(chanel_df['supplier_name'] == '兆蓉') & (chanel_df['balance'] <= 0)]
+  zrwt_df = chanel_df[(chanel_df['supplier_name'] == '兆蓉WT') & (chanel_df['balance'] <= 5000)]
+  yxj_df = chanel_df[(chanel_df['supplier_name'] == '易迅捷') & (chanel_df['balance'] <= 10000)]
+  sht_df = cus_df[(cus_df['customer_id'] == 54) & (cus_df['available_balance'] < 50000)] #十荟团
+  ylb_df = cus_df[(cus_df['customer_id'] == 47) & (cus_df['available_balance'] < 40000)] #云喇叭
+  fql_df = cus_df[(cus_df['customer_id'] == 66) & (cus_df['available_balance'] < 20000)] #分期乐
+  #print(fql_df)
+  timestamp = time.time()
+  str_time = time.strftime('%H:%M',time.localtime(timestamp))
+  str_time_int = int(str(str_time).split(':')[-1])
+  print(str(str_time).split(':')[-1])
+  ins_sql = """ INSERT  INTO balance_monitoring VALUES(0,%s,%s,1,%s)  """
+  msg = str_time + ': {} 余额为 {},请及时充值'
+  cus_msg = str_time + ': {} 可用额度为 {};额度不足,请及时处理'
+  ord_msg = str_time + ': 超过1小时订单总数量为:{},手机号为:\n {}'
+  sup_msg = str_time + ':超过30分钟无成功的通道:\n{}'
+  
+  #print(ord_df) 
+  #print(sup_df['channel_id'])
+  #mon_cursor = mon_db.cursor()
+  try:
+    #print(3333)
+    mon_cursor = mon_db.cursor()
+    #print(mon_cursor)
+    if(mf_df.empty is False):
+        #print(444)
+        sup_name = mf_df['supplier_name'].values[0]
+        balance = mf_df['balance'].values[0]
+        mf_msg = msg.format(sup_name,balance)
+        mon_cursor.execute(ins_sql, (mf_msg,group_name1,int(timestamp))) 
+        #print(444)
+    if(zr_df.empty is False):
+        sup_name = zr_df['supplier_name'].values[0]
+        balance = zr_df['balance'].values[0]
+        zr_msg = msg.format(sup_name,balance)
+        mon_cursor.execute(ins_sql, (zr_msg,group_name1,int(timestamp)))
+
+    if(zrwt_df.empty is False):
+        sup_name = zrwt_df['supplier_name'].values[0]
+        balance = zrwt_df['balance'].values[0]
+        zrwt_msg = msg.format(sup_name,balance)
+        mon_cursor.execute(ins_sql, (zrwt_msg,group_name1,int(timestamp)))
+        #print(sup_name)
+    if(yxj_df.empty is False):
+        sup_name = yxj_df['supplier_name'].values[0]
+        balance = yxj_df['balance'].values[0]
+        yxj_msg = msg.format(sup_name,balance)
+        mon_cursor.execute(ins_sql, (yxj_msg,group_name1,int(timestamp)))
+        #print(sup_name)
+
+    if((sht_df.empty is False)  and (str_time_int % 30 == 0)):
+        cus_name = sht_df['customer_name'].values[0]
+        balance = sht_df['available_balance'].values[0]
+        sht_msg = cus_msg.format(cus_name,balance)
+        mon_cursor.execute(ins_sql,(sht_msg,group_name3,int(timestamp)))
+        #print(cus_name) 
+        
+    if((ylb_df.empty is False)  and (str_time_int % 30 == 0)):
+        cus_name = ylb_df['customer_name'].values[0]
+        balance = ylb_df['available_balance'].values[0]
+        ylb_msg = cus_msg.format(cus_name,balance)
+        mon_cursor.execute(ins_sql,(ylb_msg,group_name3,int(timestamp)))
+        #print(222)
+        
+    if((fql_df.empty is False)  and (str_time_int % 30 == 0)):
+        cus_name = fql_df['customer_name'].values[0]
+        balance = fql_df['available_balance'].values[0]
+        fql_msg = cus_msg.format(cus_name,balance)
+        mon_cursor.execute(ins_sql,(fql_msg,group_name3,int(timestamp)))
+        #print('aaa')
+    
+    #print(str_time_int % 10)
+    if((ord_df.empty is False) and (str_time_int % 10 == 0)):
+        print(len(ord_df))
+        total_num = ord_df.shape[0]
+        phone_list = []
+        if total_num >10:
+           phone_list =  ord_df['used_mobile'].head(10).tolist()
+        else:
+           phone_list =  ord_df['used_mobile'].values.tolist()
+        #print(total_num)
+        #print(phone_list)
+        ord_msg1 = ord_msg.format(total_num,phone_list)
+        #print(ord_msg1)
+        mon_cursor.execute(ins_sql,(ord_msg1,group_name4,int(timestamp)))
+        logging.info(ord_msg1)
+    #sup_total_list = ['83','84','85','89','90','91','95','104','105','116','117','118','119','120','121','122','123']
+    sup_total_list = ['83','84','85','89','90','91','95','104','105','116','117','121','122','123']
+    sup_list = list(sup_df['channel_id'].values)
+    #print(sup_list)
+    dif_list = [i for i in sup_total_list if i not in sup_list]
+    #print(dif_list)
+    if (len(dif_list) > 0) and  (str_time_int % 10 == 0):
+        for i in range(len(dif_list)):
+            if dif_list[i] == '83':
+               dif_list[i] = '满帆移动网厅'
+            elif dif_list[i] == '84':
+               dif_list[i] = '满帆联通网厅'
+            elif dif_list[i] == '85':
+               dif_list[i] = '满帆电信网厅'
+            elif dif_list[i] == '89':
+               dif_list[i] = '兆蓉移动'
+            elif dif_list[i] == '90':
+               dif_list[i] = '兆蓉联通'
+            elif dif_list[i] == '91':
+               dif_list[i] = '兆蓉电信'
+            elif dif_list[i] == '95':
+               dif_list[i] = '兆蓉移动网厅'
+            elif dif_list[i] == '104':
+               dif_list[i] = '亚杉移动网厅'
+            elif dif_list[i] == '105':
+               dif_list[i] = '兆蓉电信网厅'
+            elif dif_list[i] == '116':
+               dif_list[i] = '兆蓉联通网厅'
+            elif dif_list[i] == '117':
+               dif_list[i] = '亚杉电信网厅'
+            elif dif_list[i] == '118':
+               dif_list[i] = '智信全国移动'
+            elif dif_list[i] == '119':
+               dif_list[i] = '智信全联通'
+            elif dif_list[i] == '120':
+               dif_list[i] = '智信全国电信'
+            elif dif_list[i] == '121':
+               dif_list[i] = '易迅捷移动网厅'
+            elif dif_list[i] == '122':
+               dif_list[i] = '易迅捷电信网厅'
+            elif dif_list[i] == '123':
+               dif_list[i] = '易迅捷联通网厅'
+        dif_list = sorted(dif_list)
+        #print(dif_list)
+        sup_msg1 = sup_msg.format(dif_list)       
+        mon_cursor.execute(ins_sql,(sup_msg1,group_name2,int(timestamp)))
+        logging.info(sup_msg1)
+    #print(dif_list)
+  
+  except:
+      #mon_db.rollback()
+      print('数据回滚')
+   
+  finally:
+      mon_cursor.close
+      mon_db.close  
+
+
+if __name__ == '__main__':
+
+  #数据库连接信息
+  chanel_db_config = {
+    'host' : '47.95.217.180',
+    'port' : 3306,
+    'user' : 'root',
+    'password' : '93DkChZMgZRyCbWh',
+    'db' : 'fmp',
+    'charset' : 'utf8',
+    'autocommit' : 1
+  }
+  #监控消息数据库连接信息
+  mon_db_config = {
+          'host' : '127.0.0.1',
+          'port' : 9001,
+          'user' : 'root',
+          'password' : 'nibuzhidaowozhidao',
+          'db' : 'monitoring',
+          'charset' : 'utf8',
+          'autocommit' : 1
+  }
+  #数据库连接 
+  #db = conMysql(mysql_host,mysql_port,mysql_user,mysql_password,mysql_db)
+  chanel_db = createPool(chanel_db_config).connection()
+  mon_db =  createPool(mon_db_config).connection()
+  #通道余额
+  chanel_sql = '''SELECT supplier_name,balance  FROM channel_supplier
+                  WHERE  
+                  supplier_name like '%兆蓉%' OR supplier_name like '%满帆%' OR supplier_name like '%亚杉%'
+		  OR supplier_name like '%易迅捷%'
+               '''
+  
+  #客户余额
+  cus_sql = ''' 
+                SELECT customer_id,customer_name,(balance + credit_amount - current_amount) 'available_balance'
+		FROM customer_info
+		WHERE  customer_id IN(47,54) 
+  		 '''
+  
+  #超过1小时未处理订单
+  ord_sql = ''' SELECT  used_mobile,(UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP(apply_date)) 'used_time'
+                FROM flow_order_info
+                WHERE
+                  (UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP(apply_date)) >=3600 AND status NOT IN(4,6)
+                ORDER BY used_time DESC;
+            '''
+  
+  #半小时之内成功的通道
+  sup_sql = '''
+             SELECT 
+		channel_id
+             FROM 
+		flow_order_info 
+             WHERE 
+                (UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP(check_time)) <=1800 AND
+                status = 6  AND 
+                channel_id NOT IN (92,93,94,96,97,98,101,102,103,107,108,109,110,111,112,113,114,115)
+             GROUP BY channel_id;  
+            '''
+  
+  chanel_df = getData(chanel_sql,chanel_db)
+  cus_df = getData(cus_sql,chanel_db)
+  ord_df = getData(ord_sql,chanel_db)
+  sup_df = getData(sup_sql,chanel_db)
+  
+  chanel_db.close
+  
+  #群名:
+  group_name1 = '通道余额监控群'
+  group_name2 = '30分钟无成功通道监控群'
+  group_name3 = '客户授信监控群'
+  group_name4 = '超时订单监控群'
+  saveData()

+ 4666 - 0
Monitor/balance_monitoring_request.log

@@ -0,0 +1,4666 @@
+nohup: ignoring input
+ * Serving Flask app "balance_monitoring_request" (lazy loading)
+ * Environment: production
+   WARNING: This is a development server. Do not use it in a production deployment.
+   Use a production WSGI server instead.
+ * Debug mode: off
+ * Running on http://0.0.0.0:9888/ (Press CTRL+C to quit)
+nohup: ignoring input
+ * Serving Flask app "balance_monitoring_request" (lazy loading)
+ * Environment: production
+   WARNING: This is a development server. Do not use it in a production deployment.
+   Use a production WSGI server instead.
+ * Debug mode: off
+ * Running on http://0.0.0.0:9888/ (Press CTRL+C to quit)
+192.168.101.67 - - [05/Oct/2020 14:33:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:41:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:43:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:44:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:45:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:46:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:47:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:47:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:48:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:49:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:50:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:52:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:53:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:53:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:54:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:55:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:56:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:57:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:58:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:58:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 14:59:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:00:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:02:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:03:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:04:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:05:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:06:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:06:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:07:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:08:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:09:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:10:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:12:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:12:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:13:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:14:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:15:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:16:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:17:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:17:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:18:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:19:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:20:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:22:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:22:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:23:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:24:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:25:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:26:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:27:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:27:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:28:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:29:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:30:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:32:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:33:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:34:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:35:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:36:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:36:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:37:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:38:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:39:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:40:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:42:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:42:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:43:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:44:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:45:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:46:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:47:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:47:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:48:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:49:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:50:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:52:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:52:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:53:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:54:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:55:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:56:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:57:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:57:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:58:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 15:59:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:00:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:02:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:03:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:04:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:05:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:06:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:06:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:07:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:08:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:09:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:10:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:11:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:12:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:13:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:14:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:15:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:16:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:16:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:17:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:18:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:19:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:20:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:22:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:22:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:23:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:24:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:25:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:26:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:27:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:27:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:28:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:29:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:30:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:32:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:33:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:34:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:35:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:35:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:36:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:37:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:38:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:39:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:40:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:41:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:42:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:43:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:44:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:45:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:46:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:46:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:47:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:48:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:49:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:50:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:52:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:52:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:53:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:54:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:55:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:56:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:57:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:57:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:58:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 16:59:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:00:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:02:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:03:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:04:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:05:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:05:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:06:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:07:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:08:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:09:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:10:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:11:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:12:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:13:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:13:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:14:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:15:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:16:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:17:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:18:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:18:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:19:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:20:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:21:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:22:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:23:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:24:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:25:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:26:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:26:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:27:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:28:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:29:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:30:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:32:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:33:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:34:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:34:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:35:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:36:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:37:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:38:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:39:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:39:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:40:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:42:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:43:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:44:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:45:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:45:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:46:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:47:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:48:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:49:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:50:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:50:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:52:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:53:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:54:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:55:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:55:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:56:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:57:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:58:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 17:59:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:00:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:02:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:03:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:04:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:04:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:05:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:06:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:07:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:08:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:09:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:09:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:10:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:12:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:13:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:14:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:15:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:15:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:16:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:17:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:18:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:19:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:20:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:20:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:22:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:23:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:24:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:25:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:25:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:26:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:27:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:28:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:29:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:30:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:32:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:33:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:34:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:34:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:35:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:36:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:37:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:38:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:39:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:39:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:40:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:42:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:43:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:44:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:44:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:45:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:46:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:47:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:48:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:49:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:49:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:50:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:52:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:52:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:53:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:54:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:55:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:56:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:57:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:57:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:58:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 18:59:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:00:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:02:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:03:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:04:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:05:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:06:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:06:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:07:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:08:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:09:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:10:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:11:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:12:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:13:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:14:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:15:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:16:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:16:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:17:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:18:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:19:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:20:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:22:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:22:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:23:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:24:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:25:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:26:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:27:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:27:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:28:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:29:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:30:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:32:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:33:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:34:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:35:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:35:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:36:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:37:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:38:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:39:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:40:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:41:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:42:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:43:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:44:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:45:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:46:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:46:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:47:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:48:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:49:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:50:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:52:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:52:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:53:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:54:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:55:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:56:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:57:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:57:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:58:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 19:59:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:00:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:02:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:03:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:04:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:05:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:05:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:06:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:07:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:08:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:09:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:10:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:11:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:12:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:13:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:14:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:15:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:16:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:16:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:17:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:18:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:19:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:20:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:21:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:22:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:23:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:24:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:25:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:26:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:27:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:27:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:28:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:29:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:30:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:32:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:33:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:34:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:35:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:35:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:36:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:37:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:38:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:39:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:40:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:41:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:42:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:43:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:44:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:45:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:46:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:46:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:47:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:48:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:49:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:50:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:51:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:52:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:53:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:54:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:55:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:56:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:56:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:57:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:58:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 20:59:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:00:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:02:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:03:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:04:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:05:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:05:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:06:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:07:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:08:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:09:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:10:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:11:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:12:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:13:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:14:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:15:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:16:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:16:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:17:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:18:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:19:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:20:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:21:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:22:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:23:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:24:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:25:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:26:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:26:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:27:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:28:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:29:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:30:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:32:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:33:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:34:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:35:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:35:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:36:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:37:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:38:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:39:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:40:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:40:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:42:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:43:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:44:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:45:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:45:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:46:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:47:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:48:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:49:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:50:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:51:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:52:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:53:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:54:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:55:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:56:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:56:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:57:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:58:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 21:59:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:00:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:02:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:03:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:04:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:05:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:05:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:06:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:07:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:08:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:09:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:10:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:10:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:12:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:13:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:14:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:15:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:15:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:16:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:17:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:18:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:19:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:20:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:21:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:22:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:23:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:23:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:24:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:25:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:26:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:27:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:28:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:28:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:29:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:30:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:32:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:33:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:34:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:34:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:35:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:36:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:37:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:38:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:39:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:39:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:40:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:42:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:43:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:44:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:45:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:45:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:46:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:47:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:48:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:49:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:50:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:50:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:52:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:53:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:54:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:55:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:55:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:56:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:57:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:58:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 22:59:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:00:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:02:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:03:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:04:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:04:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:05:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:06:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:07:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:08:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:09:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:09:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:10:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:12:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:13:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:14:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:14:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:15:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:16:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:17:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:18:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:19:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:20:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:20:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:22:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:23:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:24:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:25:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:25:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:26:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:27:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:28:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:29:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:30:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:32:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:33:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:34:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:34:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:35:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:36:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:37:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:38:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:39:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:39:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:40:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:42:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:43:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:44:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:44:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:45:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:46:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:47:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:48:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:49:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:49:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:50:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:52:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:53:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:54:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:55:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:55:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:56:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:57:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:58:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [05/Oct/2020 23:59:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:00:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:01:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:02:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:03:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:03:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:04:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:05:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:06:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:07:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:08:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:08:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:09:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:10:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:12:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:13:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:14:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:14:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:15:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:16:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:17:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:18:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:19:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:19:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:20:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:22:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:23:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:24:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:24:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:25:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:26:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:27:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:28:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:29:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:29:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:30:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:33:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:33:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:34:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:35:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:36:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:37:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:38:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:38:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:39:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:40:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:42:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:43:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:43:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:44:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:45:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:46:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:47:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:48:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:49:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:49:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:50:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:52:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:53:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:54:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:54:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:55:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:56:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:57:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:58:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:59:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 00:59:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:00:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:03:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:03:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:04:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:05:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:06:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:07:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:08:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:08:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:09:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:10:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:12:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:13:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:13:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:14:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:15:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:16:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:17:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:18:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:19:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:19:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:20:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:22:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:23:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:24:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:24:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:25:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:26:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:27:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:28:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:29:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:29:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:30:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:33:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:33:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:34:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:35:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:36:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:37:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:38:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:38:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:39:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:40:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:42:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:43:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:43:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:44:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:45:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:46:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:47:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:48:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:48:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:49:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:50:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:52:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:53:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:54:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:54:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:55:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:56:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:57:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:58:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:59:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 01:59:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:00:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:03:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:03:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:04:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:05:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:06:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:07:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:08:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:08:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:09:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:10:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:12:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:13:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:13:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:14:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:15:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:16:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:17:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:18:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:18:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:19:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:20:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:22:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:23:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:24:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:24:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:25:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:26:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:27:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:28:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:29:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:29:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:30:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:33:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:33:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:34:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:35:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:36:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:37:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:38:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:38:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:39:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:40:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:42:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:43:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:43:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:44:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:45:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:46:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:47:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:48:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:48:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:49:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:50:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:52:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:53:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:54:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:54:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:55:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:56:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:57:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:58:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:59:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 02:59:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:00:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:02:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:03:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:04:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:05:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:06:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:07:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:07:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:08:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:09:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:10:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:12:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:13:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:13:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:14:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:15:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:16:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:17:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:18:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:18:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:19:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:20:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:22:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:23:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:24:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:24:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:25:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:26:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:27:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:28:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:29:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:29:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:30:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:32:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:33:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:34:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:35:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:36:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:37:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:37:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:38:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:39:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:42:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:43:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:43:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:44:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:48:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:48:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:49:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:50:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:52:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:53:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:54:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:54:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:55:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:57:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:58:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:59:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 03:59:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:00:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:02:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:03:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:04:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:05:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:06:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:07:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:07:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:08:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:09:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:10:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:12:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:13:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:13:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:14:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:15:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:16:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:17:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:18:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:18:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:19:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:20:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:22:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:23:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:24:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:24:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:25:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:26:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:27:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:28:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:29:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:29:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:30:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:32:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:33:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:34:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:35:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:36:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:37:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:37:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:38:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:39:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:40:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:43:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:43:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:44:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:45:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:46:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:47:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:48:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:52:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:53:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:53:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:54:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:55:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:56:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:57:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:58:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:58:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 04:59:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:00:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:02:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:03:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:04:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:05:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:06:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:07:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:07:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:08:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:09:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:10:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:12:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:12:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:13:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:14:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:15:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:16:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:17:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:17:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:18:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:19:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:20:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:22:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:23:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:23:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:24:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:25:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:26:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:27:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:28:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:28:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:29:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:30:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:32:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:33:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:34:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:35:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:36:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:36:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:37:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:38:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:39:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:40:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:42:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:42:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:43:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:44:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:45:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:46:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:47:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:47:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:48:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:49:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:50:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:52:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:53:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:53:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:54:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:55:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:56:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:57:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:58:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:58:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 05:59:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:00:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:02:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:03:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:04:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:05:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:06:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:06:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:07:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:08:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:09:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:10:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:12:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:12:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:13:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:14:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:15:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:16:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:17:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:17:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:18:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:19:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:20:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:22:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:23:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:23:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:24:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:25:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:26:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:27:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:28:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:28:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:29:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:30:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:32:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:33:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:34:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:35:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:36:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:36:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:37:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:38:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:39:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:40:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:42:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:42:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:43:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:44:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:45:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:46:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:47:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:47:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:48:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:49:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:50:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:52:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:52:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:53:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:54:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:55:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:56:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:57:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:58:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:58:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 06:59:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:00:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:02:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:03:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:04:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:05:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:06:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:06:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:07:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:08:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:09:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:10:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:12:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:12:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:13:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:14:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:15:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:16:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:17:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:17:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:18:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:19:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:20:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:22:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:22:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:23:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:24:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:25:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:26:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:27:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:27:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:28:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:29:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:30:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:32:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:33:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:34:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:35:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:36:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:36:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:37:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:38:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:39:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:40:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:42:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:42:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:43:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:44:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:45:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:46:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:47:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:47:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:48:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:49:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:50:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:52:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:52:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:53:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:54:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:55:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:56:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:57:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:57:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:58:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 07:59:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:00:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:02:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:03:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:04:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:05:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:06:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:06:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:07:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:08:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:09:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:10:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:11:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:12:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:13:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:14:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:15:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:16:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:16:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:17:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:18:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:19:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:20:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:22:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:22:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:23:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:24:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:25:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:26:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:27:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:27:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:28:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:29:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:30:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:32:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:33:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:33:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:34:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:35:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:36:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:37:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:38:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:38:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:39:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:40:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:41:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:42:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:43:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:44:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:45:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:46:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:46:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:47:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:48:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:49:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:50:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:51:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:52:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:53:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:54:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:54:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:55:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:56:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:57:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:58:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 08:59:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:00:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:03:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:03:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:04:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:05:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:06:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:07:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:08:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:09:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:10:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:12:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:13:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:14:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:14:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:15:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:17:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:17:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:18:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:19:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:20:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:22:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:22:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:23:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:24:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:25:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:26:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:27:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:28:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:28:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:29:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:30:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:32:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:33:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:34:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:35:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:36:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:36:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:37:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:38:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:39:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:40:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:42:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:42:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:43:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:44:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:45:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:46:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:47:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:47:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:48:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:49:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:50:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:52:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:52:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:53:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:54:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:55:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:56:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:57:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:57:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:58:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 09:59:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:00:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:02:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:03:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:04:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:05:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:06:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:06:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:07:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:08:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:09:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:10:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:11:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:12:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:13:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:14:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:15:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:16:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:16:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:17:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:18:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:19:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:20:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:22:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:22:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:23:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:24:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:25:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:26:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:27:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:27:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:28:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:29:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:30:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:32:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:33:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:34:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:35:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:36:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:37:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:38:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:38:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:39:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:40:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:42:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:43:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:44:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:45:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:46:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:47:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:48:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:49:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:49:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:50:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:52:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:53:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:54:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:55:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:56:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:57:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:58:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:58:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 10:59:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:00:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:03:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:04:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:04:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:05:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:07:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:07:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:08:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:09:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:10:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:12:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:13:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:14:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:15:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:16:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:17:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:18:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:18:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:19:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:20:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:22:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:23:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:24:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:25:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:26:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:27:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:28:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:29:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:29:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:30:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:33:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:34:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:35:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:36:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:37:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:38:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:38:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:39:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:40:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:42:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:43:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:44:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:45:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:46:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:47:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:48:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:49:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:49:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:50:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:53:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:53:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:54:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:55:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:56:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:57:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:58:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 11:59:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:00:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:02:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:03:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:04:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:05:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:06:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:07:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:08:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:09:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:10:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:10:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:13:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:13:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:14:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:15:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:16:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:17:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:18:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:19:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:20:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:22:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:23:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:24:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:24:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:25:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:27:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:27:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:28:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:29:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:30:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:33:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:33:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:34:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:35:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:36:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:37:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:38:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:39:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:40:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:42:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:43:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:44:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:44:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:45:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:46:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:47:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:48:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:49:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:49:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:50:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:52:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:53:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:54:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:55:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:55:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:56:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:57:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:58:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 12:59:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:00:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:02:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:03:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:03:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:04:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:05:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:06:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:07:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:08:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:08:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:09:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:10:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:12:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:13:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:14:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:14:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:15:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:16:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:17:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:18:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:19:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:19:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:20:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:22:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:23:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:24:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:25:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:25:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:26:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:27:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:28:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:29:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:30:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:31:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:33:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:33:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:34:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:35:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:36:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:37:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:38:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:38:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:39:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:40:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:42:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:43:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:44:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:44:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:45:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:46:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:47:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:48:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:49:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:49:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:50:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:52:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:53:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:54:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:54:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:55:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:56:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:57:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:58:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 13:59:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:00:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:00:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:03:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:03:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:04:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:05:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:06:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:07:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:08:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:08:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:09:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:10:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:12:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:13:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:14:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:14:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:15:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:16:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:17:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:18:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:19:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:19:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:20:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:22:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:23:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:24:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:24:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:25:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:26:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:27:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:28:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:29:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:29:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:30:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:33:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:33:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:34:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:35:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:36:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:37:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:38:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:38:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:39:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 14:40:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:05:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:16:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:18:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:19:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:20:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:20:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:22:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:23:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:24:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:25:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:25:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:26:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:27:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:28:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:29:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:30:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:32:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:33:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:34:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:34:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:35:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:36:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:37:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:38:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:39:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:39:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:40:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:42:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:43:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:44:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:45:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:45:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:46:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:47:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:48:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:49:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:50:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:50:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:52:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:53:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:54:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:55:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:55:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:56:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:57:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:58:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 20:59:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:00:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:02:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:03:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:04:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:04:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:05:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:06:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:07:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:08:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:09:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:09:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:10:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:12:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:13:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:14:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:15:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:15:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:16:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:17:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:18:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:19:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:20:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:20:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:22:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:23:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:24:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:25:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:25:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:26:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:27:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:28:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:29:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:30:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:32:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:33:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:34:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:34:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:35:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:36:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:37:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:38:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:39:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:39:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:40:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:42:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:43:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:44:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:44:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:45:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:46:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:47:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:48:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:49:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:50:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:50:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:52:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:53:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:54:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:55:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:55:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:56:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:57:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:58:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 21:59:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:00:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:02:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:03:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:04:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:04:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:05:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:06:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:07:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:08:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:09:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:09:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:10:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:12:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:13:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:14:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:14:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:15:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:16:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:17:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:18:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:19:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:19:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:20:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:22:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:23:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:24:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:25:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:25:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:26:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:27:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:28:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:29:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:30:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:32:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:33:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:34:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:34:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:35:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:36:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:37:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:38:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:39:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:39:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:40:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:42:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:43:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:44:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:44:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:45:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:46:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:47:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:48:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:49:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:49:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:50:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:52:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:53:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:54:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:55:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:55:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:56:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:57:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:58:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 22:59:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:00:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:02:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:03:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:04:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:04:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:05:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:06:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:07:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:08:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:09:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:09:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:10:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:12:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:13:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:14:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:14:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:15:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:16:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:17:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:18:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:19:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:19:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:20:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:22:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:23:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:24:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:25:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:25:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:26:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:27:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:28:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:29:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:30:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:32:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:33:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:34:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:34:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:35:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:36:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:37:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:38:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:39:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:39:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:40:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:42:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:43:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:44:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:45:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:45:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:46:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:47:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:48:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:49:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:50:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:50:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:52:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:53:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:54:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:55:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:55:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:56:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:57:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:58:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [06/Oct/2020 23:59:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:00:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:01:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:02:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:03:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:04:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:05:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:06:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:06:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:07:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:08:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:09:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:10:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:12:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:12:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:13:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:14:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:15:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:16:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:17:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:17:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:18:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:19:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:20:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:22:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:23:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:23:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:24:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:25:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:26:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:27:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:28:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:28:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:29:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:30:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:32:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:33:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:34:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:35:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:36:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:36:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:37:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:38:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:39:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:40:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:42:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:42:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:43:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:44:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:45:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:46:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:47:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:47:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:48:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:49:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:50:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:52:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:53:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:53:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:54:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:55:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:56:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:57:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:58:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:58:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 00:59:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:00:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:02:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:03:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:04:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:05:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:06:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:06:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:07:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:08:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:09:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:10:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:12:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:12:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:13:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:14:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:15:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:16:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:17:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:17:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:18:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:19:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:20:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:22:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:23:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:23:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:24:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:25:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:26:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:27:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:28:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:28:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:29:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:30:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:32:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:33:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:34:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:35:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:36:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:36:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:37:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:38:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:39:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:40:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:42:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:42:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:43:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:44:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:45:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:46:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:47:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:47:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:48:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:49:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:50:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:52:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:53:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:53:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:54:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:55:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:56:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:57:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:58:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:58:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 01:59:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:00:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:02:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:03:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:04:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:05:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:06:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:07:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:07:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:08:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:09:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:10:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:12:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:12:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:13:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:14:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:15:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:16:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:17:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:17:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:18:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:19:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:20:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:22:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:23:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:23:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:24:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:25:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:26:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:27:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:28:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:28:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:29:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:30:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:32:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:33:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:34:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:35:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:36:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:37:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:37:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:38:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:39:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:40:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:42:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:42:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:43:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:44:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:45:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:46:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:47:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:47:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:48:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:49:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:50:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:52:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:53:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:53:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:54:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:55:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:56:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:57:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:58:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:58:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 02:59:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:00:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:02:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:03:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:04:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:05:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:06:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:07:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:07:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:08:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:09:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:10:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:12:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:12:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:13:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:14:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:15:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:16:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:17:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:18:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:18:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:19:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:20:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:22:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:23:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:23:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:24:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:25:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:26:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:27:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:28:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:28:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:29:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:30:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:32:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:33:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:34:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:35:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:36:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:37:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:37:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:38:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:39:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:40:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:43:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:43:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:44:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:45:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:52:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:53:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:53:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:54:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:55:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:56:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:57:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:58:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:59:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 03:59:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:00:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:02:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:03:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:04:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:05:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:06:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:07:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:07:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:08:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:09:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:10:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:12:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:13:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:13:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:14:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:15:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:16:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:17:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:18:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:18:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:19:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:20:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:22:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:23:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:23:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:24:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:25:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:26:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:27:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:28:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:28:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:29:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:30:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:32:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:33:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:34:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:35:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:36:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:37:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:37:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:38:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:39:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:40:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:43:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:43:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:44:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:45:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:46:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:52:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:53:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:53:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:54:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:55:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:56:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:57:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:58:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:58:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 04:59:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:00:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:02:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:03:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:04:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:05:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:06:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:07:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:07:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:08:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:09:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:10:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:12:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:13:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:13:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:14:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:15:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:16:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:17:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:18:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:18:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:19:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:20:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:22:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:23:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:23:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:24:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:25:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:26:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:27:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:28:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:29:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:29:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:30:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:32:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:33:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:34:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:35:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:36:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:37:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:37:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:38:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:39:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:40:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:43:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:43:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:44:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:45:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:52:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:53:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:53:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:54:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:55:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:56:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:57:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:58:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:59:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 05:59:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:00:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:02:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:03:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:04:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:05:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:06:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:07:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:07:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:08:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:09:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:10:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:12:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:13:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:13:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:14:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:15:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:16:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:17:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:18:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:18:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:19:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:20:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:22:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:23:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:24:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:24:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:25:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:26:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:27:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:28:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:29:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:29:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:30:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:32:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:33:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:34:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:35:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:36:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:37:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:37:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:38:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:39:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:40:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:42:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:43:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:43:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:44:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:48:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:48:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:49:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:50:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:52:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:53:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:54:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:54:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:55:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:57:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:58:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:59:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 06:59:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:00:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:02:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:03:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:04:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:05:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:06:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:07:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:07:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:08:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:09:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:10:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:12:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:13:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:13:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:14:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:15:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:16:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:17:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:18:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:18:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:19:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:20:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:22:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:23:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:24:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:24:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:25:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:26:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:27:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:28:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:29:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:29:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:30:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:32:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:33:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:34:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:35:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:36:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:37:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:37:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:38:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:39:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:42:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:43:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:43:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:44:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:48:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:48:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:49:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:50:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:52:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:53:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:54:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:54:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:55:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:57:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:58:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:59:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 07:59:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:00:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:02:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:03:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:04:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:05:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:06:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:07:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:07:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:08:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:09:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:10:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:12:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:13:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:13:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:14:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:15:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:16:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:17:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:18:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:18:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:19:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:20:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:22:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:23:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:24:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:24:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:25:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:26:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:27:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:28:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:29:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:29:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:30:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:32:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:33:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:34:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:35:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:36:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:37:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:37:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:38:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:39:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:42:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:43:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:43:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:44:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:48:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:48:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:49:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:50:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:52:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:53:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:54:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:54:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:55:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:57:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:58:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:59:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 08:59:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:00:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:03:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:04:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:05:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:06:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:07:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:08:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:08:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:09:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:10:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:12:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:13:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:14:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:14:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:15:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:17:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:17:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:18:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:19:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:20:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:22:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:23:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:24:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:25:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:26:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:27:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:28:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:28:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:29:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:30:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:33:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:34:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:35:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:35:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:37:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:37:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:38:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:39:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:42:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:43:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:44:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:45:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:46:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:47:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:48:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:49:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:49:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:50:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:52:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:53:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:54:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:55:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:56:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:57:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:58:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 09:59:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:00:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:03:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:04:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:04:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:05:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:06:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:07:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:08:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:09:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:09:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:10:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:12:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:13:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:14:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:15:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:15:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:16:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:17:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:18:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:19:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:20:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:21:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:22:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:23:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:24:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:25:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:26:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:26:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:27:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:28:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:29:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:30:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:32:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:33:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:34:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:34:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:35:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:36:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:37:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:38:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:39:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:39:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:40:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:42:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:43:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:44:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:45:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:45:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:46:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:47:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:48:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:49:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:50:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:51:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:52:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:53:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:54:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:55:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:56:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:56:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:57:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:58:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 10:59:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:00:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:02:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:03:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:04:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:04:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:05:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:06:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:07:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:08:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:09:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:09:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:10:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:12:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:13:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:14:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:15:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:15:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:16:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:17:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:18:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:19:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:20:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:21:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:22:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:23:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:24:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:25:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:26:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:26:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:27:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:28:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:29:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:30:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:32:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:33:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:34:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:34:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:35:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:36:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:37:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:38:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:39:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:39:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:40:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:42:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:43:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:44:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:45:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:45:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:46:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:47:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:48:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:49:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:50:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:51:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:52:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:53:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:54:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:55:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:56:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:56:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:57:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:58:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 11:59:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:00:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:02:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:03:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:04:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:04:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:05:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:06:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:07:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:08:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:09:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:09:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:10:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:12:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:13:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:14:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:15:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:15:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:16:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:17:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:18:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:19:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:20:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:21:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:22:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:23:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:24:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:25:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:26:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:26:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:27:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:28:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:29:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:30:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:32:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:33:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:34:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:34:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:35:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:36:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:37:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:38:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:39:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:40:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:40:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:42:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:43:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:44:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:45:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:45:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:46:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:47:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:48:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:49:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:50:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:51:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:52:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:53:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:54:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:55:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:56:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:56:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:57:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:58:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 12:59:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:00:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:02:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:03:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:04:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:05:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:05:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:06:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:07:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:08:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:09:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:10:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:10:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:12:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:13:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:14:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:15:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:15:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:16:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:17:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:18:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:19:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:20:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:21:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:22:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:23:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:24:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:25:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:26:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:26:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:27:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:28:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:29:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:30:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:32:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:33:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:34:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:35:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:35:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:36:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:37:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:38:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:39:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:40:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:40:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:42:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:43:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:44:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:45:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:45:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:46:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:47:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:48:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:49:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:50:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:51:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:52:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:53:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:54:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:55:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:56:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:56:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:57:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:58:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 13:59:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:00:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:02:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:03:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:04:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:04:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:05:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:06:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:07:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:08:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:09:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:10:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:10:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:12:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:13:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:14:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:15:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:15:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:16:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:17:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:18:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:19:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:20:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:21:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:22:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:23:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:24:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:25:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:26:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:26:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:27:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:28:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:29:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:30:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:32:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:33:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:34:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:34:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:35:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:36:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:37:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:38:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:39:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:39:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:40:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:42:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:43:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:44:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:45:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:45:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:46:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:47:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:48:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:49:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:50:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:51:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:52:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:53:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:54:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:55:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:56:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:56:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:57:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:58:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 14:59:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:00:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:02:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:03:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:04:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:04:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:05:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:06:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:07:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:08:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:09:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:09:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:10:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:12:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:13:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:14:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:15:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:15:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:16:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:17:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:18:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:19:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:20:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:21:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:22:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:23:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:24:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:25:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:26:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:26:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:27:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:28:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:29:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:30:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:32:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:33:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:34:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:34:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:35:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:36:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:37:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:38:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:39:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:39:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:40:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:42:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:43:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:44:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:45:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:45:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:46:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:47:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:48:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:49:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:50:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:51:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:52:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:53:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:54:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:55:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:56:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:56:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:57:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:58:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 15:59:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:00:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:02:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:03:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:04:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:04:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:05:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:06:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:07:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:08:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:09:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:09:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:10:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:12:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:13:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:14:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:15:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:15:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:16:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:17:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:18:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:19:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:20:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:21:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:22:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:23:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:23:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:24:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:25:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:26:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:27:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:28:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:28:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:29:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:30:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:32:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:33:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:34:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:35:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:36:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:37:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:37:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:38:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:39:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:40:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:42:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:42:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:43:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:44:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:45:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:46:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:47:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:47:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:48:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:49:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:50:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:52:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:53:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:53:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:54:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:55:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:56:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:57:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:58:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:58:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 16:59:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:00:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:02:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:03:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:04:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:05:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:06:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:07:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:07:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:08:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:09:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:10:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:12:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:12:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:13:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:14:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:15:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:16:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:17:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:17:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:18:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:19:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:20:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:21:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:22:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:23:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:24:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:25:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:25:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:26:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:27:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:28:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:29:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:30:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:31:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:32:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:33:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:34:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:35:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:36:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:36:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:37:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:38:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:39:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:40:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:42:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:42:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:43:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:44:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:45:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:46:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:47:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:47:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:48:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:49:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:50:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:52:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:52:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:53:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:54:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:55:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:56:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:57:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:57:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:58:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 17:59:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:00:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:02:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:03:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:04:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:05:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:06:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:06:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:07:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:08:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:09:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:10:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:12:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:12:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:13:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:14:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:15:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:16:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:17:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:17:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:18:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:19:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:20:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:22:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:23:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:23:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:24:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:25:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:26:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:27:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:28:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:28:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:29:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:30:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:32:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:33:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:34:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:35:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:36:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:36:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:37:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:38:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:39:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:40:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:42:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:42:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:43:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:44:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:45:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:46:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:47:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:47:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:48:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:49:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:50:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:52:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:53:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:53:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:54:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:55:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:56:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:57:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:58:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:58:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 18:59:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:00:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:02:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:03:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:04:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:05:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:06:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:06:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:07:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:08:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:09:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:10:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:12:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:12:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:13:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:14:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:15:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:16:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:17:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:17:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:18:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:19:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:20:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:22:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:23:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:23:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:24:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:25:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:26:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:27:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:28:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:28:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:29:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:30:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:32:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:33:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:34:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:35:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:36:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:36:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:37:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:38:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:39:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:40:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:42:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:42:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:43:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:44:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:45:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:46:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:47:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:47:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:48:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:49:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:50:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:52:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:53:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:53:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:54:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:55:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:56:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:57:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:58:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:58:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 19:59:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:00:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:02:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:03:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:04:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:05:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:06:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:07:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:07:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:08:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:09:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:10:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:12:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:12:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:13:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:14:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:15:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:16:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:17:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:17:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:18:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:19:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:20:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:22:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:23:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:23:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:24:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:25:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:26:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:27:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:28:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:28:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:29:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:30:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:32:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:33:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:34:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:35:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:36:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:37:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:37:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:38:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:39:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:40:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:42:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:42:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:43:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:44:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:45:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:46:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:47:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:48:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:48:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:49:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:50:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:52:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:53:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:53:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:54:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:55:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:56:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:57:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:58:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:58:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 20:59:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:00:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:02:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:03:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:04:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:05:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:06:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:07:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:07:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:08:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:09:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:10:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:12:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:13:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:13:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:14:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:15:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:16:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:17:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:18:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:18:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:19:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:20:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:22:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:23:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:23:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:24:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:25:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:26:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:27:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:28:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:29:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:30:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:33:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:33:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:34:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:35:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:36:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:37:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:38:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:39:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:40:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:42:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:43:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:44:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:44:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:45:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:47:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:47:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:48:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:49:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:50:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:52:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:53:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:54:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:55:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:56:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:57:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:58:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:58:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 21:59:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:00:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:03:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:04:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:04:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:05:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:06:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:07:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:08:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:09:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:09:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:10:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:12:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:13:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:14:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:15:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:15:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:16:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:17:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:18:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:19:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:20:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:21:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:22:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:23:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:24:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:25:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:26:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:26:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:27:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:28:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:29:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:30:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:32:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:33:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:34:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:34:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:35:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:36:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:37:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:38:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:39:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:39:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:40:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:42:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:43:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:44:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:45:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:45:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:46:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:47:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:48:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:49:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:50:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:51:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:52:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:53:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:54:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:55:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:56:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:56:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:57:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:58:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 22:59:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:00:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:02:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:03:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:04:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:04:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:05:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:06:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:07:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:08:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:09:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:09:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:10:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:12:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:13:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:14:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:15:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:15:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:16:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:17:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:18:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:19:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:20:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:21:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:22:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:23:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:24:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:25:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:26:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:26:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:27:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:28:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:29:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:30:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:32:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:33:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:34:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:34:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:35:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:36:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:37:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:38:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:39:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:39:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:40:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:42:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:43:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:44:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:45:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:45:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:46:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:47:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:48:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:49:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:50:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:51:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:52:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:53:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:54:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:55:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:56:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:56:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:57:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:58:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [07/Oct/2020 23:59:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:00:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:01:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:02:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:03:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:04:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:04:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:05:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:06:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:07:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:08:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:09:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:09:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:10:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:12:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:13:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:14:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:14:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:15:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:16:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:17:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:18:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:19:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:20:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:20:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:22:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:22:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:23:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:24:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:25:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:26:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:27:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:27:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:28:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:29:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:30:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:32:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:33:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:33:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:34:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:35:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:36:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:37:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:38:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:38:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:39:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:40:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:42:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:43:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:44:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:44:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:45:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:46:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:47:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:48:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:49:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:49:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:50:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:52:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:53:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:54:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:55:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:55:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:56:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:57:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:58:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 00:59:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:00:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:00:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:03:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:03:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:04:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:05:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:06:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:07:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:08:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:08:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:09:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:10:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:12:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:13:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:14:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:14:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:15:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:16:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:17:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:18:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:19:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:19:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:20:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:22:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:23:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:24:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:25:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:25:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:26:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:27:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:28:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:29:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:30:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:31:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:33:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:33:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:34:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:35:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:36:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:37:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:38:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:38:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:39:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:40:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:42:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:43:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:44:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:44:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:45:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:46:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:47:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:48:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:49:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:49:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:50:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:52:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:53:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:54:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:55:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:55:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:56:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:57:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:58:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 01:59:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:00:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:00:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:03:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:03:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:04:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:05:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:06:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:07:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:08:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:08:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:09:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:10:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:12:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:13:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:14:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:14:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:15:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:16:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:17:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:18:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:19:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:19:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:20:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:21:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:22:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:23:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:24:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:24:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:25:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:26:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:27:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:28:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:29:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:29:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:30:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:33:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:33:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:34:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:35:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:36:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:37:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:38:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:38:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:39:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:40:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:42:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:43:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:43:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:44:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:45:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:46:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:47:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:48:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:49:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:49:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:50:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:52:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:53:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:54:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:54:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:55:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:56:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:57:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:58:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:59:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 02:59:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:00:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:03:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:03:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:04:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:05:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:06:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:07:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:08:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:08:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:09:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:10:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:12:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:13:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:14:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:14:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:15:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:16:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:17:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:18:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:19:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:19:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:20:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:22:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:23:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:24:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:24:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:25:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:26:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:27:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:28:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:29:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:29:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:30:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:33:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:33:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:34:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:35:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:36:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:37:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:38:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:38:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:39:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:40:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:42:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:43:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:44:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:44:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:45:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:46:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:47:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:48:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:49:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:49:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:50:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:52:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:53:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:54:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:54:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:55:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:56:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:57:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:58:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:59:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 03:59:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:00:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:03:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:03:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:04:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:05:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:06:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:07:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:08:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:08:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:09:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:10:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:12:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:13:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:14:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:14:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:15:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:16:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:17:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:18:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:19:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:19:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:20:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:22:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:23:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:24:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:24:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:25:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:26:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:27:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:28:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:29:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:29:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:30:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:33:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:33:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:34:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:35:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:36:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:37:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:38:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:38:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:39:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:40:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:42:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:43:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:44:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:44:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:45:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:46:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:47:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:48:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:49:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:49:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:50:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:52:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:53:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:54:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:54:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:55:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:56:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:57:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:58:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:59:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 04:59:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:00:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:03:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:03:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:04:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:05:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:06:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:07:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:08:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:08:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:09:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:10:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:12:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:13:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:14:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:14:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:15:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:16:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:17:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:18:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:19:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:19:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:20:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:22:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:23:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:24:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:24:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:25:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:26:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:27:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:28:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:29:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:29:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:30:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:33:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:33:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:34:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:35:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:36:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:37:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:38:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:38:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:39:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:40:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:42:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:43:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:44:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:44:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:45:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:46:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:47:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:48:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:49:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:49:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:50:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:52:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:53:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:54:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:54:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:55:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:56:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:57:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:58:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:59:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 05:59:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:00:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:03:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:03:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:04:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:05:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:06:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:07:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:08:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:08:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:09:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:10:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:12:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:13:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:14:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:14:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:15:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:16:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:17:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:18:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:19:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:19:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:20:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:22:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:23:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:24:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:24:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:25:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:27:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:27:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:28:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:29:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:30:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:33:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:34:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:34:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:35:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:36:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:37:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:38:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:39:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:40:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:42:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:43:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:44:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:45:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:47:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:48:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:48:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:49:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:50:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:52:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:53:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:54:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:55:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:56:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:57:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:58:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:59:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 06:59:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:00:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:03:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:04:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:05:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:06:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:07:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:08:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:08:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:09:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:10:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:12:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:13:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:14:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:15:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:16:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:17:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:18:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:19:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:20:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:20:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:23:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:23:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:24:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:25:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:26:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:27:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:28:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:29:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:30:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:32:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:33:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:34:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:35:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:36:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:37:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:38:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:39:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:40:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:42:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:43:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:44:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:44:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:45:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:46:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:47:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:48:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:49:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:50:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:52:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:53:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:54:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:55:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:55:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:57:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:58:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:58:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 07:59:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:00:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:03:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:04:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:04:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:05:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:07:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:07:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:08:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:09:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:10:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:12:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:13:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:14:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:15:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:16:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:17:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:18:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:18:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:19:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:20:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:22:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:23:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:24:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:25:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:26:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:27:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:28:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:29:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:30:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:30:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:33:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:34:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:35:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:36:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:37:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:38:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:39:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:39:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:40:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:42:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:43:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:44:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:45:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:46:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:47:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:48:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:49:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:50:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:52:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:53:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:54:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:54:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:55:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:57:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:57:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:58:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 08:59:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:00:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:03:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:03:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:04:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:05:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:07:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:08:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:09:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:09:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:10:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:13:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:14:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:15:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:16:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:17:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:18:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:19:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:20:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:22:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:23:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:24:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:25:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:27:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:28:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:28:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:29:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:30:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:33:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:34:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:35:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:37:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:37:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:38:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:39:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:42:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:43:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:43:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:44:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:48:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:48:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:49:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:50:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:52:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:53:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:54:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:54:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:55:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:57:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:58:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:59:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 09:59:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:00:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:02:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:03:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:04:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:05:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:05:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:06:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:07:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:08:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:09:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:10:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:10:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:12:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:12:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:13:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:14:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:15:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:16:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:17:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:18:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:18:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:19:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:20:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:22:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:23:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:23:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:24:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:25:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:26:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:27:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:28:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:28:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:29:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:30:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:32:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:33:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:34:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:35:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:36:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:37:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:37:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:38:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:39:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:40:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:42:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:43:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:43:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:44:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:45:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:46:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:47:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:48:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:48:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:49:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:50:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:52:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:53:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:53:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:54:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:55:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:56:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:57:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:58:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:58:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 10:59:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:00:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:02:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:03:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:04:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:05:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:06:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:07:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:07:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:08:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:09:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:10:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:12:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:13:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:13:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:14:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:15:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:16:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:17:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:18:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:18:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:19:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:20:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:22:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:23:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:23:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:24:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:25:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:26:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:27:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:28:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:28:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:29:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:30:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:32:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:33:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:34:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:35:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:36:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:37:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:37:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:38:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:39:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:40:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:43:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:43:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:44:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:45:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:52:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:53:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:53:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:54:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:55:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:56:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:57:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:58:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:58:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 11:59:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:00:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:02:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:03:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:04:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:05:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:06:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:07:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:07:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:08:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:09:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:10:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:12:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:13:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:13:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:14:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:15:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:16:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:17:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:18:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:18:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:19:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:20:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:21:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:22:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:23:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:24:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:25:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:26:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:26:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:27:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:28:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:29:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:30:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:31:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:32:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:33:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:34:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:35:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:36:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:37:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:37:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:38:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:39:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:40:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:42:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:42:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:43:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:44:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:45:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:46:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:47:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:47:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:48:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:49:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:50:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:52:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:53:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:53:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:56:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:57:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:58:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 12:59:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:00:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:02:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:03:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:04:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:04:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:05:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:06:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:07:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:08:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:09:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:09:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:10:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:12:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:12:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:13:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:14:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:15:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:16:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:17:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:17:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:18:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:19:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:20:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:21:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:22:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:23:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:24:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:25:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:25:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:26:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:27:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:28:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:29:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:30:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:31:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:32:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:33:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:34:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:35:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:35:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:36:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:37:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:38:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:39:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:40:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:41:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:42:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:43:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:43:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:44:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:45:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:46:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:47:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:48:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:48:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:49:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:50:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:51:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:52:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:53:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:54:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:55:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:56:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:57:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:58:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:59:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 13:59:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:00:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:02:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:03:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:04:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:05:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:06:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:07:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:07:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:08:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:09:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:10:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:12:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:13:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:13:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:14:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:15:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:16:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:17:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:18:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:18:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:19:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:20:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:22:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:23:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:23:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:24:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:25:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:26:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:27:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:28:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:29:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:29:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:30:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:32:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:33:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:34:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:35:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:36:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:37:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:37:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:38:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:39:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:40:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:41:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:42:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:42:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:43:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:44:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:45:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:46:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:47:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:47:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:48:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:49:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:50:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:51:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:52:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:52:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:53:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:54:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:55:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:56:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:57:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:57:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:58:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 14:59:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:00:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:01:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:02:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:02:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:03:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:04:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:05:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:06:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:07:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:07:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:08:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:09:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:10:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:11:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:12:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:12:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:13:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:14:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:15:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:16:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:17:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:17:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:18:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:19:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:20:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:21:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:22:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:22:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:23:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:24:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:25:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:26:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:27:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:27:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:28:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:29:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:30:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:31:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:32:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:32:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:33:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:34:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:35:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:36:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:37:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:37:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:38:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:39:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:40:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:41:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:42:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:43:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:43:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:44:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:45:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:46:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:47:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:48:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:48:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:49:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:50:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:51:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:52:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:53:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:53:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:54:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:55:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:56:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:57:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:58:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:58:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 15:59:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:00:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:01:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:02:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:03:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:03:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:04:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:05:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:06:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:07:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:08:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:09:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:10:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:11:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:12:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:12:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:13:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:14:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:15:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:16:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:17:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:17:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:18:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:19:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:20:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:21:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:22:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:22:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:23:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:24:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:25:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:26:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:27:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:27:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:28:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:29:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:30:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:31:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:32:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:33:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:33:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:34:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:35:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:36:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:37:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:38:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:38:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:39:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:40:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:41:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:42:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:43:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:43:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:44:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:45:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:51:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:52:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:53:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:53:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:54:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:55:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:56:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:57:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:58:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:58:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 16:59:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:00:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:01:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:02:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:03:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:03:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:04:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:05:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:06:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:07:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:08:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:08:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:09:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:10:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:11:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:12:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:13:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:13:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:14:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:15:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:16:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:17:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:18:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:18:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:19:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:20:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:21:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:22:15] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:23:05] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:23:55] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:24:45] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:25:35] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:26:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:27:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:28:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:28:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:29:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:30:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:31:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:32:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:33:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:33:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:34:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:35:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:36:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:37:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:38:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:38:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [08/Oct/2020 17:39:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+Traceback (most recent call last):
+  File "balance_monitoring_request.py", line 7, in <module>
+    import pandas as pd
+ModuleNotFoundError: No module named 'pandas'
+nohup: ignoring input
+Traceback (most recent call last):
+  File "balance_monitoring_request.py", line 7, in <module>
+    import pandas as pd
+ModuleNotFoundError: No module named 'pandas'
+Traceback (most recent call last):
+  File "balance_monitoring_request.py", line 9, in <module>
+    import pymysql
+ModuleNotFoundError: No module named 'pymysql'
+ * Serving Flask app "balance_monitoring_request" (lazy loading)
+ * Environment: production
+   WARNING: This is a development server. Do not use it in a production deployment.
+   Use a production WSGI server instead.
+ * Debug mode: off
+ * Running on http://0.0.0.0:9888/ (Press CTRL+C to quit)
+127.0.0.1 - - [09/Oct/2020 13:37:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:38:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:39:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:40:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:40:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:41:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:42:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:43:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:45:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:46:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:47:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:48:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:48:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:49:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:50:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:51:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:52:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:53:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:53:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:54:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:55:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:56:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:57:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:58:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:58:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 13:59:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:00:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:01:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:02:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:03:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:03:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:04:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:05:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:06:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:07:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:08:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:08:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:09:49] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:10:39] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:11:29] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:12:19] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:13:09] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:13:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:16:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:18:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:21:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:23:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:24:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:25:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:25:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:26:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:27:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:28:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:29:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:30:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:30:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:31:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:32:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:33:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:34:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:35:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:35:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:36:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:37:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:38:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:39:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:40:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:40:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:41:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:42:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:43:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:44:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:45:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:45:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:46:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:47:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:48:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:49:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:50:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:50:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:51:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:52:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:53:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:54:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:55:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:55:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:56:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:57:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:58:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 14:59:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:00:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:00:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:01:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:02:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:03:23] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:04:13] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:05:03] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:05:53] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:06:43] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:07:33] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:08:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:09:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:10:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 15:10:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+ * Serving Flask app "balance_monitoring_request" (lazy loading)
+ * Environment: production
+   WARNING: This is a development server. Do not use it in a production deployment.
+   Use a production WSGI server instead.
+ * Debug mode: off
+ * Running on http://0.0.0.0:9888/ (Press CTRL+C to quit)
+192.168.101.67 - - [09/Oct/2020 16:31:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:32:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:33:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:34:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:35:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:36:11] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:37:01] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:37:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:38:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:39:31] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:40:21] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:42:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:42:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:43:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:44:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:45:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:46:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:47:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:47:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:48:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:49:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:50:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:51:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:52:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:52:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:53:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:54:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:55:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:56:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:57:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:57:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:58:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 16:59:38] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:00:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:02:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:03:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:03:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:04:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:05:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:06:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:07:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:08:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:08:54] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:09:44] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:10:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:11:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:13:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:14:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:14:50] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:15:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:16:30] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:17:20] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:18:10] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:19:00] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:19:51] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:20:41] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:21:59] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:23:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:24:06] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:24:56] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:25:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:26:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:27:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:28:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:29:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:29:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:30:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:31:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:32:27] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:33:17] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:34:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:34:57] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:35:47] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:36:37] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:37:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:38:18] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:39:08] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:39:58] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:40:48] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:42:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:43:24] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:44:14] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:45:04] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:46:22] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:47:12] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:48:02] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:48:52] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:49:42] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:50:32] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:52:46] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:53:36] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:54:26] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:55:16] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:56:34] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 17:57:25] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 18:03:40] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 18:06:07] "GET /balance/monitoring/chanel HTTP/1.1" 200 -
+192.168.101.67 - - [09/Oct/2020 18:07:28] "GET /balance/monitoring/chanel HTTP/1.1" 200 -

+ 126 - 0
Monitor/balance_monitoring_request.py

@@ -0,0 +1,126 @@
+# -*- encoding=utf8 -*-
+
+import os
+import time
+import json
+import pymysql
+import logging
+import requests
+from decimal import *
+from flask_sqlalchemy import SQLAlchemy
+from flask import request,Flask,jsonify
+
+
+
+
+"""
+#配置输出日志格式
+LOG_FORMAT = '%(asctime)s %(filename)s[line:%(lineno)d] %(name)s %(levelname)s %(pathname)s  %(message)s'
+
+#配置输出时间格式
+DATE_FORMAT = '%Y-%m-%d %H-%M-%S %a'
+
+logging.basicConfig(level = logging.INFO,
+                    format = LOG_FORMAT,
+                    datefmt = DATE_FORMAT,
+                    filename = r"../logs/balance_run.log")
+"""
+
+
+app = Flask(__name__)
+
+
+class Config(object):
+    #sqlalchemy的配置参数
+    
+    DIALECT = 'mysql'
+    DRIVER='pymysql'
+    USERNAME = 'root'
+    PASSWORD = 'nibuzhidaowozhidao'
+    HOST = '127.0.0.1'
+    PORT = 9001
+    DATABASE = 'monitoring'
+    
+    #SQLALCHEMY_DATABASE_URI =  "mysql+ pymysql://root:nibuzhidaowozhidao@120.78.198.155:9001/monitoring?charset=utf8" 
+    SQLALCHEMY_DATABASE_URI = "{}+{}://{}:{}@{}:{}/{}?charset=utf8".format(DIALECT,DRIVER,USERNAME,PASSWORD,HOST,PORT,DATABASE)
+
+
+    #设置sqlalchemy自动跟踪数据库
+    SQLALCHEMY_TRACK_MODIFICATIONS = True
+    
+    
+app.config.from_object(Config)
+db = SQLAlchemy(app) 
+#print(db)
+
+#创建数据库模型类
+class Monitor(db.Model):   
+    __tablename__ = 'balance_monitoring'
+    id  = db.Column(db.Integer,primary_key=True,autoincrement=True)
+    msg  = db.Column(db.String(512))
+    group_name  = db.Column(db.String(128))
+    status  = db.Column(db.Integer)
+    timestamp  = db.Column(db.BigInteger)
+
+    
+@app.route('/balance/monitoring/chanel', methods=['GET'])
+def chanelBalanceMonitoring():
+    #print(11)
+    monitor_list = Monitor.query.filter_by(status = 1).all()
+    
+    result = []
+    if(len(monitor_list) > 0):
+        for i in range(len(monitor_list)):
+            monitor = monitor_list[i]
+            result.append([monitor.msg,monitor.group_name])
+            monitor.status = 2
+            db.session.add(monitor)
+            db.session.commit()
+
+    
+    #print(result)
+    return jsonify(result)
+ 
+@app.route('/monitor/balance',methods=['POST']) 
+def monitorBalance():
+    param = request.json
+    
+    phone = param['phone']
+    balance = round(param['balance'],2)
+    fail_count = len(param['failList'])
+    #print(phone)
+    #print(balance)
+    #print(fail_count)
+    
+
+    
+    timestamp = time.time()
+    str_time = time.strftime('%H:%M',time.localtime(timestamp))
+    #str_time_int = int(str(time.strftime('%H:%M:%S',time.localtime(timestamp))).split(':')[-1])
+    str_time_int = int(str(str_time).split(':')[-1])
+    msg = ""
+    if balance > 0:
+        msg = str_time + ': {} 余额为 {},请及时处理'.format(phone,balance)
+    else :
+        if(fail_count >= 7 ):
+            msg = str_time + ': {} 余额为 {},失败次数为 {},请及时处理'.format(phone,balance,fail_count)
+    
+    
+    #cursor = mon_conn.cursor()
+    if len(msg) > 0 :
+        monitor = Monitor(msg = msg, group_name = "补单余额监控群", status = 1, timestamp = timestamp)
+        db.session.add(monitor)
+        db.session.commit()
+
+
+    return 'SUCCESS'    
+
+
+
+if __name__ == '__main__':
+   
+    app.config['JSON_AS_ASCII'] = False
+    #app.config['JSONIFY_MIMETYPE'] ="application/json;charset=utf-8"
+      
+    app.run(host="0.0.0.0", port=9888,debug=True)
+

+ 3 - 0
Monitor/start-http.sh

@@ -0,0 +1,3 @@
+#pip3 install pymysql
+#pip3 install DBUtils==1.3
+nohup python3 -u balance_monitoring_request.py 1>>balance_monitoring_request.log 2>>balance_monitoring_request.log &

+ 7 - 0
Monitor/test.py

@@ -0,0 +1,7 @@
+
+import time
+timestamp = time.time()
+str_time = time.strftime('%H:%M',time.localtime(timestamp))
+str_time_int = int(str(str_time).split(':')[-1])
+
+print(str_time)

+ 87 - 0
Monitor/xiaomi_monitor.py

@@ -0,0 +1,87 @@
+# -*- encoding=utf8 -*-
+
+import time
+import json
+import pymysql
+import requests
+import pandas as pd
+from DBUtils.PooledDB import PooledDB
+
+
+URL = 'http://47.95.217.180:9999/monitoring/xiaomi'
+
+#创建数据库连接池
+def createPool(db_config):
+   spool = PooledDB(pymysql, 5, **db_config) 
+   return spool
+
+
+def saveData():
+  timestamp = time.time()
+  str_time = time.strftime('%H:%M',time.localtime(timestamp))
+  str_time_int = int(str(str_time).split(':')[-1])
+  print(str(str_time).split(':')[-1])
+  ins_sql = """ INSERT  INTO balance_monitoring VALUES(0,%s,%s,1,%s)  """
+  
+  res = requests.get(url = URL)
+  #print(response.status_code)
+  #print(response.text)
+  data_json = json.loads(res.text)
+  df = pd.DataFrame(list(data_json))
+  df.columns = ['used_time']
+  df['used_time'] = df['used_time'].str.replace(r'\n','').astype(float)
+  #print(df)  
+  
+  total_count = len(df)
+  count_1 = len(df[df['used_time'] <= 0.1])
+  count_2 = len(df[(df['used_time'] > 0.1) & (df['used_time'] <= 0.2)]) 
+  count_3 = len(df[(df['used_time'] > 0.2) & (df['used_time'] <= 0.3)]) 
+  count_4 = len(df[(df['used_time'] > 0.3) & (df['used_time'] <= 0.4)]) 
+  count_5 = len(df[(df['used_time'] > 0.4) & (df['used_time'] <= 0.5)]) 
+  count_6 = len(df[(df['used_time'] > 0.5) & (df['used_time'] <= 1)]) 
+  count_7 = len(df[df['used_time'] > 1]) 
+  #print(total_count)
+  #print(count_1)
+  count_list = []
+  for i in range(7):
+      temp_count =locals()["count_{}".format(i+1)]
+      
+      #print(temp_count)
+      temp_percent = "%.2f%%"%(temp_count/total_count * 100)
+      #print(temp_percent)
+      count_list.append([temp_count,temp_percent])
+   
+  msg = '''小米下单时间统计:\n 0-0.1秒 订单数量为:{},百分比为:{};\n 0.1-0.2秒 订单数量为:{}, 百分比为:{};\n 0.2-0.3秒 
+           订单数量为:{} ,百分比为:{} ;\n 0.3-0.4秒 订单数量为:{},百分比为:{};\n 0.4-0.5秒订 单数量为:{},百分比为:{};\n
+           0.5-1秒 订单数量为:{},百分比为:{};\n 1秒以上 订单数量为:{},百分比为:{}。'''.format(count_list[0][0],
+                count_list[0][1],count_list[1][0],count_list[1][1],count_list[2][0],count_list[2][1],count_list[3][0],count_list[3][1],
+                count_list[4][0],count_list[4][1],count_list[5][0],count_list[5][1],count_list[6][0],count_list[6][1])
+  
+  #print(msg)      
+  cursor = conn.cursor()
+  try:
+      #print(3333)
+      cursor = conn.cursor()        
+      cursor.execute(ins_sql, (msg,'小米下单时间监控群',int(timestamp)))
+
+  except:
+     conn.rollback()
+     print('数据回滚')
+
+  cursor.close()
+  conn.close()
+if __name__ == '__main__':
+  #监控消息数据库连接信息
+  db_config = {
+          'host' : '127.0.0.1',
+          'port' : 9001,
+          'user' : 'root',
+          'password' : 'nibuzhidaowozhidao',
+          'db' : 'monitoring',
+          'charset' : 'utf8',
+          'autocommit' : 1
+  }
+
+  conn =  createPool(db_config).connection()
+  saveData()
+

+ 101 - 0
Monitor/yesterday_top_order.py

@@ -0,0 +1,101 @@
+# -*- encoding=utf8 -*-
+
+import time
+import datetime
+import pandas as pd
+import pymysql
+from DBUtils.PooledDB import PooledDB
+
+
+
+#创建数据库连接池
+def createPool(db_config):
+   spool = PooledDB(pymysql, 5, **db_config) 
+   return spool
+
+
+#查询数据
+def getData(sql,db):
+  df = pd.read_sql(sql,con=db)
+  db.close
+  #print(df)
+  return df
+
+def saveData():
+
+  timestamp = time.time()
+  ins_sql = """ INSERT INTO balance_monitoring VALUES(0,%s,%s,1,%s)  """  
+  msg = '昨日还在充值中的订单总数量为:{},手机号为:\n {}'
+  try:
+    #print(111)  
+    ord_cursor = ord_conn.cursor()
+    if(df.empty is False):
+        #print(22)
+        #print(df.values.tolist())
+        total_num = df.shape[0]
+        phone_list = []
+        if total_num >10:
+           phone_list =  df['used_mobile'].head(10).tolist()
+        else:
+           phone_list =  df['used_mobile'].values.tolist()
+        #print(total_num)
+        #print(phone_list)
+        ord_msg = msg.format(total_num,phone_list)
+
+        #print(ord_msg)
+        ord_cursor.execute(ins_sql, (ord_msg,'超时订单监控群',int(timestamp))) 
+  except:
+      ord_conn.rollback()
+      print('数据回滚')
+  finally:
+      ord_cursor.close
+      ord_conn.close 
+
+if __name__ == '__main__':
+
+  #数据库连接信息
+  chanel_db_config = {
+    'host' : '47.95.217.180',
+    'port' : 3306,
+    'user' : 'root',
+    'password' : '93DkChZMgZRyCbWh',
+    'db' : 'fmp',
+    'charset' : 'utf8',
+    'autocommit' : 1
+  }
+  #监控消息数据库连接信息
+  mon_db_config = {
+          'host' : '127.0.0.1',
+          'port' : 9001,
+          'user' : 'root',
+          'password' : 'nibuzhidaowozhidao',
+          'db' : 'monitoring',
+          'charset' : 'utf8',
+          'autocommit' : 1
+  }
+
+  #数据库连接 
+  conn = createPool(chanel_db_config).connection()
+  ord_conn = createPool(mon_db_config).connection()
+
+
+  #获取时间
+  today = datetime.date.today()
+  yesterday = today - datetime.timedelta(days=1)
+  yesterdayStart = yesterday.strftime("%Y-%m-%d") + ' 00:00:00'
+  yesterdayEnd = yesterday.strftime("%Y-%m-%d") + ' 23:59:59'  
+
+  sql = """ SELECT  used_mobile,apply_date
+            FROM 
+                flow_order_info
+            WHERE
+                apply_date BETWEEN ' """ + yesterdayStart +""" '    AND  ' """+ yesterdayEnd + """ '
+                AND   status NOT IN  (4,6) 
+        """ 
+
+  
+  df = getData(sql,conn)
+  #df = pd.DataFrame([['159','8.1']])
+  saveData()
+
+

+ 9 - 2
Xiaomi/app02.py

@@ -33,7 +33,7 @@ for root,dirs,files in os.walk( data_path ):
 #print( r_dict )
 
 #  蓝色火焰后台数据
-my_path = os.path.join(curr_path,"0825-0913")
+my_path = os.path.join(curr_path,"0914-1018")
 out_path = os.path.join(curr_path,"out")
 
 print( my_path )
@@ -53,7 +53,8 @@ for root,dirs,files in os.walk( my_path ):
 
         df = pd.read_csv( file_item )
         df1 = df1.append(df)
-        print(df1)
+        df1['订单号'] = df1['订单号'].astype(str) + "\t"
+        #print(df1)
         #result = [['订单号','手机号码','规格','商户订单号','收单日期','回调日期','归属地','价格','充值状态','状态描述']]
         for value in df.values:
             order_id = value[3].strip()
@@ -98,8 +99,14 @@ for root,dirs,files in os.walk( my_path ):
     #print(f_success_value)
 
     success_frame = pd.DataFrame(f_success_value)
+    #print(success_frame)
+    success_frame.iloc[:,0] = success_frame.iloc[:,0].astype(str) + "\t"
+
     fail_frame = pd.DataFrame(f_fail_value)
+    fail_frame.iloc[:,0] = success_frame.iloc[:,0].astype(str) + "\t"
+
     total_fram = success_frame.append(fail_frame)
+    total_fram.iloc[:,0] = success_frame.iloc[:,0].astype(str) + "\t"
 
     f_path = os.path.basename(file_item)
     #print( f_path )

+ 9 - 9
src/main/java/com/bluefire/top/controller/FlowOrderController.java

@@ -51,9 +51,9 @@ public class FlowOrderController {
 
     @GetMapping("/getlist")
     public String getFlowLostList(String startDate, String endDate, String redPath) {
-        startDate = "2020-09-28 00:00:00";
-        endDate = "2020-09-28 23:59:59";
-        redPath = "D:\\WorkSpace\\Accounts\\9-28.xlsx";
+        startDate = "2020-10-9 00:00:00";
+        endDate = "2020-10-9 23:59:59";
+        redPath = "D:\\WorkSpace\\Accounts\\10-9.xlsx";
 
         flowOrderService.queryLostOrder(startDate, endDate, redPath);
         return "SUCCESS";
@@ -70,9 +70,9 @@ public class FlowOrderController {
     @GetMapping("/toher")
     public List<FlowOrderInfo> getFlowOrderToHer(String startDate, String endDate, String redPath) {
         //通过的选中和对方发送的文件找出对方数据中有的订单号我方没有的订单号
-        startDate = "2020-09-28 00:00:00";
-        endDate = "2020-09-28 23:59:59";
-        redPath = "D:\\WorkSpace\\Accounts\\9-28.xlsx";
+        startDate = "2020-09-29 00:00:00";
+        endDate = "2020-09-29 23:59:59";
+        redPath = "D:\\WorkSpace\\Accounts\\9-29.xlsx";
 
 
         List<String> orderIds = flowOrderService.queryHerOrderIds(startDate, endDate, redPath);
@@ -97,9 +97,9 @@ public class FlowOrderController {
     @GetMapping("/tome")
     public List<FlowOrderInfo> getFlowOrderToMe(String startDate, String endDate, String redPath) {
         //通过的选中和对方发送的文件找出对方数据中有的订单号我方没有的订单号
-        startDate = "2020-09-28 00:00:00";
-        endDate = "2020-09-28 23:59:59";
-        redPath = "D:\\WorkSpace\\Accounts\\9-28.xlsx";
+        startDate = "2020-09-29 00:00:00";
+        endDate = "2020-09-29 23:59:59";
+        redPath = "D:\\WorkSpace\\Accounts\\9-29.xlsx";
 
 
         List<String> orderIds = flowOrderService.queryMyOrderIds(startDate, endDate, redPath);