├── Utils ├── __init__.py ├── peeler_helper.py └── README.md ├── LogReduce ├── __init__.py ├── peeler │ └── access_log ├── README.md ├── sample │ ├── access_log_template_50 │ └── access_log_match_results └── reduce.py ├── LogTemplate ├── __init__.py ├── peeler │ ├── sequence_log │ └── access_log ├── sample │ ├── access_log_template_50 │ └── sequence_log ├── README.md ├── stopwords.py └── template.py ├── .gitignore └── README.md /Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogReduce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LogTemplate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .pydevproject -------------------------------------------------------------------------------- /LogTemplate/peeler/sequence_log: -------------------------------------------------------------------------------- 1 | {"outer_delimiter":" ","inner_delimiter":" ","message_start":"","message_end":""} -------------------------------------------------------------------------------- /LogReduce/peeler/access_log: -------------------------------------------------------------------------------- 1 | {"outer_delimiter":" ","inner_delimiter":" |/|\"","message_start":"5","message_end":"-2"} -------------------------------------------------------------------------------- /LogTemplate/peeler/access_log: -------------------------------------------------------------------------------- 1 | {"outer_delimiter":" ","inner_delimiter":" |/|\"","message_start":"5","message_end":"-2"} -------------------------------------------------------------------------------- /Utils/peeler_helper.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | def parse_arg(): 4 | argument_parse = argparse.ArgumentParser(description = "Log Peeler Helper.") 5 | argument_parse.add_argument("-o", action = "store", dest = "outer_delimiter", help = "Outer delimiter as in the peeler file") 6 | argument_parse.add_argument("-l", action = "store", dest = "log_line", help = "The sampled log line encapsulated by quotation marks") 7 | results = argument_parse.parse_args() 8 | outer_delimiter = results.outer_delimiter 9 | log_line = results.log_line 10 | return outer_delimiter, log_line 11 | 12 | if __name__ == "__main__": 13 | outer_delimiter, log_line = parse_arg() 14 | split_line = log_line.split(outer_delimiter) 15 | for i in range(len(split_line)): 16 | print "|" +str(i) + "|:" + split_line[i], -------------------------------------------------------------------------------- /Utils/README.md: -------------------------------------------------------------------------------- 1 | ###Utils 2 | This project contains various small utilities to ease the use of LogMiner tool set. 3 | 4 | ####peeler_helper 5 | Use this tool to quickly test the outer delimiter and find the start/end position of log message. 6 | ``` 7 | $ python peeler_helper.py -h 8 | usage: peeler_helper.py [-h] [-o OUTER_DELIMITER] [-l LOG_LINE] 9 | 10 | Log Peeler Helper. 11 | 12 | optional arguments: 13 | -h, --help show this help message and exit 14 | -o OUTER_DELIMITER Outer delimiter as in the peeler file 15 | -l LOG_LINE The sampled log line encapsulated by quotation marks 16 | ``` 17 | The script will print the tokens with its position split by the out delimiter, for example: 18 | ``` 19 | $ python peeler_helper.py -o " " -l "2015-12-22 07:54:51 [ qtp1081769770-22:171647 ] - [ INFO ] Start to construct topology graph." 20 | |0|:2015-12-22 |1|:07:54:51 |2|: |3|:[ |4|:qtp1081769770-22:171647 |5|:] |6|:- |7|:[ |8|:INFO |9|:] |10|: |11|:Start |12|:to |13|:construct |14|:topology |15|:graph. 21 | ``` 22 | In this case, the outer delimiter is a blank space (" "), the log message "Start to construct topology graph." starts from position 11. -------------------------------------------------------------------------------- /LogReduce/README.md: -------------------------------------------------------------------------------- 1 | ###LogReduce 2 | 3 | With [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate), one immediate interesting analytics we could do is to summarize high volume logs. You may heard about SumoLogic's [LogReduce](https://www.sumologic.com/2012/03/23/what-the-heck-is-logreduce/). The tool will do similar thing for you. Here's the usage: 4 | ``` 5 | $ python reduce.py -h 6 | usage: reduce.py [-h] [-t TEMPLATEFILE] [-f LOGFILE] [-p PEELER] 7 | 8 | Log summarization based on templates. 9 | 10 | optional arguments: 11 | -h, --help show this help message and exit 12 | -t TEMPLATEFILE The template file 13 | -f LOGFILE The log file to analyze 14 | -p PEELER Log file's message peeler 15 | ``` 16 | * Templatefile is the output of [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate). 17 | * Peeler is the same as defined in [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate). We need it here because we should do the summrization in the same way as we mine the template. 18 | 19 | The exampled input log file and output summarizations are in the sample folder, using: 20 | ``` 21 | $ python reduce.py -t sample/access_log_template_50 -f sample/access_log -p peeler/access_log 22 | ``` -------------------------------------------------------------------------------- /LogReduce/sample/access_log_template_50: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0005000000", 4 | "template": "GET twiki pub TWiki TWikiLogos twikiRobot46x50.gif HTTP 1.1" 5 | }, 6 | { 7 | "id": "0005000001", 8 | "template": "GET cgi-bin mailgraph.cgi (.*) HTTP 1.1" 9 | }, 10 | { 11 | "id": "0005000002", 12 | "template": "GET twiki bin rdiff TWiki (.*) HTTP 1.1" 13 | }, 14 | { 15 | "id": "0005000003", 16 | "template": "GET twiki bin view TWiki (.*) HTTP 1.1" 17 | }, 18 | { 19 | "id": "0005000004", 20 | "template": "GET twiki bin view Main (.*) HTTP 1.0" 21 | }, 22 | { 23 | "id": "0005000005", 24 | "template": "GET twiki bin view Main (.*) HTTP 1.1" 25 | }, 26 | { 27 | "id": "0005000006", 28 | "template": "GET twiki bin edit Main (.*) HTTP 1.1" 29 | }, 30 | { 31 | "id": "0005000007", 32 | "template": "GET dccstats (.*) HTTP 1.1" 33 | }, 34 | { 35 | "id": "0005000008", 36 | "template": "GET dccstats (.*) HTTP 1.0" 37 | }, 38 | { 39 | "id": "0005000009", 40 | "template": "GET icons (.*) HTTP 1.1" 41 | }, 42 | { 43 | "id": "0005000010", 44 | "template": "GET (.*) HTTP 1.1" 45 | } 46 | ] -------------------------------------------------------------------------------- /LogTemplate/sample/access_log_template_50: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0005000000", 4 | "template": "GET twiki pub TWiki TWikiLogos twikiRobot46x50.gif HTTP 1.1" 5 | }, 6 | { 7 | "id": "0005000001", 8 | "template": "GET cgi-bin mailgraph.cgi (.*) HTTP 1.1" 9 | }, 10 | { 11 | "id": "0005000002", 12 | "template": "GET twiki bin rdiff TWiki (.*) HTTP 1.1" 13 | }, 14 | { 15 | "id": "0005000003", 16 | "template": "GET twiki bin view TWiki (.*) HTTP 1.1" 17 | }, 18 | { 19 | "id": "0005000004", 20 | "template": "GET twiki bin view Main (.*) HTTP 1.0" 21 | }, 22 | { 23 | "id": "0005000005", 24 | "template": "GET twiki bin view Main (.*) HTTP 1.1" 25 | }, 26 | { 27 | "id": "0005000006", 28 | "template": "GET twiki bin edit Main (.*) HTTP 1.1" 29 | }, 30 | { 31 | "id": "0005000007", 32 | "template": "GET dccstats (.*) HTTP 1.1" 33 | }, 34 | { 35 | "id": "0005000008", 36 | "template": "GET dccstats (.*) HTTP 1.0" 37 | }, 38 | { 39 | "id": "0005000009", 40 | "template": "GET icons (.*) HTTP 1.1" 41 | }, 42 | { 43 | "id": "0005000010", 44 | "template": "GET (.*) HTTP 1.1" 45 | } 46 | ] -------------------------------------------------------------------------------- /LogTemplate/README.md: -------------------------------------------------------------------------------- 1 | ###LogTemplate 2 | The first step to do any analytics against semi-structured logs is getting **templates** to handle them. Templates could be in many forms. The most popular form is a regular expression. With templates, free-text log messages become structured and are easy to consumed by analytics algorithms. 3 | 4 | This tool using clustering techniques to mine templates from history logs. Here's the usage: 5 | ``` 6 | $ python template.py -h 7 | usage: template.py [-h] [-s SUPPORT] [-f LOGFILE] [-p PEELER] 8 | 9 | Clustering based log template miner. 10 | 11 | optional arguments: 12 | -h, --help show this help message and exit 13 | -s SUPPORT A positive number of support 14 | -f LOGFILE The log file to analyze 15 | -p PEELER Log file's message peeler 16 | ``` 17 | * Support is an integer value that tunes mined templates' quality. Higher value means more samples support the template, but you get less templates, vice versa. 18 | * Peeler is a simple configuration tells the tool where to to look at in a line of raw log, and how to analyze. 19 | 20 | For example, the sampled peeler is for a typical access log, to analyze visited URLs. It's a json in *one line* with four key-value pairs. 21 | ``` 22 | {"outer_delimiter":" ","inner_delimiter":" |/|\"","message_start":"5","message_end":"-2"} 23 | ``` 24 | * *outer_delimiter*, *message_start* and *message_end* locate the message you'd like to analyze. Delimiters are designated following the regular expression fashion. Usually a whitespace (" ") will do the trick. Start and end positions follow the Python list fashion. If the message's end position is EOF (End of Line), just use a blank string (""). 25 | * *inner_delimiter* tells the tool how to analyze the message. In this case, as URL is delimited by "/" so we add it in. 26 | 27 | The exampled input log file and output templates with support set to 50 are in the sample folder, using: 28 | ``` 29 | $ python template.py -s 50 -f sample/access_log -p peeler/access_log 30 | ``` -------------------------------------------------------------------------------- /LogTemplate/stopwords.py: -------------------------------------------------------------------------------- 1 | import string 2 | 3 | stpwd = ["a", "about", "above", "above", "across", "after", "afterwards", "again", "against", "all", "almost", "alone", "along", "already", "also","although","always","am","among", "amongst", "amoungst", "amount", "an", "and", "another", "any","anyhow","anyone","anything","anyway", "anywhere", "are", "around", "as", "at", "back","be","became", "because","become","becomes", "becoming", "been", "before", "beforehand", "behind", "being", "below", "beside", "besides", "between", "beyond", "bill", "both", "bottom","but", "by", "call", "can", "cannot", "cant", "co", "con", "could", "couldnt", "cry", "de", "describe", "detail", "do", "done", "down", "due", "during", "each", "eg", "eight", "either", "eleven","else", "elsewhere", "empty", "enough", "etc", "even", "ever", "every", "everyone", "everything", "everywhere", "except", "few", "fifteen", "fify", "fill", "find", "fire", "first", "five", "for", "former", "formerly", "forty", "found", "four", "from", "front", "full", "further", "get", "give", "go", "had", "has", "hasnt", "have", "he", "hence", "her", "here", "hereafter", "hereby", "herein", "hereupon", "hers", "herself", "him", "himself", "his", "how", "however", "hundred", "ie", "if", "in", "inc", "indeed", "interest", "into", "is", "it", "its", "itself", "keep", "last", "latter", "latterly", "least", "less", "ltd", "made", "many", "may", "me", "meanwhile", "might", "mill", "mine", "more", "moreover", "most", "mostly", "move", "much", "must", "my", "myself", "name", "namely", "neither", "never", "nevertheless", "next", "nine", "no", "nobody", "none", "noone", "nor", "not", "nothing", "now", "nowhere", "of", "off", "often", "on", "once", "one", "only", "onto", "or", "other", "others", "otherwise", "our", "ours", "ourselves", "out", "over", "own","part", "per", "perhaps", "please", "put", "rather", "re", "same", "see", "seem", "seemed", "seeming", "seems", "serious", "several", "she", "should", "show", "side", "since", "sincere", "six", "sixty", "so", "some", "somehow", "someone", "something", "sometime", "sometimes", "somewhere", "still", "such", "system", "take", "ten", "than", "that", "the", "their", "them", "themselves", "then", "thence", "there", "thereafter", "thereby", "therefore", "therein", "thereupon", "these", "they", "thickv", "thin", "third", "this", "those", "though", "three", "through", "throughout", "thru", "thus", "to", "together", "too", "top", "toward", "towards", "twelve", "twenty", "two", "un", "under", "until", "up", "upon", "us", "very", "via", "was", "we", "well", "were", "what", "whatever", "when", "whence", "whenever", "where", "whereafter", "whereas", "whereby", "wherein", "whereupon", "wherever", "whether", "which", "while", "whither", "who", "whoever", "whole", "whom", "whose", "why", "will", "with", "within", "without", "would", "yet", "you", "your", "yours", "yourself", "yourselves", "the"] 4 | punct = list(string.punctuation) 5 | -------------------------------------------------------------------------------- /LogReduce/reduce.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | import json 3 | import sys 4 | import re 5 | from collections import defaultdict 6 | 7 | def parse_args(): 8 | argument_parse = argparse.ArgumentParser(description = "Log summarization based on templates.") 9 | argument_parse.add_argument("-t", action = "store", dest = "templatefile", default = "./sample/access_log_template_50", help = "The template file") 10 | argument_parse.add_argument("-f", action = "store", dest = "logfile", default = "./sample/access_log", help = "The log file to analyze") 11 | argument_parse.add_argument("-p", action = "store", dest = "peeler", default = "./peeler/access_log", help = "Log file's message peeler") 12 | results = argument_parse.parse_args() 13 | templatepath = results.templatefile 14 | logfilepath = results.logfile 15 | peelerpath = results.peeler 16 | return templatepath, logfilepath, peelerpath 17 | 18 | def get_peeler(peelerpath): 19 | with open(peelerpath, 'r') as pfin: 20 | line = pfin.readline() 21 | try: 22 | peeler = json.loads(line) 23 | except ValueError: 24 | print "--->Input file format error!" 25 | sys.exit(1) 26 | return peeler 27 | 28 | def load_template(templatepath): 29 | template = [] 30 | with open(templatepath, 'r') as tfin: 31 | json_template = json.load(tfin) 32 | for curr_tmp in json_template: 33 | template.append((curr_tmp["id"], curr_tmp["template"])) 34 | return template 35 | 36 | def match_template(logfilepath, peeler, template): 37 | outer_delimiter = peeler["outer_delimiter"] 38 | inner_delimiter = peeler["inner_delimiter"] 39 | start = int(peeler["message_start"]) 40 | end = peeler["message_end"] 41 | if end != "": 42 | end = int(end) 43 | else: 44 | end = None 45 | 46 | matched_count = defaultdict(int) 47 | matched_tokens = {} 48 | for i in range(len(template)): 49 | matched_tokens[template[i][0]] = defaultdict(int) 50 | 51 | with open(logfilepath, 'r') as lfin: 52 | for line in lfin: 53 | line = line.strip() 54 | message = outer_delimiter.join(line.split(outer_delimiter)[start:end]) 55 | tokens = re.split(inner_delimiter, message) 56 | tokens = filter(lambda a: a != "", tokens) 57 | str_to_match = " ".join(tokens) 58 | for curr_tmp in template: 59 | id_template = curr_tmp[0] 60 | str_template = curr_tmp[1] 61 | cnt = str_template.count("(.*)") 62 | mch = re.match(str_template, str_to_match) 63 | if mch: 64 | matched_count[id_template] += 1 65 | for i in range(cnt): 66 | matched_tokens[id_template][mch.group(i + 1)] += 1 67 | break 68 | return matched_count, matched_tokens 69 | 70 | def output_result(matched_count, matched_tokens, template, output_filepath): 71 | set_template = {} 72 | output_list = [] 73 | for curr_tmp in template: 74 | set_template[curr_tmp[0]] = curr_tmp[1] 75 | for k,v in matched_count.iteritems(): 76 | meta_data = {} 77 | meta_data["id"] = k 78 | meta_data["count"] = v 79 | meta_data["template"] = set_template[k] 80 | meta_data["tokens"] = matched_tokens[k] 81 | output_list.append(meta_data) 82 | sorted_result = sorted(output_list, key = lambda x : x["id"]) 83 | output_json = json.dumps(sorted_result, sort_keys=True, indent=4, separators=(',', ': ')) 84 | with open(output_filepath, 'w') as fout: 85 | fout.write(output_json) 86 | 87 | if __name__ == "__main__": 88 | templatepath, logfilepath, peelerpath = parse_args() 89 | 90 | print "Retrieve message peeler." 91 | peeler = get_peeler(peelerpath) 92 | 93 | print "Load log templates." 94 | template = load_template(templatepath) 95 | 96 | print "Match log to templates." 97 | matched_count, matched_tokens = match_template(logfilepath, peeler, template) 98 | 99 | output_filepath = logfilepath + "_match_results" 100 | print "Write output to file " + output_filepath + "." 101 | output_result(matched_count, matched_tokens, template, output_filepath) 102 | print "Done." -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | logminer 2 | ======= 3 | A set of tools for log analytics, from data processing to advanced modeling. Tools are organized in folders with sample data to play with. Brief instructions are documented here. For Chinese description of this project, please check out my [blog](http://blog.csdn.net/cameling_yang). 4 | 5 | ###LogTemplate 6 | The first step to do any analytics against semi-structured logs is getting **templates** to handle them. Templates could be in many forms. The most popular form is a regular expression. With templates, free-text log messages become structured and are easy to consumed by analytics algorithms. 7 | 8 | This tool using clustering techniques to mine templates from history logs. Here's the usage: 9 | ``` 10 | $ python template.py -h 11 | usage: template.py [-h] [-s SUPPORT] [-f LOGFILE] [-p PEELER] 12 | 13 | Clustering based log template miner. 14 | 15 | optional arguments: 16 | -h, --help show this help message and exit 17 | -s SUPPORT A positive number of support 18 | -f LOGFILE The log file to analyze 19 | -p PEELER Log file's message peeler 20 | ``` 21 | * Support is an integer value that tunes mined templates' quality. Higher value means more samples support the template, but you get less templates, vice versa. 22 | * Peeler is a simple configuration tells the tool where to to look at in a line of raw log, and how to analyze. 23 | 24 | For example, the sampled peeler is for a typical access log, to analyze visited URLs. It's a json in *one line* with four key-value pairs. 25 | ``` 26 | {"outer_delimiter":" ","inner_delimiter":" |/|\"","message_start":"5","message_end":"-2"} 27 | ``` 28 | * *outer_delimiter*, *message_start* and *message_end* locate the message you'd like to analyze. Delimiters are designated following the regular expression fashion. Usually a whitespace (" ") will do the trick. Start and end positions follow the Python list fashion. If the message's end position is EOF (End of Line), just use a blank string (""). 29 | * *inner_delimiter* tells the tool how to analyze the message. In this case, as URL is delimited by "/" so we add it in. 30 | 31 | The exampled input log file and output templates with support set to 50 are in the sample folder, using: 32 | ``` 33 | $ python template.py -s 50 -f sample/access_log -p peeler/access_log 34 | ``` 35 | ###LogReduce 36 | 37 | With [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate), one immediate interesting analytics we could do is to summarize high volume logs. You may heard about SumoLogic's [LogReduce](https://www.sumologic.com/2012/03/23/what-the-heck-is-logreduce/). The tool will do similar thing for you. Here's the usage: 38 | ``` 39 | $ python reduce.py -h 40 | usage: reduce.py [-h] [-t TEMPLATEFILE] [-f LOGFILE] [-p PEELER] 41 | 42 | Log summarization based on templates. 43 | 44 | optional arguments: 45 | -h, --help show this help message and exit 46 | -t TEMPLATEFILE The template file 47 | -f LOGFILE The log file to analyze 48 | -p PEELER Log file's message peeler 49 | ``` 50 | * Templatefile is the output of [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate). 51 | * Peeler is the same as defined in [LogTemplate](https://github.com/cameling/logminer/tree/master/LogTemplate). We need it here because we should do the summrization in the same way as we mine the template. 52 | 53 | The exampled input log file and output summarizations are in the sample folder, using: 54 | ``` 55 | $ python reduce.py -t sample/access_log_template_50 -f sample/access_log -p peeler/access_log 56 | ``` 57 | ###Utils 58 | This project contains various small utilities to ease the use of LogMiner tool set. 59 | 60 | ####peeler_helper 61 | Use this tool to quickly test the outer delimiter and find the start/end position of log message. 62 | ``` 63 | $ python peeler_helper.py -h 64 | usage: peeler_helper.py [-h] [-o OUTER_DELIMITER] [-l LOG_LINE] 65 | 66 | Log Peeler Helper. 67 | 68 | optional arguments: 69 | -h, --help show this help message and exit 70 | -o OUTER_DELIMITER Outer delimiter as in the peeler file 71 | -l LOG_LINE The sampled log line encapsulated by quotation marks 72 | ``` 73 | The script will print the tokens with its position split by the out delimiter, for example: 74 | ``` 75 | $ python peeler_helper.py -o " " -l "2015-12-22 07:54:51 [ qtp1081769770-22:171647 ] - [ INFO ] Start to construct topology graph." 76 | |0|:2015-12-22 |1|:07:54:51 |2|: |3|:[ |4|:qtp1081769770-22:171647 |5|:] |6|:- |7|:[ |8|:INFO |9|:] |10|: |11|:Start |12|:to |13|:construct |14|:topology |15|:graph. 77 | ``` 78 | In this case, the outer delimiter is a blank space (" "), the log message "Start to construct topology graph." starts from position 11. -------------------------------------------------------------------------------- /LogTemplate/template.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | import json 3 | import re 4 | import sys 5 | from collections import defaultdict 6 | from stopwords import stpwd, punct 7 | 8 | def parse_args(): 9 | argument_parse = argparse.ArgumentParser(description = "Clustering based log template miner.") 10 | argument_parse.add_argument("-s", action = "store", dest = "support", type = int, default = 50, help = "A positive number of support") 11 | argument_parse.add_argument("-f", action = "store", dest = "logfile", default = "./sample/access_log", help = "The log file to analyze") 12 | argument_parse.add_argument("-p", action = "store", dest = "peeler", default = "./peeler/access_log", help = "Log file's message peeler") 13 | results = argument_parse.parse_args() 14 | support = results.support 15 | logfilepath = results.logfile 16 | peelerpath = results.peeler 17 | return support, logfilepath, peelerpath 18 | 19 | def get_peeler(peelerpath): 20 | with open(peelerpath, 'r') as pfin: 21 | line = pfin.readline() 22 | try: 23 | peeler = json.loads(line) 24 | except ValueError: 25 | print "--->Input file format error!" 26 | sys.exit(1) 27 | return peeler 28 | 29 | def build_vocabulary(logfilepath, peeler): 30 | vocabulary = defaultdict(int) 31 | outer_delimiter = peeler["outer_delimiter"] 32 | inner_delimiter = peeler["inner_delimiter"] 33 | start = int(peeler["message_start"]) 34 | end = peeler["message_end"] 35 | if end != "": 36 | end = int(end) 37 | else: 38 | end = None 39 | with open(logfilepath, 'r') as fin: 40 | for line in fin: 41 | line = line.strip() 42 | message = outer_delimiter.join(line.split(outer_delimiter)[start:end]) 43 | tokens = re.split(inner_delimiter, message) 44 | tokens = filter(lambda a: a != "", tokens) 45 | for i, token in enumerate(tokens): 46 | vocabulary[(token, i)] += 1 47 | return vocabulary 48 | 49 | # Template length > 0 after all stop words and punctuation are filtered. 50 | def evaluate_template(template): 51 | template_len = len(template) 52 | if template_len == 0: 53 | return False 54 | for curr_tuple in template: 55 | curr_word = curr_tuple[0] 56 | if curr_word in stpwd or curr_word in punct: 57 | if curr_word in punct: 58 | template_len -= 1 59 | if template_len > 0: 60 | return True 61 | else: 62 | return False 63 | 64 | def transform_regex(template): 65 | place_holder = "YLPLACEHOLDER" 66 | temp_regex = [] 67 | for curr_tem in template: 68 | curr_list = list(curr_tem) 69 | word_len = curr_list[-1][1] + 1 70 | temp_list = [None] * word_len 71 | all_slot_set = set(range(word_len)) 72 | taken_slot = [] 73 | for curr_token in curr_list: 74 | taken_slot.append(curr_token[1]) 75 | taken_slot_set = set(taken_slot) 76 | empty_slot_set = all_slot_set - taken_slot_set 77 | temp_str = None 78 | if empty_slot_set: 79 | for i in empty_slot_set: 80 | temp_list[i] = place_holder 81 | for curr_token in curr_list: 82 | temp_list[curr_token[1]] = curr_token[0] 83 | temp_str = " ".join(temp_list) 84 | else: 85 | temp_list = [token[0] for token in curr_list] 86 | temp_str = " ".join(temp_list) 87 | regex_str = temp_str.replace(place_holder, "(.*)") 88 | temp_regex.append(regex_str) 89 | sorted_temp_regex = sorted(temp_regex, key = lambda x : len(x), reverse = True) 90 | return sorted_temp_regex 91 | 92 | 93 | def build_template(logfilepath, vocabulary, support, peeler): 94 | voc_by_sup = {k:v for (k,v) in vocabulary.iteritems() if v >= support} 95 | outer_delimiter = peeler["outer_delimiter"] 96 | inner_delimiter = peeler["inner_delimiter"] 97 | start = int(peeler["message_start"]) 98 | end = peeler["message_end"] 99 | if end != "": 100 | end = int(end) 101 | else: 102 | end = None 103 | with open(logfilepath, 'r') as fin: 104 | template = defaultdict(int) 105 | for line in fin: 106 | line = line.strip() 107 | message = outer_delimiter.join(line.split(outer_delimiter)[start:end]) 108 | tokens = re.split(inner_delimiter, message) 109 | tokens = filter(lambda a: a != "", tokens) 110 | curr_list = [] 111 | for i, token in enumerate(tokens): 112 | if (token, i) in voc_by_sup: 113 | curr_list.append((token, i)) 114 | if evaluate_template(curr_list): 115 | curr_tuple = tuple(curr_list) 116 | template[curr_tuple] += 1 117 | tem_by_sup = {k:v for (k,v) in template.iteritems() if v >= support} 118 | 119 | # Filter out short templates who are contained in others 120 | def not_contained(tem, all_tem): 121 | to_compare = set(tem) 122 | for curr_tem in all_tem: 123 | curr_set = set(curr_tem) 124 | if to_compare.issubset(curr_set) and not curr_set.issubset(to_compare): 125 | return False 126 | return True 127 | tem_filtered = filter(lambda a: not_contained(a, tem_by_sup), tem_by_sup) 128 | 129 | return tem_filtered 130 | 131 | def output_template(outputpath, regex, support): 132 | output_list = [] 133 | for i, v in enumerate(regex): 134 | temp_item = {} 135 | temp_id = str(support).zfill(5) + str(i).zfill(5) 136 | temp_item["id"] = temp_id 137 | temp_item["template"] = v 138 | output_list.append(temp_item) 139 | output_json = json.dumps(output_list, sort_keys=True, indent=4, separators=(',', ': ')) 140 | with open(outputpath, 'w') as fout: 141 | fout.write(output_json) 142 | 143 | if __name__ == "__main__": 144 | support, logfilepath, peelerpath = parse_args() 145 | 146 | print "Retrieve message peeler." 147 | peeler = get_peeler(peelerpath) 148 | 149 | print "Build vocabulary." 150 | vocabulary = build_vocabulary(logfilepath, peeler) 151 | 152 | print "Summarize template." 153 | template = build_template(logfilepath, vocabulary, support, peeler) 154 | 155 | print "Convert to Regex." 156 | regex = transform_regex(template) 157 | 158 | output_filepath = logfilepath + "_template_" + str(support) 159 | print "Write templates to file " + output_filepath + "." 160 | output_template(output_filepath, regex, support) 161 | 162 | print "Done." 163 | -------------------------------------------------------------------------------- /LogReduce/sample/access_log_match_results: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "count": 57, 4 | "id": "0005000000", 5 | "template": "GET twiki pub TWiki TWikiLogos twikiRobot46x50.gif HTTP 1.1", 6 | "tokens": {} 7 | }, 8 | { 9 | "count": 128, 10 | "id": "0005000001", 11 | "template": "GET cgi-bin mailgraph.cgi (.*) HTTP 1.1", 12 | "tokens": { 13 | "mailgraph_0.png": 16, 14 | "mailgraph_0_err.png": 16, 15 | "mailgraph_1.png": 16, 16 | "mailgraph_1_err.png": 16, 17 | "mailgraph_2.png": 16, 18 | "mailgraph_2_err.png": 16, 19 | "mailgraph_3.png": 16, 20 | "mailgraph_3_err.png": 16 21 | } 22 | }, 23 | { 24 | "count": 61, 25 | "id": "0005000002", 26 | "template": "GET twiki bin rdiff TWiki (.*) HTTP 1.1", 27 | "tokens": { 28 | "AdminSkillsAssumptions": 1, 29 | "AdrianLynch": 1, 30 | "AlWilliams?rev1=1.2&rev2=1.1": 1, 31 | "AlWilliams?rev1=1.3&rev2=1.2": 1, 32 | "AppendixFileSystem?rev1=1.11&rev2=1.10": 1, 33 | "ChangePassword": 1, 34 | "DefaultPlugin": 1, 35 | "DefaultPlugin?rev1=1.5&rev2=1.4": 1, 36 | "DeleteOrRenameATopic": 1, 37 | "EditDoesNotIncreaseTheRevision": 1, 38 | "FileAttribute": 1, 39 | "HaroldGottschalk?rev1=1.2&rev2=1.1": 1, 40 | "IncludeTopicsAndWebPages": 1, 41 | "InstantEnhancements": 1, 42 | "KevinKinnell?rev1=1.4&rev2=1.3": 1, 43 | "KevinKinnell?rev1=1.5&rev2=1.4": 1, 44 | "KlausWriessnegger?rev1=1.2&rev2=1.1": 1, 45 | "NewUserTemplate?rev1=1.3&rev2=1.2": 1, 46 | "PeterFokkinga?rev1=1.4&rev2=1.3": 1, 47 | "RichardDonkin?rev1=1.2&rev2=1.1": 1, 48 | "RyanFreebern?rev1=1.2&rev2=1.1": 1, 49 | "SearchDoesNotWork": 1, 50 | "SimultaneousEdits": 1, 51 | "StanleyKnutson": 1, 52 | "SvenDowideit": 1, 53 | "SvenDowideit?rev1=1.2&rev2=1.1": 1, 54 | "TWikiDocGraphics?rev1=1.11&rev2=1.10": 1, 55 | "TWikiDownload": 1, 56 | "TWikiEnhancementRequests": 1, 57 | "TWikiFAQ": 1, 58 | "TWikiHistory": 1, 59 | "TWikiHistory?rev1=1.10&rev2=1.9": 1, 60 | "TWikiHistory?rev1=1.61&rev2=1.60": 1, 61 | "TWikiHistory?rev1=1.8&rev2=1.7": 1, 62 | "TWikiPlannedFeatures": 1, 63 | "TWikiPlugins?rev1=1.20&rev2=1.19": 1, 64 | "TWikiPreferences?rev1=1.47&rev2=1.46": 1, 65 | "TWikiRegistration": 1, 66 | "TWikiRegistration?rev1=1.10&rev2=1.9": 1, 67 | "TWikiSite": 1, 68 | "TWikiSkins?rev1=1.10&rev2=1.9": 1, 69 | "TWikiSkins?rev1=1.11&rev2=1.10": 1, 70 | "TWikiTopics": 1, 71 | "TextFormattingRules?rev1=1.36&rev2=1.35": 1, 72 | "WebChanges": 1, 73 | "WebChangesAlert": 1, 74 | "WebHome": 1, 75 | "WebNotify": 1, 76 | "WebPreferences": 1, 77 | "WebRss": 1, 78 | "WebSearch": 1, 79 | "WebSiteTools?rev1=1.2&rev2=1.1": 1, 80 | "WebTopicEditTemplate": 1, 81 | "WebTopicEditTemplate?rev1=1.5&rev2=1.4": 1, 82 | "WebTopicList": 1, 83 | "WhatIsWikiWiki": 1, 84 | "WikiCulture?rev1=1.8&rev2=1.7": 1, 85 | "WikiReferences?rev1=1.2&rev2=1.1": 1, 86 | "WikiSyntax": 1, 87 | "WikiWikiClones": 1, 88 | "WikiWord?rev1=1.4&rev2=1.3": 1 89 | } 90 | }, 91 | { 92 | "count": 90, 93 | "id": "0005000003", 94 | "template": "GET twiki bin view TWiki (.*) HTTP 1.1", 95 | "tokens": { 96 | "AlWilliams?rev=1.1": 1, 97 | "ChangePassword?rev=r1.3": 1, 98 | "ChangePassword?rev=r1.6": 1, 99 | "DavidWarman": 1, 100 | "DefaultPlugin?rev=1.4": 1, 101 | "DontNotify": 1, 102 | "DontNotify?rev=1.1": 1, 103 | "FileAttribute?rev=1.2": 1, 104 | "FileAttribute?rev=r1.2": 1, 105 | "FormattedSearch?rev=1.8": 1, 106 | "GoBox": 1, 107 | "HaroldGottschalk": 1, 108 | "HaroldGottschalk?rev=1.2": 1, 109 | "JohnTalintyre": 1, 110 | "KevinKinnell?rev=1.4": 1, 111 | "KlausWriessnegger": 1, 112 | "ManagingWebs?rev=1.21": 1, 113 | "ManagingWebs?rev=1.22": 1, 114 | "ManagingWebs?skin=print": 1, 115 | "MartinCleaver": 1, 116 | "NewUserTemplate?skin=print": 1, 117 | "PeterFokkinga?rev=1.2": 1, 118 | "RichardDonkin?skin=print": 1, 119 | "SearchDoesNotWork?rev=r1.1": 1, 120 | "SearchDoesNotWork?rev=r1.2": 1, 121 | "SvenDowideit": 1, 122 | "SvenDowideit?rev=1.1": 1, 123 | "SvenDowideit?rev=r1.1": 1, 124 | "TWikiCategoryTable": 1, 125 | "TWikiDocGraphics": 1, 126 | "TWikiEnhancementRequests?rev=1.3": 1, 127 | "TWikiFAQ": 1, 128 | "TWikiFAQ?rev=1.11": 1, 129 | "TWikiHistory?rev=1.59": 1, 130 | "TWikiHistory?rev=1.8": 1, 131 | "TWikiHistory?rev=1.9": 1, 132 | "TWikiHistory?rev=r1.44": 1, 133 | "TWikiHistory?rev=r1.49": 1, 134 | "TWikiHistory?rev=r1.50": 1, 135 | "TWikiHistory?rev=r1.54": 1, 136 | "TWikiHistory?rev=r1.55": 1, 137 | "TWikiPlugins?rev=1.19": 1, 138 | "TWikiRegistration?rev=r1.4": 1, 139 | "TWikiRegistration?rev=r1.7": 1, 140 | "TWikiSiteTools": 1, 141 | "TWikiSkins?skin=print": 1, 142 | "TWikiTopics?rev=r1.10": 1, 143 | "TWikiTopics?rev=r1.4": 1, 144 | "TWikiTopics?rev=r1.7": 1, 145 | "TWikiTutorial": 1, 146 | "TWikiUpgradeTo01May2000": 1, 147 | "TWikiUpgradeTo01May2000?rev=1.3": 1, 148 | "TablePlugin?skin=print": 1, 149 | "TextFormattingRules?rev=r1.15": 1, 150 | "TextFormattingRules?rev=r1.16": 1, 151 | "TextFormattingRules?rev=r1.19": 1, 152 | "TextFormattingRules?rev=r1.21": 1, 153 | "TextFormattingRules?rev=r1.22": 1, 154 | "TextFormattingRules?rev=r1.24": 1, 155 | "TextFormattingRules?rev=r1.26": 1, 156 | "TextFormattingRules?rev=r1.28": 1, 157 | "TextFormattingRules?rev=r1.31": 1, 158 | "TextFormattingRules?rev=r1.33": 1, 159 | "TextFormattingRules?rev=r1.35": 1, 160 | "TextFormattingRules?rev=r1.37": 1, 161 | "WebHome": 1, 162 | "WebHome?rev=r1.47": 1, 163 | "WebHome?rev=r1.49": 1, 164 | "WebIndex": 1, 165 | "WebSearch?rev=1.11": 1, 166 | "WebSearch?rev=r1.10": 1, 167 | "WebSearch?rev=r1.9": 1, 168 | "WebSearch?skin=print": 1, 169 | "WebSiteTools": 1, 170 | "WebTopicEditTemplate": 1, 171 | "WebTopicList": 1, 172 | "WelcomeGuest?rev=r1.11": 1, 173 | "WelcomeGuest?rev=r1.18": 1, 174 | "WelcomeGuest?rev=r1.19": 1, 175 | "WelcomeGuest?rev=r1.5": 1, 176 | "WelcomeGuest?rev=r1.6": 1, 177 | "WhatIsWikiWiki": 1, 178 | "WikiCulture": 1, 179 | "WikiName": 1, 180 | "WikiNotation": 1, 181 | "WikiNotation?skin=print": 1, 182 | "WikiReferences?skin=print": 1, 183 | "WikiSyntax": 1, 184 | "WikiTopic": 1, 185 | "WikiWord?rev=1.3": 1 186 | } 187 | }, 188 | { 189 | "count": 66, 190 | "id": "0005000004", 191 | "template": "GET twiki bin view Main (.*) HTTP 1.0", 192 | "tokens": { 193 | "AndreaSterbini": 1, 194 | "AndreaSterbini?rev=r1.1": 1, 195 | "ConfigurationVariables": 2, 196 | "DCC": 2, 197 | "DCCAndPostFix": 3, 198 | "DCCGraphs": 1, 199 | "LinksOfUse": 2, 200 | "LondonOffice": 1, 201 | "MikeMannix": 1, 202 | "PostSuper": 2, 203 | "PostfixCmd": 2, 204 | "PostfixCommands": 4, 205 | "RBLsHowTo": 3, 206 | "RelayGateway": 2, 207 | "Relay_Domains": 1, 208 | "SanJoseOffice": 2, 209 | "SideBar": 1, 210 | "SimonMudd": 1, 211 | "SpamAssassin": 2, 212 | "SpamAssassinAndPostFix": 2, 213 | "SpamAssassinTaggingOnly": 2, 214 | "TWi": 1, 215 | "TWikiAdminGroup": 1, 216 | "TWikiGuest": 1, 217 | "VerifingGatway": 1, 218 | "VishaalGolam": 1, 219 | "WebChanges": 1, 220 | "WebHome": 9, 221 | "WebHome?rev=1.25": 1, 222 | "WebHome?rev=1.27": 1, 223 | "WebHome?rev=r1.8": 1, 224 | "WebHome?skin=print": 1, 225 | "WebHome?skin=print&rev=1.25": 1, 226 | "WebNotify": 2, 227 | "WebNotify?rev=r1.6": 1, 228 | "WebPreferences": 1, 229 | "WebSearch": 1, 230 | "WebStatistics": 1, 231 | "WebTopicList": 2 232 | } 233 | }, 234 | { 235 | "count": 194, 236 | "id": "0005000005", 237 | "template": "GET twiki bin view Main (.*) HTTP 1.1", 238 | "tokens": { 239 | "ConfigurationVariables": 3, 240 | "DCC": 1, 241 | "DCCAndPostFix": 9, 242 | "DCCGraphs": 3, 243 | "FileAttachment?rev=1.1": 1, 244 | "FileAttachment?rev=1.2": 1, 245 | "JorisBenschop?skin=print": 1, 246 | "KevinWGagel": 3, 247 | "LinksOfUse": 5, 248 | "MikeMannix": 1, 249 | "MikeMannix?rev=1.3": 1, 250 | "NicholasLee?rev=1.1": 1, 251 | "NicholasLee?rev=1.2": 1, 252 | "PeterThoeny": 1, 253 | "PostQueue": 1, 254 | "PostSuper": 5, 255 | "PostSuper?rev=1.1": 1, 256 | "PostSuper?rev=r1.1": 1, 257 | "Postfix": 1, 258 | "PostfixCmd": 4, 259 | "PostfixCommands": 7, 260 | "RBLsHowTo": 5, 261 | "RelayGateway": 5, 262 | "RelayGateway?rev=1.3": 1, 263 | "Relay_Domains": 2, 264 | "SideBar": 4, 265 | "SideBar?rev=1.1": 1, 266 | "SpamAssassin": 4, 267 | "SpamAssassinAndPostFix": 15, 268 | "SpamAssassinDeleting": 10, 269 | "SpamAssassinTaggingOnly": 16, 270 | "SpamAssassinUsingRazorAndDCC": 7, 271 | "TWikiAdminGroup": 2, 272 | "TWikiAdminGroup?rev=1.6": 1, 273 | "TWikiGroups": 2, 274 | "TWikiGroups?rev=1.2": 1, 275 | "TWikiGuest": 1, 276 | "TWikiGuest?rev=1.4": 1, 277 | "TWikiGuest?rev=r1.1": 1, 278 | "TWikiGuest?rev=r1.3": 1, 279 | "TWikiGuest?skin=print": 1, 280 | "TWikiUsers": 2, 281 | "TWikiUsers?rev=1.21": 1, 282 | "ThanadonSomdee": 1, 283 | "TokyoOffice": 1, 284 | "TokyoOffice?rev=1.2": 1, 285 | "TokyoOffice?rev=1.3": 1, 286 | "TokyoOffice?rev=r1.3": 1, 287 | "VerifingGatway": 3, 288 | "WebChanges": 1, 289 | "WebChanges?skin=print": 1, 290 | "WebHome": 32, 291 | "WebHome?rev=r1.16": 1, 292 | "WebHome?rev=r1.24": 1, 293 | "WebHome?rev=r1.9": 1, 294 | "WebIndex?rev=1.1": 1, 295 | "WebIndex?rev=r1.2": 1, 296 | "WebNotify": 1, 297 | "WebPreferences": 1, 298 | "WebPreferences?rev=1.13": 1, 299 | "WebPreferences?rev=1.14": 1, 300 | "WebPreferences?rev=r1.10": 1, 301 | "WebPreferences?rev=r1.14": 1, 302 | "WebPreferences?rev=r1.2": 1, 303 | "WebPreferences?rev=r1.4": 1, 304 | "WebPreferences?rev=r1.9": 1, 305 | "WebStatistics?skin=print": 1, 306 | "WelcomeGuest": 1 307 | } 308 | }, 309 | { 310 | "count": 64, 311 | "id": "0005000006", 312 | "template": "GET twiki bin edit Main (.*) HTTP 1.1", 313 | "tokens": { 314 | "Allow_min_user?topicparent=Main.ConfigurationVariables": 1, 315 | "Always_bcc?topicparent=Main.ConfigurationVariables": 1, 316 | "Berkeley_db_create_buffer_size?topicparent=Main.ConfigurationVariables": 1, 317 | "BookView?topicparent=Main.TWikiVariables": 1, 318 | "Cleanup_service_name?topicparent=Main.ConfigurationVariables": 1, 319 | "Daemon_directory?topicparent=Main.ConfigurationVariables": 1, 320 | "Default_delivery_slot_discount?topicparent=Main.ConfigurationVariables": 1, 321 | "Defer_transports?topicparent=Main.ConfigurationVariables": 1, 322 | "Delay_notice_recipient?topicparent=Main.ConfigurationVariables": 1, 323 | "Delay_warning_time?topicparent=Main.ConfigurationVariables": 1, 324 | "Deliver_lock_attempts?topicparent=Main.ConfigurationVariables": 1, 325 | "Double_bounce_sender?topicparent=Main.ConfigurationVariables": 1, 326 | "Expand_owner_alias?topicparent=Main.ConfigurationVariables": 1, 327 | "Export_environment?topicparent=Main.ConfigurationVariables": 1, 328 | "Fast_flush_domains?topicparent=Main.ConfigurationVariables": 1, 329 | "Flush_service_name?topicparent=Main.ConfigurationVariables": 1, 330 | "Forward_expansion_filter?topicparent=Main.ConfigurationVariables": 1, 331 | "Header_address_token_limit?topicparent=Main.ConfigurationVariables": 1, 332 | "Header_checks?topicparent=Main.ConfigurationVariables": 1, 333 | "Ignore_mx_lookup_error?topicparent=Main.ConfigurationVariables": 1, 334 | "Invalid_hostname_reject_code?topicparent=Main.ConfigurationVariables": 1, 335 | "KevinWGagel?t=1078670331": 1, 336 | "Lmtp_connect_timeout?topicparent=Main.ConfigurationVariables": 1, 337 | "Lmtp_mail_timeout?topicparent=Main.ConfigurationVariables": 1, 338 | "Lmtp_quit_timeout?topicparent=Main.ConfigurationVariables": 1, 339 | "Local_recipient_maps?topicparent=Main.ConfigurationVariables": 1, 340 | "Mail_release_date?topicparent=Main.ConfigurationVariables": 1, 341 | "Mailq_path?topicparent=Main.ConfigurationVariables": 1, 342 | "Maps_rbl_reject_code?topicparent=Main.ConfigurationVariables": 1, 343 | "Masquerade_classes?topicparent=Main.ConfigurationVariables": 1, 344 | "Max_use?topicparent=Main.ConfigurationVariables": 1, 345 | "Message_size_limit?topicparent=Main.ConfigurationVariables": 1, 346 | "Mydestination?topicparent=Main.ConfigurationVariables": 1, 347 | "OfficeLocations?t=1078691049": 1, 348 | "PostConf?topicparent=Main.PostfixCommands": 1, 349 | "Qmqpd_authorized_clients?topicparent=Main.ConfigurationVariables": 1, 350 | "RBLsHowTo?t=1078668449": 1, 351 | "RazorAndPostFix?topicparent=Main.WebHome": 1, 352 | "Relayhost?topicparent=Main.ConfigurationVariables": 1, 353 | "Sender_canonical_maps?topicparent=Main.ConfigurationVariables": 1, 354 | "Setgid_group?topicparent=Main.ConfigurationVariables": 1, 355 | "Smtp_line_length_limit?topicparent=Main.ConfigurationVariables": 1, 356 | "Smtp_pix_workaround_delay_time?topicparent=Main.ConfigurationVariables": 1, 357 | "Smtpd_banner?topicparent=Main.ConfigurationVariables": 1, 358 | "Smtpd_etrn_restrictions?topicparent=Main.ConfigurationVariables": 1, 359 | "Smtpd_history_flush_threshold?topicparent=Main.ConfigurationVariables": 1, 360 | "SpamAssassin?t=1078709979": 1, 361 | "Strict_8bitmime?topicparent=Main.ConfigurationVariables": 1, 362 | "Syslog_name?topicparent=Main.ConfigurationVariables": 1, 363 | "TWikiForms?topicparent=Main.TWikiVariables": 1, 364 | "TWikiGuest?t=1078713282": 1, 365 | "TWikiPreferences?topicparent=Main.WebHome": 1, 366 | "TestArea?topicparent=Main.WebHome": 1, 367 | "TokyoOffice?t=1078706364": 1, 368 | "Trigger_timeout?topicparent=Main.ConfigurationVariables": 1, 369 | "Undisclosed_recipients_header?topicparent=Main.ConfigurationVariables": 1, 370 | "Unknown_local_recipient_reject_code?topicparent=Main.ConfigurationVariables": 1, 371 | "UvscanAndPostFix?topicparent=Main.WebHome": 2, 372 | "Virtual_gid_maps?topicparent=Main.ConfigurationVariables": 1, 373 | "Virtual_mailbox_lock?topicparent=Main.ConfigurationVariables": 1, 374 | "WebSearch?t=1078669682": 1, 375 | "WebStatistics?t=1078690975": 1, 376 | "WelcomeGuest?topicparent=Main.WebHome": 1 377 | } 378 | }, 379 | { 380 | "count": 120, 381 | "id": "0005000007", 382 | "template": "GET dccstats (.*) HTTP 1.1", 383 | "tokens": { 384 | "index.html": 10, 385 | "stats-hashes.1month.png": 10, 386 | "stats-hashes.1week.png": 10, 387 | "stats-hashes.1year.png": 10, 388 | "stats-spam-ratio.1day.png": 10, 389 | "stats-spam-ratio.1month.png": 10, 390 | "stats-spam-ratio.1week.png": 10, 391 | "stats-spam-ratio.1year.png": 10, 392 | "stats-spam.1day.png": 10, 393 | "stats-spam.1month.png": 10, 394 | "stats-spam.1week.png": 10, 395 | "stats-spam.1year.png": 10 396 | } 397 | }, 398 | { 399 | "count": 59, 400 | "id": "0005000008", 401 | "template": "GET dccstats (.*) HTTP 1.0", 402 | "tokens": { 403 | "index.html": 4, 404 | "stats-hashes.1month.png": 5, 405 | "stats-hashes.1week.png": 5, 406 | "stats-hashes.1year.png": 5, 407 | "stats-spam-ratio.1day.png": 5, 408 | "stats-spam-ratio.1month.png": 5, 409 | "stats-spam-ratio.1week.png": 5, 410 | "stats-spam-ratio.1year.png": 5, 411 | "stats-spam.1day.png": 5, 412 | "stats-spam.1month.png": 5, 413 | "stats-spam.1week.png": 5, 414 | "stats-spam.1year.png": 5 415 | } 416 | }, 417 | { 418 | "count": 108, 419 | "id": "0005000009", 420 | "template": "GET icons (.*) HTTP 1.1", 421 | "tokens": { 422 | "PythonPowered.png": 36, 423 | "gnu-head-tiny.jpg": 36, 424 | "mailman.jpg": 36 425 | } 426 | }, 427 | { 428 | "count": 391, 429 | "id": "0005000010", 430 | "template": "GET (.*) HTTP 1.1", 431 | "tokens": { 432 | "AmavisNew.html": 9, 433 | "DCC.html": 1, 434 | "LateEmail.html": 3, 435 | "RBL.html": 4, 436 | "SpamAssassin.html": 9, 437 | "antivirus.html": 1, 438 | "cgi-bin mailgraph2.cgi": 16, 439 | "clients.html": 4, 440 | "dccstats": 1, 441 | "favicon.ico": 24, 442 | "ie.htm": 7, 443 | "images image004.jpg": 7, 444 | "images image005.jpg": 7, 445 | "images msgops.JPG": 7, 446 | "mailman": 6, 447 | "mailman admin": 2, 448 | "mailman admin artsscience": 1, 449 | "mailman admin deans": 1, 450 | "mailman admin educationadmin": 1, 451 | "mailman admin fcd": 1, 452 | "mailman admin gisgrad": 1, 453 | "mailman admin hs_rcafaculty": 1, 454 | "mailman admin hs_support": 1, 455 | "mailman admin jjec": 1, 456 | "mailman admin mlc": 1, 457 | "mailman admin ncbnpfaculty": 1, 458 | "mailman admin ppwc": 6, 459 | "mailman admin ppwc ?VARHELP=general owner": 1, 460 | "mailman admin ppwc gateway": 2, 461 | "mailman admin ppwc general": 2, 462 | "mailman admin ppwc logout": 2, 463 | "mailman admin ppwc members": 4, 464 | "mailman admin ppwc members add": 1, 465 | "mailman admin ppwc members list": 1, 466 | "mailman admin ppwc members?letter=n": 1, 467 | "mailman admin ppwc members?letter=p": 4, 468 | "mailman admin ppwc passwords": 1, 469 | "mailman admin sswk": 1, 470 | "mailman admin webber": 1, 471 | "mailman admin webct": 1, 472 | "mailman admindb ppwc": 1, 473 | "mailman listinfo": 11, 474 | "mailman listinfo administration": 3, 475 | "mailman listinfo artsscience": 1, 476 | "mailman listinfo business": 1, 477 | "mailman listinfo cnc_forestry": 1, 478 | "mailman listinfo cnc_notice": 1, 479 | "mailman listinfo cncce": 2, 480 | "mailman listinfo deans": 1, 481 | "mailman listinfo dentalstudies": 1, 482 | "mailman listinfo faculty": 1, 483 | "mailman listinfo fcd": 1, 484 | "mailman listinfo gisgrad": 1, 485 | "mailman listinfo hs_rcafaculty": 1, 486 | "mailman listinfo hs_support": 1, 487 | "mailman listinfo hsdivision": 1, 488 | "mailman listinfo jjec": 1, 489 | "mailman listinfo mgt-157": 1, 490 | "mailman listinfo mlc": 1, 491 | "mailman listinfo ncbnpfaculty": 1, 492 | "mailman listinfo ppwc": 12, 493 | "mailman listinfo purchasing": 1, 494 | "mailman listinfo techcomm": 1, 495 | "mailman listinfo webber": 3, 496 | "mailman listinfo webct": 1, 497 | "mailman options cnc_notice arobin%40shaw.c": 1, 498 | "mailman options ppwc ppwctwentynine--at--shaw.com": 1, 499 | "mailman private artsscience": 1, 500 | "mailman private business": 1, 501 | "mailman private dentalstudies": 1, 502 | "mailman private hs_support": 1, 503 | "mailman private hsdivision": 1, 504 | "mailman private mlc": 1, 505 | "mailman private sswk": 1, 506 | "pipermail cipg 2003-november.txt": 1, 507 | "pipermail cnc_notice 2003-December 000002.html": 1, 508 | "pipermail cnc_notice 2003-December.txt": 1, 509 | "pipermail cnc_notice 2004-February.txt": 1, 510 | "pipermail cncce 2004-January 000001.html": 3, 511 | "pipermail cncce 2004-January 000002.html": 1, 512 | "pipermail cncce 2004-January.txt": 1, 513 | "pipermail fcd": 1, 514 | "pipermail gisgrad": 1, 515 | "pipermail techcomm": 1, 516 | "pipermail webber": 1, 517 | "pipermail webber 2004-January 000000.html": 1, 518 | "razor.html": 18, 519 | "rejected.html": 1, 520 | "rfc.html": 1, 521 | "robots.txt": 2, 522 | "twiki": 1, 523 | "twiki bin attach Main ConfigurationVariables": 1, 524 | "twiki bin attach Main OfficeLocations": 1, 525 | "twiki bin attach Main PostfixCommands": 1, 526 | "twiki bin attach Main SpamAssassinAndPostFix": 1, 527 | "twiki bin attach Main TWikiGroups": 1, 528 | "twiki bin attach Main TWikiGuest": 1, 529 | "twiki bin attach Main WebPreferences": 1, 530 | "twiki bin attach Sandbox WebHome": 1, 531 | "twiki bin attach TWiki AndreaSterbini": 1, 532 | "twiki bin attach TWiki DefaultPlugin": 1, 533 | "twiki bin attach TWiki HaroldGottschalk": 1, 534 | "twiki bin attach TWiki InterWikis": 1, 535 | "twiki bin attach TWiki KevinKinnell": 1, 536 | "twiki bin attach TWiki TWikiDocGraphics?filename=pencil.gif&revInfo=1": 1, 537 | "twiki bin attach TWiki TWikiDocGraphics?filename=viewtopic.gif&revInfo=1": 1, 538 | "twiki bin attach TWiki TWikiSite": 1, 539 | "twiki bin attach TWiki TablePlugin": 1, 540 | "twiki bin attach TWiki WebPreferences": 1, 541 | "twiki bin attach TWiki WebSearch": 1, 542 | "twiki bin edit Sandbox TestTopic2?topicparent=Sandbox.WebHome": 1, 543 | "twiki bin edit Sandbox TestTopic5?topicparent=Sandbox.WebHome": 1, 544 | "twiki bin edit Sandbox TestTopic6?topicparent=Sandbox.WebHome": 1, 545 | "twiki bin edit Sandbox TestTopic7?topicparent=Sandbox.WebHome": 1, 546 | "twiki bin edit TWiki AppendixFileSystem?t=1078674582": 1, 547 | "twiki bin edit TWiki DefaultPlugin?t=1078688936": 1, 548 | "twiki bin edit TWiki HaroldGottschalk?t=1078717948": 1, 549 | "twiki bin edit TWiki InterWikis?t=1078696998": 1, 550 | "twiki bin edit TWiki KevinKinnell?t=1078692967": 1, 551 | "twiki bin edit TWiki KlausWriessnegger?t=1078709735": 1, 552 | "twiki bin edit TWiki NewTopic?topicparent=TWiki.WikiSyntax": 1, 553 | "twiki bin edit TWiki RichardDonkin?t=1078691832": 1, 554 | "twiki bin edit TWiki RyanFreebern?t=1078701457": 1, 555 | "twiki bin edit TWiki SvenDowideit?t=1078710644": 1, 556 | "twiki bin edit TWiki TWikiCodevFeatureToDo?topicparent=TWiki.TWikiHistory": 1, 557 | "twiki bin edit TWiki TWikiCodevTWikiEnhancementRequests?topicparent=TWiki.TWikiHistory": 1, 558 | "twiki bin edit TWiki TWikiCodevTWikiPlannedFeatures?topicparent=TWiki.TWikiHistory": 1, 559 | "twiki bin edit TWiki TWikiPages?topicparent=TWiki.WelcomeGuest": 1, 560 | "twiki bin edit TWiki TWikiPlugins?t=1078696313": 1, 561 | "twiki bin edit TWiki TWikiRegistration?t=1078670224": 1, 562 | "twiki bin edit TWiki TWikiSite?t=1078681794": 1, 563 | "twiki bin edit TWiki TWikiVariables?t=1078684115": 1, 564 | "twiki bin edit TWiki TablePlugin?t=1078681446": 1, 565 | "twiki bin edit TWiki TestArea?topicparent=TWiki.WelcomeGuest": 1, 566 | "twiki bin edit TWiki UnchangeableTopicBug?topicparent=TWiki.TWikiHistory": 1, 567 | "twiki bin edit TWiki WebNotification?topicparent=TWiki.TWikiUpgradeTo01May2000": 1, 568 | "twiki bin edit TWiki WebSiteTools?t=1078731408": 1, 569 | "twiki bin edit TWiki WikiNotation?t=1078726052": 1, 570 | "twiki bin edit TWiki WikiStyleWord?topicparent=TWiki.TextFormattingFAQ": 1, 571 | "twiki bin oops Main DCC?template=oopsmore¶m1=1.1¶m2=1.1": 1, 572 | "twiki bin oops Main DCCAndPostFix?template=oopsmore¶m1=1.2¶m2=1.2": 1, 573 | "twiki bin oops Main FileAttachment?template=oopsmore¶m1=1.3¶m2=1.3": 1, 574 | "twiki bin oops Main NicholasLee?template=oopsmore¶m1=1.2¶m2=1.2": 1, 575 | "twiki bin oops Main WebChanges?template=oopsmore¶m1=1.2¶m2=1.2": 1, 576 | "twiki bin oops Sandbox WebHome?template=oopsmore¶m1=1.7¶m2=1.7": 1, 577 | "twiki bin oops TWiki AppendixFileSystem?template=oopsmore¶m1=1.12¶m2=1.12": 1, 578 | "twiki bin oops TWiki DefaultPlugin?template=oopsmore¶m1=1.5¶m2=1.5": 1, 579 | "twiki bin oops TWiki HaroldGottschalk?template=oopsmore¶m1=1.3¶m2=1.3": 1, 580 | "twiki bin oops TWiki ResetPassword?template=oopsmore¶m1=1.4¶m2=1.4": 1, 581 | "twiki bin oops TWiki RichardDonkin?template=oopsmore¶m1=1.2¶m2=1.2": 1, 582 | "twiki bin oops TWiki RyanFreebern?template=oopsmore¶m1=1.2¶m2=1.2": 1, 583 | "twiki bin oops TWiki TWikiHistory?template=oopsmore¶m1=1.61¶m2=1.61": 1, 584 | "twiki bin oops TWiki TWikiPlugins?template=oopsmore¶m1=1.21¶m2=1.21": 1, 585 | "twiki bin oops TWiki TWikiSite?template=oopsmore¶m1=1.21¶m2=1.21": 1, 586 | "twiki bin oops TWiki TWikiVariables?template=oopsmore¶m1=1.62¶m2=1.62": 1, 587 | "twiki bin oops TWiki TextFormattingFAQ?template=oopsmore¶m1=1.14¶m2=1.14": 1, 588 | "twiki bin oops TWiki TextFormattingRules?template=oopsmore¶m1=1.37¶m2=1.37": 1, 589 | "twiki bin oops TWiki WelcomeGuest?template=oopsmore¶m1=1.20¶m2=1.20": 1, 590 | "twiki bin oops TWiki WikiCulture?template=oopsmore¶m1=1.8¶m2=1.8": 1, 591 | "twiki bin oops TWiki WikiNotation?template=oopsmore¶m1=1.3¶m2=1.3": 1, 592 | "twiki bin rdiff Know ReadmeFirst?rev1=1.5&rev2=1.4": 1, 593 | "twiki bin rdiff Know ReadmeFirst?rev1=1.6&rev2=1.5": 1, 594 | "twiki bin rdiff Main ConfigurationVariables": 1, 595 | "twiki bin rdiff Main NicholasLee": 1, 596 | "twiki bin rdiff Main PeterThoeny": 1, 597 | "twiki bin rdiff Main PostQueue": 1, 598 | "twiki bin rdiff Main RelayGateway?rev1=1.2&rev2=1.1": 1, 599 | "twiki bin rdiff Main RelayGateway?rev1=1.3&rev2=1.2": 1, 600 | "twiki bin rdiff Main SanJoseOffice": 1, 601 | "twiki bin rdiff Main SpamAssassin": 1, 602 | "twiki bin rdiff Main SpamAssassinAndPostFix?rev1=1.2&rev2=1.1": 1, 603 | "twiki bin rdiff Main TWikiGroups?rev1=1.3&rev2=1.2": 1, 604 | "twiki bin rdiff Main TWikiGuest": 1, 605 | "twiki bin rdiff Main TWikiGuest?rev1=1.5&rev2=1.4": 1, 606 | "twiki bin rdiff Main TokyoOffice?rev1=1.2&rev2=1.1": 1, 607 | "twiki bin rdiff Main VishaalGolam": 1, 608 | "twiki bin rdiff Main WebChanges": 1, 609 | "twiki bin rdiff Main WebChanges?rev1=1.2&rev2=1.1": 1, 610 | "twiki bin rdiff Main WebHome?rev1=1.28&rev2=1.27": 1, 611 | "twiki bin rdiff Main WebIndex": 1, 612 | "twiki bin rdiff Main WebIndex?rev1=1.2&rev2=1.1": 1, 613 | "twiki bin rdiff Main WebNotify": 1, 614 | "twiki bin rdiff Main WebPreferences?rev1=1.14&rev2=1.13": 1, 615 | "twiki bin rdiff Main WebRss": 1, 616 | "twiki bin rdiff Main WebTopicList": 1, 617 | "twiki bin rdiff Sandbox WebTopicList": 1, 618 | "twiki bin rename TWiki DefaultPlugin": 1, 619 | "twiki bin rename TWiki ResetPassword": 1, 620 | "twiki bin rename TWiki TWikiHistory": 1, 621 | "twiki bin search Main ?scope=topic®ex=on&search=^d": 1, 622 | "twiki bin search Main ?scope=topic®ex=on&search=^f": 1, 623 | "twiki bin search Main ?scope=topic®ex=on&search=^g": 1, 624 | "twiki bin search Main ?scope=topic®ex=on&search=^p": 1, 625 | "twiki bin search Main ?scope=topic®ex=on&search=^t": 1, 626 | "twiki bin search Main ?search=\\\\.*&scope=topic&order=modified&reverse=on®ex=on&nosearch=on&limit=800": 1, 627 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Joris%20*Benschop[^A-Za-z]": 1, 628 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Office%20*Locations[^A-Za-z]": 1, 629 | "twiki bin search Main SearchResult?scope=text®ex=on&search=RBLs%20*How%20*To[^A-Za-z]": 1, 630 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Spam%20*Assassin[^A-Za-z]": 1, 631 | "twiki bin search Main SearchResult?scope=text®ex=on&search=TWiki%20*Admin%20*Group[^A-Za-z]": 1, 632 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Thanadon%20*Somdee[^A-Za-z]": 1, 633 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Web%20*Changes[^A-Za-z]": 1, 634 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Web%20*Index[^A-Za-z]": 1, 635 | "twiki bin search Main SearchResult?scope=text®ex=on&search=Web%20*Statistics[^A-Za-z]": 1, 636 | "twiki bin search TWiki ?scope=topic®ex=on&bookview=on&search=.*": 1, 637 | "twiki bin search TWiki ?scope=topic®ex=on&search=.*": 1, 638 | "twiki bin search TWiki ?scope=topic®ex=on&search=^d": 1, 639 | "twiki bin search TWiki ?scope=topic®ex=on&search=^i": 1, 640 | "twiki bin search TWiki ?scope=topic®ex=on&search=^j": 1, 641 | "twiki bin search TWiki ?scope=topic®ex=on&search=^l": 1, 642 | "twiki bin search TWiki ?scope=topic®ex=on&search=^q": 1, 643 | "twiki bin search TWiki ?scope=topic®ex=on&search=^y": 1, 644 | "twiki bin search TWiki ?search=\\\\.*&scope=topic&order=modified&reverse=on®ex=on&nosearch=on&limit=200": 1, 645 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Al%20*Williams[^A-Za-z]": 1, 646 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Change%20*Password[^A-Za-z]": 1, 647 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Harold%20*Gottschalk[^A-Za-z]": 1, 648 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Inter%20*Wikis[^A-Za-z]": 1, 649 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=John%20*Talintyre[^A-Za-z]": 1, 650 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Kevin%20*Kinnell[^A-Za-z]": 1, 651 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Peter%20*Fokkinga[^A-Za-z]": 1, 652 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=TWiki%20*FAQ[^A-Za-z]": 1, 653 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Web%20*Preferences[^A-Za-z]": 1, 654 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Web%20*Statistics[^A-Za-z]": 1, 655 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Web%20*Topic%20*List[^A-Za-z]": 1, 656 | "twiki bin search TWiki SearchResult?scope=text®ex=on&search=Wiki%20*Notation[^A-Za-z]": 1, 657 | "twiki bin statistics Main": 1, 658 | "twiki bin view Know ReadmeFirst?rev=1.4": 1, 659 | "twiki bin view Sandbox WebHome": 2, 660 | "twiki bin view Sandbox WebHome?rev=1.6": 1, 661 | "twiki bin view Sandbox WebHome?rev=r1.3": 1, 662 | "twiki bin view Sandbox WebStatistics": 1, 663 | "twiki pub TWiki TWikiDocGraphics help.gif": 3, 664 | "twiki pub TWiki TWikiDocGraphics tip.gif": 1, 665 | "twiki pub TWiki TWikiLogos twikiRobot131x64.gif": 1, 666 | "twiki pub TWiki TWikiLogos twikiRobot88x31.gif": 1, 667 | "twiki view Main WebHome": 1 668 | } 669 | } 670 | ] -------------------------------------------------------------------------------- /LogTemplate/sample/sequence_log: -------------------------------------------------------------------------------- 1 | 2015-12-22 07:52:00 [ main:0 ] - [ INFO ] Found bootstrap annotation netflix.karyon.archaius.ArchaiusBootstrap 2 | 2015-12-22 07:52:00 [ main:11 ] - [ INFO ] Adding BootstrapModule class netflix.karyon.archaius.ArchaiusBootstrapModule 3 | 2015-12-22 07:52:00 [ main:15 ] - [ INFO ] Found bootstrap annotation netflix.karyon.KaryonBootstrap 4 | 2015-12-22 07:52:00 [ main:17 ] - [ INFO ] Adding BootstrapModule class netflix.karyon.KaryonBootstrapModule 5 | 2015-12-22 07:52:00 [ main:18 ] - [ INFO ] Found bootstrap annotation com.google.inject.Singleton 6 | 2015-12-22 07:52:00 [ main:21 ] - [ INFO ] Found bootstrap annotation com.netflix.governator.annotations.Modules 7 | 2015-12-22 07:52:00 [ main:22 ] - [ INFO ] Adding BootstrapModule class com.netflix.governator.guice.bootstrap.ModulesBootstrap 8 | 2015-12-22 07:52:00 [ main:205 ] - [ WARN ] No base packages specified - no classpath scanning will be done 9 | 2015-12-22 07:52:00 [ main:239 ] - [ WARN ] No URLs will be polled as dynamic configuration sources. 10 | 2015-12-22 07:52:00 [ main:240 ] - [ INFO ] To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath. 11 | 2015-12-22 07:52:00 [ main:269 ] - [ INFO ] DynamicPropertyFactory is initialized with configuration sources: com.netflix.config.ConcurrentCompositeConfiguration@45f45fa1 12 | 2015-12-22 07:52:00 [ main:497 ] - [ INFO ] Loading application properties with app id: AppServer and environment: local 13 | 2015-12-22 07:52:00 [ main:531 ] - [ INFO ] Loaded properties file jar:file:/usr/app/topology-graph-service-all-1.0.jar!/AppServer.properties 14 | 2015-12-22 07:52:00 [ main:533 ] - [ INFO ] Loaded properties file jar:file:/usr/app/topology-graph-service-all-1.0.jar!/AppServer-local.properties 15 | 2015-12-22 07:52:00 [ main:545 ] - [ INFO ] Hibernate Validator null 16 | 2015-12-22 07:52:00 [ main:567 ] - [ INFO ] Getting instance of : netflix.karyon.ShutdownModule 17 | 2015-12-22 07:52:00 [ main:570 ] - [ INFO ] Adding module 'netflix.karyon.ShutdownModule 18 | 2015-12-22 07:52:00 [ main:570 ] - [ INFO ] Getting instance of : com.ibm.alchemy.karyon2.RestfulJettyModule 19 | 2015-12-22 07:52:00 [ main:571 ] - [ INFO ] Adding module 'com.ibm.alchemy.karyon2.RestfulJettyModule 20 | 2015-12-22 07:52:01 [ main:1028 ] - [ INFO ] Rx server started at port: 7002 21 | 2015-12-22 07:52:01 [ main:1053 ] - [ INFO ] Logging initialized @1556ms 22 | 2015-12-22 07:52:05 [ main:4924 ] - [ INFO ] Reflections took 3748 ms to scan 1 urls, producing 27941 keys and 50594 values 23 | 2015-12-22 07:52:05 [ main:5111 ] - [ INFO ] jetty-9.3.z-SNAPSHOT 24 | 2015-12-22 07:52:05 [ main:5137 ] - [ INFO ] Started o.e.j.s.ServletContextHandler@27d5a580{/,null,AVAILABLE} 25 | 2015-12-22 07:52:05 [ main:5138 ] - [ INFO ] Started o.e.j.s.ServletContextHandler@6cb6decd{/swagger,null,AVAILABLE} 26 | 2015-12-22 07:52:05 [ main:5150 ] - [ INFO ] Started ServerConnector@6b58b9e9{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} 27 | 2015-12-22 07:52:05 [ main:5152 ] - [ INFO ] Started @5655ms 28 | 2015-12-22 07:52:25 [ qtp1081769770-23:25182 ] - [ INFO ] Reflections took 2799 ms to scan 1 urls, producing 27941 keys and 50594 values 29 | 2015-12-22 07:53:57 [ qtp1081769770-25:117189 ] - [ INFO ] Reflections took 2916 ms to scan 1 urls, producing 27941 keys and 50594 values 30 | 2015-12-22 07:54:36 [ qtp1081769770-25:156096 ] - [ INFO ] Start to topology discovery. 31 | 2015-12-22 07:54:36 [ qtp1081769770-25:156097 ] - [ INFO ] Start to query Logmet. 32 | 2015-12-22 07:54:36 [ qtp1081769770-25:156103 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770816367. 33 | 2015-12-22 07:54:37 [ qtp1081769770-25:157447 ] - [ INFO ] Retrieved PB records: 159, used 1350 ms. 34 | 2015-12-22 07:54:37 [ qtp1081769770-25:157448 ] - [ INFO ] Start to process PB records. 35 | 2015-12-22 07:54:38 [ qtp1081769770-25:158405 ] - [ INFO ] From PB records found 48 links, used 957 ms. 36 | 2015-12-22 07:54:38 [ qtp1081769770-25:158406 ] - [ INFO ] Start to construct topology graph. 37 | 2015-12-22 07:54:38 [ qtp1081769770-25:158412 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 38 | 2015-12-22 07:54:38 [ qtp1081769770-25:158413 ] - [ INFO ] Topology Graph constructed, used 7 ms. 39 | 2015-12-22 07:54:38 [ qtp1081769770-25:158414 ] - [ INFO ] Topology discovery finished, used 2318 ms. 40 | 2015-12-22 07:54:45 [ qtp1081769770-23:165154 ] - [ INFO ] Start to topology discovery. 41 | 2015-12-22 07:54:45 [ qtp1081769770-23:165155 ] - [ INFO ] Start to query Logmet. 42 | 2015-12-22 07:54:45 [ qtp1081769770-23:165156 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770825420. 43 | 2015-12-22 07:54:46 [ qtp1081769770-23:165760 ] - [ INFO ] Retrieved PB records: 140, used 605 ms. 44 | 2015-12-22 07:54:46 [ qtp1081769770-23:165761 ] - [ INFO ] Start to process PB records. 45 | 2015-12-22 07:54:46 [ qtp1081769770-23:166289 ] - [ INFO ] From PB records found 42 links, used 528 ms. 46 | 2015-12-22 07:54:46 [ qtp1081769770-23:166301 ] - [ INFO ] Start to construct topology graph. 47 | 2015-12-22 07:54:46 [ qtp1081769770-23:166305 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 48 | 2015-12-22 07:54:46 [ qtp1081769770-23:166306 ] - [ INFO ] Topology Graph constructed, used 5 ms. 49 | 2015-12-22 07:54:46 [ qtp1081769770-23:166306 ] - [ INFO ] Topology discovery finished, used 1152 ms. 50 | 2015-12-22 07:54:50 [ qtp1081769770-22:170700 ] - [ INFO ] Start to topology discovery. 51 | 2015-12-22 07:54:50 [ qtp1081769770-22:170700 ] - [ INFO ] Start to query Logmet. 52 | 2015-12-22 07:54:50 [ qtp1081769770-22:170701 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770830965. 53 | 2015-12-22 07:54:51 [ qtp1081769770-22:171297 ] - [ INFO ] Retrieved PB records: 130, used 597 ms. 54 | 2015-12-22 07:54:51 [ qtp1081769770-22:171298 ] - [ INFO ] Start to process PB records. 55 | 2015-12-22 07:54:51 [ qtp1081769770-22:171647 ] - [ INFO ] From PB records found 36 links, used 348 ms. 56 | 2015-12-22 07:54:51 [ qtp1081769770-22:171647 ] - [ INFO ] Start to construct topology graph. 57 | 2015-12-22 07:54:51 [ qtp1081769770-22:171649 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 58 | 2015-12-22 07:54:51 [ qtp1081769770-22:171650 ] - [ INFO ] Topology Graph constructed, used 3 ms. 59 | 2015-12-22 07:54:51 [ qtp1081769770-22:171651 ] - [ INFO ] Topology discovery finished, used 951 ms. 60 | 2015-12-22 07:54:59 [ qtp1081769770-19:179205 ] - [ INFO ] Start to topology discovery. 61 | 2015-12-22 07:54:59 [ qtp1081769770-19:179206 ] - [ INFO ] Start to query Logmet. 62 | 2015-12-22 07:54:59 [ qtp1081769770-19:179207 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770299471. 63 | 2015-12-22 07:55:00 [ qtp1081769770-19:180169 ] - [ INFO ] Retrieved PB records: 496, used 963 ms. 64 | 2015-12-22 07:55:00 [ qtp1081769770-19:180170 ] - [ INFO ] Start to process PB records. 65 | 2015-12-22 07:55:05 [ qtp1081769770-19:185302 ] - [ INFO ] From PB records found 155 links, used 5132 ms. 66 | 2015-12-22 07:55:05 [ qtp1081769770-19:185303 ] - [ INFO ] Start to construct topology graph. 67 | 2015-12-22 07:55:05 [ qtp1081769770-19:185309 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 68 | 2015-12-22 07:55:05 [ qtp1081769770-19:185309 ] - [ INFO ] Topology Graph constructed, used 6 ms. 69 | 2015-12-22 07:55:05 [ qtp1081769770-19:185310 ] - [ INFO ] Topology discovery finished, used 6105 ms. 70 | 2015-12-22 07:59:19 [ qtp1081769770-25:439247 ] - [ INFO ] Reflections took 2509 ms to scan 1 urls, producing 27941 keys and 50594 values 71 | 2015-12-22 07:59:38 [ qtp1081769770-23:458620 ] - [ INFO ] Reflections took 2436 ms to scan 1 urls, producing 27941 keys and 50594 values 72 | 2015-12-22 07:59:53 [ qtp1081769770-19:472881 ] - [ INFO ] Start to topology discovery. 73 | 2015-12-22 07:59:53 [ qtp1081769770-19:472882 ] - [ INFO ] Start to query Logmet. 74 | 2015-12-22 07:59:53 [ qtp1081769770-19:472885 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771133149. 75 | 2015-12-22 07:59:53 [ qtp1081769770-19:473537 ] - [ INFO ] Retrieved PB records: 141, used 655 ms. 76 | 2015-12-22 07:59:53 [ qtp1081769770-19:473538 ] - [ INFO ] Start to process PB records. 77 | 2015-12-22 07:59:54 [ qtp1081769770-19:473915 ] - [ INFO ] From PB records found 43 links, used 377 ms. 78 | 2015-12-22 07:59:54 [ qtp1081769770-19:473916 ] - [ INFO ] Start to construct topology graph. 79 | 2015-12-22 07:59:54 [ qtp1081769770-19:473918 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 80 | 2015-12-22 07:59:54 [ qtp1081769770-19:473918 ] - [ INFO ] Topology Graph constructed, used 2 ms. 81 | 2015-12-22 07:59:54 [ qtp1081769770-19:473918 ] - [ INFO ] Topology discovery finished, used 1037 ms. 82 | 2015-12-22 08:00:46 [ qtp1081769770-23:526031 ] - [ INFO ] Start to topology discovery. 83 | 2015-12-22 08:00:46 [ qtp1081769770-23:526032 ] - [ INFO ] Start to query Logmet. 84 | 2015-12-22 08:00:46 [ qtp1081769770-23:526034 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771186298. 85 | 2015-12-22 08:00:46 [ qtp1081769770-23:526136 ] - [ INFO ] I/O exception (java.net.SocketException) caught when processing request to {s}->https://logmet.ng.bluemix.net:443: Connection reset 86 | 2015-12-22 08:00:46 [ qtp1081769770-23:526138 ] - [ INFO ] Retrying request to {s}->https://logmet.ng.bluemix.net:443 87 | 2015-12-22 08:00:46 [ qtp1081769770-23:526657 ] - [ INFO ] Retrieved PB records: 145, used 625 ms. 88 | 2015-12-22 08:00:46 [ qtp1081769770-23:526657 ] - [ INFO ] Start to process PB records. 89 | 2015-12-22 08:00:47 [ qtp1081769770-23:527697 ] - [ INFO ] From PB records found 47 links, used 1040 ms. 90 | 2015-12-22 08:00:47 [ qtp1081769770-23:527698 ] - [ INFO ] Start to construct topology graph. 91 | 2015-12-22 08:00:47 [ qtp1081769770-23:527700 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 92 | 2015-12-22 08:00:47 [ qtp1081769770-23:527700 ] - [ INFO ] Topology Graph constructed, used 2 ms. 93 | 2015-12-22 08:00:47 [ qtp1081769770-23:527700 ] - [ INFO ] Topology discovery finished, used 1669 ms. 94 | 2015-12-22 08:02:24 [ qtp1081769770-25:624314 ] - [ INFO ] Start to topology discovery. 95 | 2015-12-22 08:02:24 [ qtp1081769770-25:624314 ] - [ INFO ] Start to query Logmet. 96 | 2015-12-22 08:02:24 [ qtp1081769770-25:624315 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770744579. 97 | 2015-12-22 08:02:25 [ qtp1081769770-25:625277 ] - [ INFO ] Retrieved PB records: 498, used 963 ms. 98 | 2015-12-22 08:02:25 [ qtp1081769770-25:625277 ] - [ INFO ] Start to process PB records. 99 | 2015-12-22 08:02:30 [ qtp1081769770-25:630261 ] - [ INFO ] From PB records found 155 links, used 4984 ms. 100 | 2015-12-22 08:02:30 [ qtp1081769770-25:630261 ] - [ INFO ] Start to construct topology graph. 101 | 2015-12-22 08:02:30 [ qtp1081769770-25:630267 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 102 | 2015-12-22 08:02:30 [ qtp1081769770-25:630267 ] - [ INFO ] Topology Graph constructed, used 6 ms. 103 | 2015-12-22 08:02:30 [ qtp1081769770-25:630267 ] - [ INFO ] Topology discovery finished, used 5953 ms. 104 | 2015-12-22 08:02:30 [ qtp1081769770-24:630524 ] - [ INFO ] Start to topology discovery. 105 | 2015-12-22 08:02:30 [ qtp1081769770-24:630525 ] - [ INFO ] Start to query Logmet. 106 | 2015-12-22 08:02:30 [ qtp1081769770-24:630526 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770750790. 107 | 2015-12-22 08:02:31 [ qtp1081769770-24:631331 ] - [ INFO ] Retrieved PB records: 498, used 806 ms. 108 | 2015-12-22 08:02:31 [ qtp1081769770-24:631332 ] - [ INFO ] Start to process PB records. 109 | 2015-12-22 08:02:36 [ qtp1081769770-24:636199 ] - [ INFO ] From PB records found 156 links, used 4867 ms. 110 | 2015-12-22 08:02:36 [ qtp1081769770-24:636200 ] - [ INFO ] Start to construct topology graph. 111 | 2015-12-22 08:02:36 [ qtp1081769770-24:636204 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 112 | 2015-12-22 08:02:36 [ qtp1081769770-24:636205 ] - [ INFO ] Topology Graph constructed, used 5 ms. 113 | 2015-12-22 08:02:36 [ qtp1081769770-24:636205 ] - [ INFO ] Topology discovery finished, used 5681 ms. 114 | 2015-12-22 08:02:57 [ qtp1081769770-19:657271 ] - [ INFO ] Start to topology discovery. 115 | 2015-12-22 08:02:57 [ qtp1081769770-19:657272 ] - [ INFO ] Start to query Logmet. 116 | 2015-12-22 08:02:57 [ qtp1081769770-19:657273 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771317537. 117 | 2015-12-22 08:02:58 [ qtp1081769770-19:657844 ] - [ INFO ] Retrieved PB records: 180, used 572 ms. 118 | 2015-12-22 08:02:58 [ qtp1081769770-19:657845 ] - [ INFO ] Start to process PB records. 119 | 2015-12-22 08:02:58 [ qtp1081769770-19:658455 ] - [ INFO ] From PB records found 60 links, used 610 ms. 120 | 2015-12-22 08:02:58 [ qtp1081769770-19:658455 ] - [ INFO ] Start to construct topology graph. 121 | 2015-12-22 08:02:58 [ qtp1081769770-19:658457 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 122 | 2015-12-22 08:02:58 [ qtp1081769770-19:658458 ] - [ INFO ] Topology Graph constructed, used 3 ms. 123 | 2015-12-22 08:02:58 [ qtp1081769770-19:658458 ] - [ INFO ] Topology discovery finished, used 1187 ms. 124 | 2015-12-22 08:03:20 [ qtp1081769770-26:680364 ] - [ INFO ] Start to topology discovery. 125 | 2015-12-22 08:03:20 [ qtp1081769770-26:680365 ] - [ INFO ] Start to query Logmet. 126 | 2015-12-22 08:03:20 [ qtp1081769770-26:680366 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770800630. 127 | 2015-12-22 08:03:21 [ qtp1081769770-26:681222 ] - [ INFO ] Retrieved PB records: 497, used 857 ms. 128 | 2015-12-22 08:03:21 [ qtp1081769770-26:681223 ] - [ INFO ] Start to process PB records. 129 | 2015-12-22 08:03:26 [ qtp1081769770-26:685940 ] - [ INFO ] From PB records found 158 links, used 4717 ms. 130 | 2015-12-22 08:03:26 [ qtp1081769770-26:685941 ] - [ INFO ] Start to construct topology graph. 131 | 2015-12-22 08:03:26 [ qtp1081769770-26:685944 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 132 | 2015-12-22 08:03:26 [ qtp1081769770-26:685944 ] - [ INFO ] Topology Graph constructed, used 3 ms. 133 | 2015-12-22 08:03:26 [ qtp1081769770-26:685944 ] - [ INFO ] Topology discovery finished, used 5580 ms. 134 | 2015-12-22 08:03:26 [ qtp1081769770-19:686204 ] - [ INFO ] Start to topology discovery. 135 | 2015-12-22 08:03:26 [ qtp1081769770-19:686205 ] - [ INFO ] Start to query Logmet. 136 | 2015-12-22 08:03:26 [ qtp1081769770-19:686206 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770806470. 137 | 2015-12-22 08:03:27 [ qtp1081769770-19:687167 ] - [ INFO ] Retrieved PB records: 497, used 962 ms. 138 | 2015-12-22 08:03:27 [ qtp1081769770-19:687168 ] - [ INFO ] Start to process PB records. 139 | 2015-12-22 08:03:32 [ qtp1081769770-19:691914 ] - [ INFO ] From PB records found 158 links, used 4746 ms. 140 | 2015-12-22 08:03:32 [ qtp1081769770-19:691915 ] - [ INFO ] Start to construct topology graph. 141 | 2015-12-22 08:03:32 [ qtp1081769770-19:691917 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 142 | 2015-12-22 08:03:32 [ qtp1081769770-19:691918 ] - [ INFO ] Topology Graph constructed, used 3 ms. 143 | 2015-12-22 08:03:32 [ qtp1081769770-19:691918 ] - [ INFO ] Topology discovery finished, used 5714 ms. 144 | 2015-12-22 08:05:28 [ qtp1081769770-19:808732 ] - [ INFO ] Start to topology discovery. 145 | 2015-12-22 08:05:28 [ qtp1081769770-19:808733 ] - [ INFO ] Start to query Logmet. 146 | 2015-12-22 08:05:28 [ qtp1081769770-19:808734 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770928998. 147 | 2015-12-22 08:05:29 [ qtp1081769770-19:809597 ] - [ INFO ] Retrieved PB records: 498, used 864 ms. 148 | 2015-12-22 08:05:29 [ qtp1081769770-19:809598 ] - [ INFO ] Start to process PB records. 149 | 2015-12-22 08:05:34 [ qtp1081769770-19:814395 ] - [ INFO ] From PB records found 151 links, used 4797 ms. 150 | 2015-12-22 08:05:34 [ qtp1081769770-19:814396 ] - [ INFO ] Start to construct topology graph. 151 | 2015-12-22 08:05:34 [ qtp1081769770-19:814398 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 152 | 2015-12-22 08:05:34 [ qtp1081769770-19:814399 ] - [ INFO ] Topology Graph constructed, used 3 ms. 153 | 2015-12-22 08:05:34 [ qtp1081769770-19:814399 ] - [ INFO ] Topology discovery finished, used 5667 ms. 154 | 2015-12-22 08:05:34 [ qtp1081769770-25:814669 ] - [ INFO ] Start to topology discovery. 155 | 2015-12-22 08:05:34 [ qtp1081769770-25:814671 ] - [ INFO ] Start to query Logmet. 156 | 2015-12-22 08:05:34 [ qtp1081769770-25:814672 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450770934936. 157 | 2015-12-22 08:05:35 [ qtp1081769770-25:815569 ] - [ INFO ] Retrieved PB records: 498, used 898 ms. 158 | 2015-12-22 08:05:35 [ qtp1081769770-25:815569 ] - [ INFO ] Start to process PB records. 159 | 2015-12-22 08:05:40 [ qtp1081769770-25:820353 ] - [ INFO ] From PB records found 149 links, used 4784 ms. 160 | 2015-12-22 08:05:40 [ qtp1081769770-25:820353 ] - [ INFO ] Start to construct topology graph. 161 | 2015-12-22 08:05:40 [ qtp1081769770-25:820356 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 162 | 2015-12-22 08:05:40 [ qtp1081769770-25:820356 ] - [ INFO ] Topology Graph constructed, used 3 ms. 163 | 2015-12-22 08:05:40 [ qtp1081769770-25:820357 ] - [ INFO ] Topology discovery finished, used 5688 ms. 164 | 2015-12-22 08:15:21 [ qtp1081769770-26:1401012 ] - [ INFO ] Start to topology discovery. 165 | 2015-12-22 08:15:21 [ qtp1081769770-26:1401013 ] - [ INFO ] Start to query Logmet. 166 | 2015-12-22 08:15:21 [ qtp1081769770-26:1401014 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771521278. 167 | 2015-12-22 08:15:22 [ qtp1081769770-26:1401925 ] - [ INFO ] Retrieved PB records: 499, used 912 ms. 168 | 2015-12-22 08:15:22 [ qtp1081769770-26:1401926 ] - [ INFO ] Start to process PB records. 169 | 2015-12-22 08:15:27 [ qtp1081769770-26:1406740 ] - [ INFO ] From PB records found 151 links, used 4814 ms. 170 | 2015-12-22 08:15:27 [ qtp1081769770-26:1406741 ] - [ INFO ] Start to construct topology graph. 171 | 2015-12-22 08:15:27 [ qtp1081769770-26:1406743 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 172 | 2015-12-22 08:15:27 [ qtp1081769770-26:1406744 ] - [ INFO ] Topology Graph constructed, used 3 ms. 173 | 2015-12-22 08:15:27 [ qtp1081769770-26:1406744 ] - [ INFO ] Topology discovery finished, used 5732 ms. 174 | 2015-12-22 08:15:56 [ qtp1081769770-24:1436248 ] - [ INFO ] Reflections took 2468 ms to scan 1 urls, producing 27941 keys and 50594 values 175 | 2015-12-22 08:16:00 [ qtp1081769770-26:1440420 ] - [ INFO ] Reflections took 2588 ms to scan 1 urls, producing 27941 keys and 50594 values 176 | 2015-12-22 08:16:04 [ qtp1081769770-22:1444150 ] - [ INFO ] Reflections took 2436 ms to scan 1 urls, producing 27941 keys and 50594 values 177 | 2015-12-22 08:16:09 [ qtp1081769770-25:1449360 ] - [ INFO ] Reflections took 2832 ms to scan 1 urls, producing 27941 keys and 50594 values 178 | 2015-12-22 08:17:27 [ qtp1081769770-24:1527297 ] - [ INFO ] Start to topology discovery. 179 | 2015-12-22 08:17:27 [ qtp1081769770-24:1527297 ] - [ INFO ] Start to query Logmet. 180 | 2015-12-22 08:17:27 [ qtp1081769770-24:1527299 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450772187563. 181 | 2015-12-22 08:17:28 [ qtp1081769770-24:1527861 ] - [ INFO ] Retrieved PB records: 151, used 564 ms. 182 | 2015-12-22 08:17:28 [ qtp1081769770-24:1527862 ] - [ INFO ] Start to process PB records. 183 | 2015-12-22 08:17:28 [ qtp1081769770-24:1528284 ] - [ INFO ] From PB records found 49 links, used 421 ms. 184 | 2015-12-22 08:17:28 [ qtp1081769770-24:1528284 ] - [ INFO ] Start to construct topology graph. 185 | 2015-12-22 08:17:28 [ qtp1081769770-24:1528286 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 186 | 2015-12-22 08:17:28 [ qtp1081769770-24:1528286 ] - [ INFO ] Topology Graph constructed, used 2 ms. 187 | 2015-12-22 08:17:28 [ qtp1081769770-24:1528286 ] - [ INFO ] Topology discovery finished, used 989 ms. 188 | 2015-12-22 08:18:23 [ qtp1081769770-19:1583331 ] - [ INFO ] Start to topology discovery. 189 | 2015-12-22 08:18:23 [ qtp1081769770-19:1583332 ] - [ INFO ] Start to query Logmet. 190 | 2015-12-22 08:18:23 [ qtp1081769770-19:1583336 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771703600. 191 | 2015-12-22 08:18:24 [ qtp1081769770-19:1584208 ] - [ INFO ] Retrieved PB records: 497, used 876 ms. 192 | 2015-12-22 08:18:24 [ qtp1081769770-19:1584209 ] - [ INFO ] Start to process PB records. 193 | 2015-12-22 08:18:29 [ qtp1081769770-19:1589093 ] - [ INFO ] From PB records found 154 links, used 4884 ms. 194 | 2015-12-22 08:18:29 [ qtp1081769770-19:1589094 ] - [ INFO ] Start to construct topology graph. 195 | 2015-12-22 08:18:29 [ qtp1081769770-19:1589097 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 196 | 2015-12-22 08:18:29 [ qtp1081769770-19:1589097 ] - [ INFO ] Topology Graph constructed, used 3 ms. 197 | 2015-12-22 08:18:29 [ qtp1081769770-19:1589097 ] - [ INFO ] Topology discovery finished, used 5766 ms. 198 | 2015-12-22 08:18:29 [ qtp1081769770-24:1589370 ] - [ INFO ] Start to topology discovery. 199 | 2015-12-22 08:18:29 [ qtp1081769770-24:1589371 ] - [ INFO ] Start to query Logmet. 200 | 2015-12-22 08:18:29 [ qtp1081769770-24:1589372 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771709636. 201 | 2015-12-22 08:18:30 [ qtp1081769770-24:1590321 ] - [ INFO ] Retrieved PB records: 497, used 950 ms. 202 | 2015-12-22 08:18:30 [ qtp1081769770-24:1590322 ] - [ INFO ] Start to process PB records. 203 | 2015-12-22 08:18:35 [ qtp1081769770-24:1595106 ] - [ INFO ] From PB records found 153 links, used 4784 ms. 204 | 2015-12-22 08:18:35 [ qtp1081769770-24:1595107 ] - [ INFO ] Start to construct topology graph. 205 | 2015-12-22 08:18:35 [ qtp1081769770-24:1595110 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 206 | 2015-12-22 08:18:35 [ qtp1081769770-24:1595110 ] - [ INFO ] Topology Graph constructed, used 3 ms. 207 | 2015-12-22 08:18:35 [ qtp1081769770-24:1595110 ] - [ INFO ] Topology discovery finished, used 5740 ms. 208 | 2015-12-22 08:18:35 [ qtp1081769770-26:1595362 ] - [ INFO ] Start to topology discovery. 209 | 2015-12-22 08:18:35 [ qtp1081769770-26:1595362 ] - [ INFO ] Start to query Logmet. 210 | 2015-12-22 08:18:35 [ qtp1081769770-26:1595363 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771715627. 211 | 2015-12-22 08:18:36 [ qtp1081769770-26:1596195 ] - [ INFO ] Retrieved PB records: 497, used 833 ms. 212 | 2015-12-22 08:18:36 [ qtp1081769770-26:1596196 ] - [ INFO ] Start to process PB records. 213 | 2015-12-22 08:18:40 [ qtp1081769770-20:1600401 ] - [ INFO ] Start to topology discovery. 214 | 2015-12-22 08:18:40 [ qtp1081769770-20:1600402 ] - [ INFO ] Start to query Logmet. 215 | 2015-12-22 08:18:40 [ qtp1081769770-20:1600403 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450772260667. 216 | 2015-12-22 08:18:41 [ qtp1081769770-20:1600968 ] - [ INFO ] Retrieved PB records: 150, used 566 ms. 217 | 2015-12-22 08:18:41 [ qtp1081769770-20:1600969 ] - [ INFO ] Start to process PB records. 218 | 2015-12-22 08:18:41 [ qtp1081769770-26:1600974 ] - [ INFO ] From PB records found 154 links, used 4778 ms. 219 | 2015-12-22 08:18:41 [ qtp1081769770-26:1600975 ] - [ INFO ] Start to construct topology graph. 220 | 2015-12-22 08:18:41 [ qtp1081769770-26:1600977 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 221 | 2015-12-22 08:18:41 [ qtp1081769770-26:1600978 ] - [ INFO ] Topology Graph constructed, used 3 ms. 222 | 2015-12-22 08:18:41 [ qtp1081769770-26:1600978 ] - [ INFO ] Topology discovery finished, used 5617 ms. 223 | 2015-12-22 08:18:41 [ qtp1081769770-23:1601249 ] - [ INFO ] Start to topology discovery. 224 | 2015-12-22 08:18:41 [ qtp1081769770-23:1601250 ] - [ INFO ] Start to query Logmet. 225 | 2015-12-22 08:18:41 [ qtp1081769770-23:1601251 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771721515. 226 | 2015-12-22 08:18:41 [ qtp1081769770-20:1601391 ] - [ INFO ] From PB records found 47 links, used 422 ms. 227 | 2015-12-22 08:18:41 [ qtp1081769770-20:1601391 ] - [ INFO ] Start to construct topology graph. 228 | 2015-12-22 08:18:41 [ qtp1081769770-20:1601392 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 229 | 2015-12-22 08:18:41 [ qtp1081769770-20:1601393 ] - [ INFO ] Topology Graph constructed, used 2 ms. 230 | 2015-12-22 08:18:41 [ qtp1081769770-20:1601393 ] - [ INFO ] Topology discovery finished, used 992 ms. 231 | 2015-12-22 08:18:42 [ qtp1081769770-23:1602145 ] - [ INFO ] Retrieved PB records: 496, used 895 ms. 232 | 2015-12-22 08:18:42 [ qtp1081769770-23:1602146 ] - [ INFO ] Start to process PB records. 233 | 2015-12-22 08:18:47 [ qtp1081769770-23:1606863 ] - [ INFO ] From PB records found 152 links, used 4717 ms. 234 | 2015-12-22 08:18:47 [ qtp1081769770-23:1606864 ] - [ INFO ] Start to construct topology graph. 235 | 2015-12-22 08:18:47 [ qtp1081769770-23:1606867 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 236 | 2015-12-22 08:18:47 [ qtp1081769770-23:1606867 ] - [ INFO ] Topology Graph constructed, used 3 ms. 237 | 2015-12-22 08:18:47 [ qtp1081769770-23:1606868 ] - [ INFO ] Topology discovery finished, used 5619 ms. 238 | 2015-12-22 08:18:47 [ qtp1081769770-22:1607123 ] - [ INFO ] Start to topology discovery. 239 | 2015-12-22 08:18:47 [ qtp1081769770-22:1607123 ] - [ INFO ] Start to query Logmet. 240 | 2015-12-22 08:18:47 [ qtp1081769770-22:1607124 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771727388. 241 | 2015-12-22 08:18:48 [ qtp1081769770-22:1607936 ] - [ INFO ] Retrieved PB records: 496, used 813 ms. 242 | 2015-12-22 08:18:48 [ qtp1081769770-22:1607937 ] - [ INFO ] Start to process PB records. 243 | 2015-12-22 08:18:53 [ qtp1081769770-22:1612748 ] - [ INFO ] From PB records found 151 links, used 4811 ms. 244 | 2015-12-22 08:18:53 [ qtp1081769770-22:1612749 ] - [ INFO ] Start to construct topology graph. 245 | 2015-12-22 08:18:53 [ qtp1081769770-22:1612752 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 246 | 2015-12-22 08:18:53 [ qtp1081769770-22:1612752 ] - [ INFO ] Topology Graph constructed, used 3 ms. 247 | 2015-12-22 08:18:53 [ qtp1081769770-22:1612752 ] - [ INFO ] Topology discovery finished, used 5629 ms. 248 | 2015-12-22 08:18:53 [ qtp1081769770-26:1613024 ] - [ INFO ] Start to topology discovery. 249 | 2015-12-22 08:18:53 [ qtp1081769770-26:1613024 ] - [ INFO ] Start to query Logmet. 250 | 2015-12-22 08:18:53 [ qtp1081769770-26:1613025 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771733289. 251 | 2015-12-22 08:18:54 [ qtp1081769770-26:1613826 ] - [ INFO ] Retrieved PB records: 496, used 802 ms. 252 | 2015-12-22 08:18:54 [ qtp1081769770-26:1613827 ] - [ INFO ] Start to process PB records. 253 | 2015-12-22 08:18:58 [ qtp1081769770-26:1618560 ] - [ INFO ] From PB records found 152 links, used 4733 ms. 254 | 2015-12-22 08:18:58 [ qtp1081769770-26:1618560 ] - [ INFO ] Start to construct topology graph. 255 | 2015-12-22 08:18:58 [ qtp1081769770-26:1618563 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 256 | 2015-12-22 08:18:58 [ qtp1081769770-26:1618565 ] - [ INFO ] Topology Graph constructed, used 5 ms. 257 | 2015-12-22 08:18:58 [ qtp1081769770-26:1618566 ] - [ INFO ] Topology discovery finished, used 5542 ms. 258 | 2015-12-22 08:19:35 [ qtp1081769770-25:1654824 ] - [ INFO ] Start to topology discovery. 259 | 2015-12-22 08:19:35 [ qtp1081769770-25:1654825 ] - [ INFO ] Start to query Logmet. 260 | 2015-12-22 08:19:35 [ qtp1081769770-25:1654826 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771775090. 261 | 2015-12-22 08:19:35 [ qtp1081769770-25:1655636 ] - [ INFO ] Retrieved PB records: 497, used 811 ms. 262 | 2015-12-22 08:19:35 [ qtp1081769770-25:1655637 ] - [ INFO ] Start to process PB records. 263 | 2015-12-22 08:19:40 [ qtp1081769770-25:1660353 ] - [ INFO ] From PB records found 150 links, used 4716 ms. 264 | 2015-12-22 08:19:40 [ qtp1081769770-25:1660353 ] - [ INFO ] Start to construct topology graph. 265 | 2015-12-22 08:19:40 [ qtp1081769770-25:1660356 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 266 | 2015-12-22 08:19:40 [ qtp1081769770-25:1660356 ] - [ INFO ] Topology Graph constructed, used 3 ms. 267 | 2015-12-22 08:19:40 [ qtp1081769770-25:1660356 ] - [ INFO ] Topology discovery finished, used 5532 ms. 268 | 2015-12-22 08:19:40 [ qtp1081769770-23:1660628 ] - [ INFO ] Start to topology discovery. 269 | 2015-12-22 08:19:40 [ qtp1081769770-23:1660633 ] - [ INFO ] Start to query Logmet. 270 | 2015-12-22 08:19:40 [ qtp1081769770-23:1660634 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771780898. 271 | 2015-12-22 08:19:41 [ qtp1081769770-23:1661485 ] - [ INFO ] Retrieved PB records: 497, used 852 ms. 272 | 2015-12-22 08:19:41 [ qtp1081769770-23:1661486 ] - [ INFO ] Start to process PB records. 273 | 2015-12-22 08:19:46 [ qtp1081769770-23:1666251 ] - [ INFO ] From PB records found 151 links, used 4765 ms. 274 | 2015-12-22 08:19:46 [ qtp1081769770-23:1666251 ] - [ INFO ] Start to construct topology graph. 275 | 2015-12-22 08:19:46 [ qtp1081769770-23:1666254 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 276 | 2015-12-22 08:19:46 [ qtp1081769770-23:1666254 ] - [ INFO ] Topology Graph constructed, used 3 ms. 277 | 2015-12-22 08:19:46 [ qtp1081769770-23:1666254 ] - [ INFO ] Topology discovery finished, used 5626 ms. 278 | 2015-12-22 08:19:46 [ qtp1081769770-26:1666505 ] - [ INFO ] Start to topology discovery. 279 | 2015-12-22 08:19:46 [ qtp1081769770-26:1666505 ] - [ INFO ] Start to query Logmet. 280 | 2015-12-22 08:19:46 [ qtp1081769770-26:1666506 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771786770. 281 | 2015-12-22 08:19:47 [ qtp1081769770-26:1667399 ] - [ INFO ] Retrieved PB records: 497, used 894 ms. 282 | 2015-12-22 08:19:47 [ qtp1081769770-26:1667400 ] - [ INFO ] Start to process PB records. 283 | 2015-12-22 08:19:52 [ qtp1081769770-26:1672192 ] - [ INFO ] From PB records found 150 links, used 4792 ms. 284 | 2015-12-22 08:19:52 [ qtp1081769770-26:1672192 ] - [ INFO ] Start to construct topology graph. 285 | 2015-12-22 08:19:52 [ qtp1081769770-26:1672195 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 286 | 2015-12-22 08:19:52 [ qtp1081769770-26:1672195 ] - [ INFO ] Topology Graph constructed, used 3 ms. 287 | 2015-12-22 08:19:52 [ qtp1081769770-26:1672195 ] - [ INFO ] Topology discovery finished, used 5690 ms. 288 | 2015-12-22 08:19:52 [ qtp1081769770-20:1672472 ] - [ INFO ] Start to topology discovery. 289 | 2015-12-22 08:19:52 [ qtp1081769770-20:1672472 ] - [ INFO ] Start to query Logmet. 290 | 2015-12-22 08:19:52 [ qtp1081769770-20:1672473 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771792737. 291 | 2015-12-22 08:19:53 [ qtp1081769770-20:1673352 ] - [ INFO ] Retrieved PB records: 497, used 880 ms. 292 | 2015-12-22 08:19:53 [ qtp1081769770-20:1673353 ] - [ INFO ] Start to process PB records. 293 | 2015-12-22 08:19:58 [ qtp1081769770-20:1678057 ] - [ INFO ] From PB records found 153 links, used 4704 ms. 294 | 2015-12-22 08:19:58 [ qtp1081769770-20:1678057 ] - [ INFO ] Start to construct topology graph. 295 | 2015-12-22 08:19:58 [ qtp1081769770-20:1678060 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 296 | 2015-12-22 08:19:58 [ qtp1081769770-20:1678060 ] - [ INFO ] Topology Graph constructed, used 3 ms. 297 | 2015-12-22 08:19:58 [ qtp1081769770-20:1678060 ] - [ INFO ] Topology discovery finished, used 5588 ms. 298 | 2015-12-22 08:19:58 [ qtp1081769770-24:1678310 ] - [ INFO ] Start to topology discovery. 299 | 2015-12-22 08:19:58 [ qtp1081769770-24:1678311 ] - [ INFO ] Start to query Logmet. 300 | 2015-12-22 08:19:58 [ qtp1081769770-24:1678312 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771798576. 301 | 2015-12-22 08:19:59 [ qtp1081769770-24:1679180 ] - [ INFO ] Retrieved PB records: 498, used 869 ms. 302 | 2015-12-22 08:19:59 [ qtp1081769770-24:1679180 ] - [ INFO ] Start to process PB records. 303 | 2015-12-22 08:20:04 [ qtp1081769770-24:1683931 ] - [ INFO ] From PB records found 149 links, used 4751 ms. 304 | 2015-12-22 08:20:04 [ qtp1081769770-24:1683932 ] - [ INFO ] Start to construct topology graph. 305 | 2015-12-22 08:20:04 [ qtp1081769770-24:1683934 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 306 | 2015-12-22 08:20:04 [ qtp1081769770-24:1683935 ] - [ INFO ] Topology Graph constructed, used 3 ms. 307 | 2015-12-22 08:20:04 [ qtp1081769770-24:1683935 ] - [ INFO ] Topology discovery finished, used 5625 ms. 308 | 2015-12-22 08:20:04 [ qtp1081769770-19:1684205 ] - [ INFO ] Start to topology discovery. 309 | 2015-12-22 08:20:04 [ qtp1081769770-19:1684206 ] - [ INFO ] Start to query Logmet. 310 | 2015-12-22 08:20:04 [ qtp1081769770-19:1684207 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771804471. 311 | 2015-12-22 08:20:05 [ qtp1081769770-19:1685084 ] - [ INFO ] Retrieved PB records: 498, used 878 ms. 312 | 2015-12-22 08:20:05 [ qtp1081769770-19:1685085 ] - [ INFO ] Start to process PB records. 313 | 2015-12-22 08:20:10 [ qtp1081769770-19:1689817 ] - [ INFO ] From PB records found 148 links, used 4732 ms. 314 | 2015-12-22 08:20:10 [ qtp1081769770-19:1689818 ] - [ INFO ] Start to construct topology graph. 315 | 2015-12-22 08:20:10 [ qtp1081769770-19:1689820 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 316 | 2015-12-22 08:20:10 [ qtp1081769770-19:1689821 ] - [ INFO ] Topology Graph constructed, used 3 ms. 317 | 2015-12-22 08:20:10 [ qtp1081769770-19:1689821 ] - [ INFO ] Topology discovery finished, used 5616 ms. 318 | 2015-12-22 08:20:31 [ qtp1081769770-25:1711565 ] - [ INFO ] Start to topology discovery. 319 | 2015-12-22 08:20:31 [ qtp1081769770-25:1711566 ] - [ INFO ] Start to query Logmet. 320 | 2015-12-22 08:20:31 [ qtp1081769770-25:1711567 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771831831. 321 | 2015-12-22 08:20:39 [ qtp1081769770-25:1719700 ] - [ INFO ] Retrieved PB records: 498, used 8134 ms. 322 | 2015-12-22 08:20:39 [ qtp1081769770-25:1719701 ] - [ INFO ] Start to process PB records. 323 | 2015-12-22 08:20:44 [ qtp1081769770-25:1724482 ] - [ INFO ] From PB records found 152 links, used 4781 ms. 324 | 2015-12-22 08:20:44 [ qtp1081769770-25:1724483 ] - [ INFO ] Start to construct topology graph. 325 | 2015-12-22 08:20:44 [ qtp1081769770-25:1724485 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 326 | 2015-12-22 08:20:44 [ qtp1081769770-25:1724486 ] - [ INFO ] Topology Graph constructed, used 3 ms. 327 | 2015-12-22 08:20:44 [ qtp1081769770-25:1724486 ] - [ INFO ] Topology discovery finished, used 12921 ms. 328 | 2015-12-22 08:20:45 [ qtp1081769770-23:1724757 ] - [ INFO ] Start to topology discovery. 329 | 2015-12-22 08:20:45 [ qtp1081769770-23:1724758 ] - [ INFO ] Start to query Logmet. 330 | 2015-12-22 08:20:45 [ qtp1081769770-23:1724759 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771845023. 331 | 2015-12-22 08:20:45 [ qtp1081769770-23:1725662 ] - [ INFO ] Retrieved PB records: 498, used 904 ms. 332 | 2015-12-22 08:20:45 [ qtp1081769770-23:1725663 ] - [ INFO ] Start to process PB records. 333 | 2015-12-22 08:20:50 [ qtp1081769770-23:1730405 ] - [ INFO ] From PB records found 153 links, used 4742 ms. 334 | 2015-12-22 08:20:50 [ qtp1081769770-23:1730405 ] - [ INFO ] Start to construct topology graph. 335 | 2015-12-22 08:20:50 [ qtp1081769770-23:1730408 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 336 | 2015-12-22 08:20:50 [ qtp1081769770-23:1730408 ] - [ INFO ] Topology Graph constructed, used 3 ms. 337 | 2015-12-22 08:20:50 [ qtp1081769770-23:1730408 ] - [ INFO ] Topology discovery finished, used 5651 ms. 338 | 2015-12-22 08:20:50 [ qtp1081769770-26:1730658 ] - [ INFO ] Start to topology discovery. 339 | 2015-12-22 08:20:50 [ qtp1081769770-26:1730659 ] - [ INFO ] Start to query Logmet. 340 | 2015-12-22 08:20:50 [ qtp1081769770-26:1730660 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771850924. 341 | 2015-12-22 08:20:51 [ qtp1081769770-26:1731516 ] - [ INFO ] Retrieved PB records: 498, used 857 ms. 342 | 2015-12-22 08:20:51 [ qtp1081769770-26:1731518 ] - [ INFO ] Start to process PB records. 343 | 2015-12-22 08:20:56 [ qtp1081769770-26:1736290 ] - [ INFO ] From PB records found 153 links, used 4772 ms. 344 | 2015-12-22 08:20:56 [ qtp1081769770-26:1736291 ] - [ INFO ] Start to construct topology graph. 345 | 2015-12-22 08:20:56 [ qtp1081769770-26:1736293 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 346 | 2015-12-22 08:20:56 [ qtp1081769770-26:1736294 ] - [ INFO ] Topology Graph constructed, used 3 ms. 347 | 2015-12-22 08:20:56 [ qtp1081769770-26:1736294 ] - [ INFO ] Topology discovery finished, used 5636 ms. 348 | 2015-12-22 08:20:56 [ qtp1081769770-20:1736566 ] - [ INFO ] Start to topology discovery. 349 | 2015-12-22 08:20:56 [ qtp1081769770-20:1736567 ] - [ INFO ] Start to query Logmet. 350 | 2015-12-22 08:20:56 [ qtp1081769770-20:1736578 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771856842. 351 | 2015-12-22 08:20:57 [ qtp1081769770-20:1737426 ] - [ INFO ] Retrieved PB records: 498, used 859 ms. 352 | 2015-12-22 08:20:57 [ qtp1081769770-20:1737427 ] - [ INFO ] Start to process PB records. 353 | 2015-12-22 08:21:02 [ qtp1081769770-20:1742207 ] - [ INFO ] From PB records found 153 links, used 4779 ms. 354 | 2015-12-22 08:21:02 [ qtp1081769770-20:1742207 ] - [ INFO ] Start to construct topology graph. 355 | 2015-12-22 08:21:02 [ qtp1081769770-20:1742209 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 356 | 2015-12-22 08:21:02 [ qtp1081769770-20:1742210 ] - [ INFO ] Topology Graph constructed, used 3 ms. 357 | 2015-12-22 08:21:02 [ qtp1081769770-20:1742210 ] - [ INFO ] Topology discovery finished, used 5644 ms. 358 | 2015-12-22 08:21:02 [ qtp1081769770-24:1742460 ] - [ INFO ] Start to topology discovery. 359 | 2015-12-22 08:21:02 [ qtp1081769770-24:1742461 ] - [ INFO ] Start to query Logmet. 360 | 2015-12-22 08:21:02 [ qtp1081769770-24:1742462 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771862726. 361 | 2015-12-22 08:21:03 [ qtp1081769770-24:1743330 ] - [ INFO ] Retrieved PB records: 498, used 869 ms. 362 | 2015-12-22 08:21:03 [ qtp1081769770-24:1743331 ] - [ INFO ] Start to process PB records. 363 | 2015-12-22 08:21:08 [ qtp1081769770-24:1748083 ] - [ INFO ] From PB records found 154 links, used 4752 ms. 364 | 2015-12-22 08:21:08 [ qtp1081769770-24:1748083 ] - [ INFO ] Start to construct topology graph. 365 | 2015-12-22 08:21:08 [ qtp1081769770-24:1748086 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 366 | 2015-12-22 08:21:08 [ qtp1081769770-24:1748086 ] - [ INFO ] Topology Graph constructed, used 3 ms. 367 | 2015-12-22 08:21:08 [ qtp1081769770-24:1748086 ] - [ INFO ] Topology discovery finished, used 5626 ms. 368 | 2015-12-22 08:21:08 [ qtp1081769770-19:1748360 ] - [ INFO ] Start to topology discovery. 369 | 2015-12-22 08:21:08 [ qtp1081769770-19:1748364 ] - [ INFO ] Start to query Logmet. 370 | 2015-12-22 08:21:08 [ qtp1081769770-19:1748365 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450771868629. 371 | 2015-12-22 08:21:09 [ qtp1081769770-19:1749265 ] - [ INFO ] Retrieved PB records: 498, used 901 ms. 372 | 2015-12-22 08:21:09 [ qtp1081769770-19:1749266 ] - [ INFO ] Start to process PB records. 373 | 2015-12-22 08:21:14 [ qtp1081769770-19:1754022 ] - [ INFO ] From PB records found 154 links, used 4756 ms. 374 | 2015-12-22 08:21:14 [ qtp1081769770-19:1754023 ] - [ INFO ] Start to construct topology graph. 375 | 2015-12-22 08:21:14 [ qtp1081769770-19:1754025 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 376 | 2015-12-22 08:21:14 [ qtp1081769770-19:1754025 ] - [ INFO ] Topology Graph constructed, used 2 ms. 377 | 2015-12-22 08:21:14 [ qtp1081769770-19:1754026 ] - [ INFO ] Topology discovery finished, used 5666 ms. 378 | 2015-12-22 08:32:03 [ qtp1081769770-24:2403203 ] - [ INFO ] Start to topology discovery. 379 | 2015-12-22 08:32:03 [ qtp1081769770-24:2403203 ] - [ INFO ] Start to query Logmet. 380 | 2015-12-22 08:32:03 [ qtp1081769770-24:2403204 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450773063468. 381 | 2015-12-22 08:32:04 [ qtp1081769770-24:2403865 ] - [ INFO ] Retrieved PB records: 157, used 662 ms. 382 | 2015-12-22 08:32:04 [ qtp1081769770-24:2403866 ] - [ INFO ] Start to process PB records. 383 | 2015-12-22 08:32:04 [ qtp1081769770-24:2404327 ] - [ INFO ] From PB records found 48 links, used 461 ms. 384 | 2015-12-22 08:32:04 [ qtp1081769770-24:2404328 ] - [ INFO ] Start to construct topology graph. 385 | 2015-12-22 08:32:04 [ qtp1081769770-24:2404329 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 386 | 2015-12-22 08:32:04 [ qtp1081769770-24:2404329 ] - [ INFO ] Topology Graph constructed, used 1 ms. 387 | 2015-12-22 08:32:04 [ qtp1081769770-24:2404329 ] - [ INFO ] Topology discovery finished, used 1126 ms. 388 | 2015-12-22 08:38:05 [ qtp1081769770-25:2765407 ] - [ INFO ] Start to topology discovery. 389 | 2015-12-22 08:38:05 [ qtp1081769770-25:2765408 ] - [ INFO ] Start to query Logmet. 390 | 2015-12-22 08:38:05 [ qtp1081769770-25:2765409 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450773425673. 391 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766010 ] - [ INFO ] Retrieved PB records: 156, used 602 ms. 392 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766010 ] - [ INFO ] Start to process PB records. 393 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766471 ] - [ INFO ] From PB records found 48 links, used 461 ms. 394 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766472 ] - [ INFO ] Start to construct topology graph. 395 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766473 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 396 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766473 ] - [ INFO ] Topology Graph constructed, used 1 ms. 397 | 2015-12-22 08:38:06 [ qtp1081769770-25:2766474 ] - [ INFO ] Topology discovery finished, used 1067 ms. 398 | 2015-12-22 08:39:47 [ qtp1081769770-23:2867674 ] - [ INFO ] Start to topology discovery. 399 | 2015-12-22 08:39:47 [ qtp1081769770-23:2867675 ] - [ INFO ] Start to query Logmet. 400 | 2015-12-22 08:39:47 [ qtp1081769770-23:2867675 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450773527939. 401 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868322 ] - [ INFO ] Retrieved PB records: 138, used 647 ms. 402 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868323 ] - [ INFO ] Start to process PB records. 403 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868675 ] - [ INFO ] From PB records found 40 links, used 352 ms. 404 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868676 ] - [ INFO ] Start to construct topology graph. 405 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868677 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 406 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868677 ] - [ INFO ] Topology Graph constructed, used 1 ms. 407 | 2015-12-22 08:39:48 [ qtp1081769770-23:2868677 ] - [ INFO ] Topology discovery finished, used 1003 ms. 408 | 2015-12-22 08:42:04 [ qtp1081769770-25:3003862 ] - [ INFO ] Start to topology discovery. 409 | 2015-12-22 08:42:04 [ qtp1081769770-25:3003862 ] - [ INFO ] Start to query Logmet. 410 | 2015-12-22 08:42:04 [ qtp1081769770-25:3003863 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450773664127. 411 | 2015-12-22 08:42:04 [ qtp1081769770-25:3004436 ] - [ INFO ] Retrieved PB records: 144, used 574 ms. 412 | 2015-12-22 08:42:04 [ qtp1081769770-25:3004437 ] - [ INFO ] Start to process PB records. 413 | 2015-12-22 08:42:05 [ qtp1081769770-25:3004827 ] - [ INFO ] From PB records found 46 links, used 390 ms. 414 | 2015-12-22 08:42:05 [ qtp1081769770-25:3004828 ] - [ INFO ] Start to construct topology graph. 415 | 2015-12-22 08:42:05 [ qtp1081769770-25:3004829 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 416 | 2015-12-22 08:42:05 [ qtp1081769770-25:3004829 ] - [ INFO ] Topology Graph constructed, used 1 ms. 417 | 2015-12-22 08:42:05 [ qtp1081769770-25:3004829 ] - [ INFO ] Topology discovery finished, used 967 ms. 418 | 2015-12-22 08:44:56 [ qtp1081769770-19:3176225 ] - [ INFO ] Start to topology discovery. 419 | 2015-12-22 08:44:56 [ qtp1081769770-19:3176226 ] - [ INFO ] Start to query Logmet. 420 | 2015-12-22 08:44:56 [ qtp1081769770-19:3176227 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450773836491. 421 | 2015-12-22 08:44:57 [ qtp1081769770-19:3176933 ] - [ INFO ] Retrieved PB records: 171, used 707 ms. 422 | 2015-12-22 08:44:57 [ qtp1081769770-19:3176933 ] - [ INFO ] Start to process PB records. 423 | 2015-12-22 08:44:57 [ qtp1081769770-19:3177487 ] - [ INFO ] From PB records found 54 links, used 554 ms. 424 | 2015-12-22 08:44:57 [ qtp1081769770-19:3177488 ] - [ INFO ] Start to construct topology graph. 425 | 2015-12-22 08:44:57 [ qtp1081769770-19:3177489 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 426 | 2015-12-22 08:44:57 [ qtp1081769770-19:3177489 ] - [ INFO ] Topology Graph constructed, used 1 ms. 427 | 2015-12-22 08:44:57 [ qtp1081769770-19:3177489 ] - [ INFO ] Topology discovery finished, used 1264 ms. 428 | 2015-12-22 08:55:11 [ qtp1081769770-24:3791583 ] - [ INFO ] Start to topology discovery. 429 | 2015-12-22 08:55:11 [ qtp1081769770-24:3791584 ] - [ INFO ] Start to query Logmet. 430 | 2015-12-22 08:55:11 [ qtp1081769770-24:3791585 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450774451849. 431 | 2015-12-22 08:55:12 [ qtp1081769770-24:3792282 ] - [ INFO ] Retrieved PB records: 166, used 698 ms. 432 | 2015-12-22 08:55:12 [ qtp1081769770-24:3792282 ] - [ INFO ] Start to process PB records. 433 | 2015-12-22 08:55:13 [ qtp1081769770-24:3792799 ] - [ INFO ] From PB records found 52 links, used 517 ms. 434 | 2015-12-22 08:55:13 [ qtp1081769770-24:3792799 ] - [ INFO ] Start to construct topology graph. 435 | 2015-12-22 08:55:13 [ qtp1081769770-24:3792800 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 436 | 2015-12-22 08:55:13 [ qtp1081769770-24:3792800 ] - [ INFO ] Topology Graph constructed, used 1 ms. 437 | 2015-12-22 08:55:13 [ qtp1081769770-24:3792800 ] - [ INFO ] Topology discovery finished, used 1217 ms. 438 | 2015-12-22 08:59:35 [ qtp1081769770-26:4055601 ] - [ INFO ] Start to topology discovery. 439 | 2015-12-22 08:59:35 [ qtp1081769770-26:4055601 ] - [ INFO ] Start to query Logmet. 440 | 2015-12-22 08:59:35 [ qtp1081769770-26:4055602 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450774715866. 441 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056204 ] - [ INFO ] Retrieved PB records: 146, used 603 ms. 442 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056204 ] - [ INFO ] Start to process PB records. 443 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056605 ] - [ INFO ] From PB records found 47 links, used 401 ms. 444 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056605 ] - [ INFO ] Start to construct topology graph. 445 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056606 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 446 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056606 ] - [ INFO ] Topology Graph constructed, used 1 ms. 447 | 2015-12-22 08:59:36 [ qtp1081769770-26:4056607 ] - [ INFO ] Topology discovery finished, used 1006 ms. 448 | 2015-12-22 09:01:21 [ qtp1081769770-23:4161087 ] - [ INFO ] Start to topology discovery. 449 | 2015-12-22 09:01:21 [ qtp1081769770-23:4161087 ] - [ INFO ] Start to query Logmet. 450 | 2015-12-22 09:01:21 [ qtp1081769770-23:4161088 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450774821352. 451 | 2015-12-22 09:01:21 [ qtp1081769770-23:4161690 ] - [ INFO ] Retrieved PB records: 147, used 603 ms. 452 | 2015-12-22 09:01:21 [ qtp1081769770-23:4161690 ] - [ INFO ] Start to process PB records. 453 | 2015-12-22 09:01:22 [ qtp1081769770-23:4162096 ] - [ INFO ] From PB records found 47 links, used 406 ms. 454 | 2015-12-22 09:01:22 [ qtp1081769770-23:4162096 ] - [ INFO ] Start to construct topology graph. 455 | 2015-12-22 09:01:22 [ qtp1081769770-23:4162097 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 456 | 2015-12-22 09:01:22 [ qtp1081769770-23:4162097 ] - [ INFO ] Topology Graph constructed, used 1 ms. 457 | 2015-12-22 09:01:22 [ qtp1081769770-23:4162098 ] - [ INFO ] Topology discovery finished, used 1011 ms. 458 | 2015-12-22 09:18:10 [ qtp1081769770-25:5170195 ] - [ INFO ] Start to topology discovery. 459 | 2015-12-22 09:18:10 [ qtp1081769770-25:5170196 ] - [ INFO ] Start to query Logmet. 460 | 2015-12-22 09:18:10 [ qtp1081769770-25:5170197 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450775830461. 461 | 2015-12-22 09:18:11 [ qtp1081769770-25:5170811 ] - [ INFO ] Retrieved PB records: 134, used 615 ms. 462 | 2015-12-22 09:18:11 [ qtp1081769770-25:5170811 ] - [ INFO ] Start to process PB records. 463 | 2015-12-22 09:18:11 [ qtp1081769770-25:5171142 ] - [ INFO ] From PB records found 39 links, used 331 ms. 464 | 2015-12-22 09:18:11 [ qtp1081769770-25:5171143 ] - [ INFO ] Start to construct topology graph. 465 | 2015-12-22 09:18:11 [ qtp1081769770-25:5171143 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 466 | 2015-12-22 09:18:11 [ qtp1081769770-25:5171144 ] - [ INFO ] Topology Graph constructed, used 1 ms. 467 | 2015-12-22 09:18:11 [ qtp1081769770-25:5171144 ] - [ INFO ] Topology discovery finished, used 949 ms. 468 | 2015-12-22 09:48:01 [ main:0 ] - [ INFO ] Found bootstrap annotation netflix.karyon.archaius.ArchaiusBootstrap 469 | 2015-12-22 09:48:01 [ main:11 ] - [ INFO ] Adding BootstrapModule class netflix.karyon.archaius.ArchaiusBootstrapModule 470 | 2015-12-22 09:48:01 [ main:15 ] - [ INFO ] Found bootstrap annotation netflix.karyon.KaryonBootstrap 471 | 2015-12-22 09:48:01 [ main:17 ] - [ INFO ] Adding BootstrapModule class netflix.karyon.KaryonBootstrapModule 472 | 2015-12-22 09:48:01 [ main:18 ] - [ INFO ] Found bootstrap annotation com.google.inject.Singleton 473 | 2015-12-22 09:48:01 [ main:21 ] - [ INFO ] Found bootstrap annotation com.netflix.governator.annotations.Modules 474 | 2015-12-22 09:48:01 [ main:22 ] - [ INFO ] Adding BootstrapModule class com.netflix.governator.guice.bootstrap.ModulesBootstrap 475 | 2015-12-22 09:48:02 [ main:211 ] - [ WARN ] No base packages specified - no classpath scanning will be done 476 | 2015-12-22 09:48:02 [ main:246 ] - [ WARN ] No URLs will be polled as dynamic configuration sources. 477 | 2015-12-22 09:48:02 [ main:247 ] - [ INFO ] To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath. 478 | 2015-12-22 09:48:02 [ main:277 ] - [ INFO ] DynamicPropertyFactory is initialized with configuration sources: com.netflix.config.ConcurrentCompositeConfiguration@45f45fa1 479 | 2015-12-22 09:48:02 [ main:508 ] - [ INFO ] Loading application properties with app id: AppServer and environment: local 480 | 2015-12-22 09:48:02 [ main:544 ] - [ INFO ] Loaded properties file jar:file:/usr/app/topology-graph-service-all-1.0.jar!/AppServer.properties 481 | 2015-12-22 09:48:02 [ main:546 ] - [ INFO ] Loaded properties file jar:file:/usr/app/topology-graph-service-all-1.0.jar!/AppServer-local.properties 482 | 2015-12-22 09:48:02 [ main:560 ] - [ INFO ] Hibernate Validator null 483 | 2015-12-22 09:48:02 [ main:585 ] - [ INFO ] Getting instance of : netflix.karyon.ShutdownModule 484 | 2015-12-22 09:48:02 [ main:588 ] - [ INFO ] Adding module 'netflix.karyon.ShutdownModule 485 | 2015-12-22 09:48:02 [ main:589 ] - [ INFO ] Getting instance of : com.ibm.alchemy.karyon2.RestfulJettyModule 486 | 2015-12-22 09:48:02 [ main:589 ] - [ INFO ] Adding module 'com.ibm.alchemy.karyon2.RestfulJettyModule 487 | 2015-12-22 09:48:02 [ main:1045 ] - [ INFO ] Rx server started at port: 7002 488 | 2015-12-22 09:48:02 [ main:1070 ] - [ INFO ] Logging initialized @1575ms 489 | 2015-12-22 09:48:06 [ main:4935 ] - [ INFO ] Reflections took 3740 ms to scan 1 urls, producing 27941 keys and 50594 values 490 | 2015-12-22 09:48:06 [ main:5111 ] - [ INFO ] jetty-9.3.z-SNAPSHOT 491 | 2015-12-22 09:48:07 [ main:5138 ] - [ INFO ] Started o.e.j.s.ServletContextHandler@27d5a580{/,null,AVAILABLE} 492 | 2015-12-22 09:48:07 [ main:5139 ] - [ INFO ] Started o.e.j.s.ServletContextHandler@6cb6decd{/swagger,null,AVAILABLE} 493 | 2015-12-22 09:48:07 [ main:5149 ] - [ INFO ] Started ServerConnector@6b58b9e9{HTTP/1.1,[http/1.1]}{0.0.0.0:8080} 494 | 2015-12-22 09:48:07 [ main:5151 ] - [ INFO ] Started @5657ms 495 | 2015-12-22 09:49:27 [ qtp1081769770-22:86130 ] - [ INFO ] Start to topology discovery. 496 | 2015-12-22 09:49:27 [ qtp1081769770-22:86130 ] - [ INFO ] Start to query Logmet. 497 | 2015-12-22 09:49:28 [ qtp1081769770-22:86135 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777708000. 498 | 2015-12-22 09:49:29 [ qtp1081769770-22:87269 ] - [ INFO ] Retrieved PB records: 142, used 1139 ms. 499 | 2015-12-22 09:49:29 [ qtp1081769770-22:87270 ] - [ INFO ] Start to process PB records. 500 | 2015-12-22 09:49:29 [ qtp1081769770-22:88040 ] - [ INFO ] From PB records found 45 links, used 770 ms. 501 | 2015-12-22 09:49:29 [ qtp1081769770-22:88041 ] - [ INFO ] Start to construct topology graph. 502 | 2015-12-22 09:49:29 [ qtp1081769770-22:88047 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 503 | 2015-12-22 09:49:29 [ qtp1081769770-22:88048 ] - [ INFO ] Topology Graph constructed, used 7 ms. 504 | 2015-12-22 09:49:29 [ qtp1081769770-22:88048 ] - [ INFO ] Topology discovery finished, used 1918 ms. 505 | 2015-12-22 09:49:38 [ qtp1081769770-26:96469 ] - [ INFO ] Start to topology discovery. 506 | 2015-12-22 09:49:38 [ qtp1081769770-26:96470 ] - [ INFO ] Start to query Logmet. 507 | 2015-12-22 09:49:38 [ qtp1081769770-26:96471 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777718336. 508 | 2015-12-22 09:49:38 [ qtp1081769770-26:97076 ] - [ INFO ] Retrieved PB records: 126, used 606 ms. 509 | 2015-12-22 09:49:38 [ qtp1081769770-26:97076 ] - [ INFO ] Start to process PB records. 510 | 2015-12-22 09:49:39 [ qtp1081769770-22:97271 ] - [ INFO ] Start to topology discovery. 511 | 2015-12-22 09:49:39 [ qtp1081769770-22:97272 ] - [ INFO ] Start to query Logmet. 512 | 2015-12-22 09:49:39 [ qtp1081769770-22:97273 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777719138. 513 | 2015-12-22 09:49:39 [ qtp1081769770-26:97598 ] - [ INFO ] From PB records found 36 links, used 522 ms. 514 | 2015-12-22 09:49:39 [ qtp1081769770-26:97599 ] - [ INFO ] Start to construct topology graph. 515 | 2015-12-22 09:49:39 [ qtp1081769770-26:97601 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 516 | 2015-12-22 09:49:39 [ qtp1081769770-26:97602 ] - [ INFO ] Topology Graph constructed, used 3 ms. 517 | 2015-12-22 09:49:39 [ qtp1081769770-26:97602 ] - [ INFO ] Topology discovery finished, used 1133 ms. 518 | 2015-12-22 09:49:39 [ qtp1081769770-22:97841 ] - [ INFO ] Retrieved PB records: 126, used 569 ms. 519 | 2015-12-22 09:49:39 [ qtp1081769770-22:97842 ] - [ INFO ] Start to process PB records. 520 | 2015-12-22 09:49:39 [ qtp1081769770-23:97902 ] - [ INFO ] Start to topology discovery. 521 | 2015-12-22 09:49:39 [ qtp1081769770-23:97903 ] - [ INFO ] Start to query Logmet. 522 | 2015-12-22 09:49:39 [ qtp1081769770-23:97904 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777719769. 523 | 2015-12-22 09:49:40 [ qtp1081769770-22:98286 ] - [ INFO ] From PB records found 36 links, used 444 ms. 524 | 2015-12-22 09:49:40 [ qtp1081769770-22:98287 ] - [ INFO ] Start to construct topology graph. 525 | 2015-12-22 09:49:40 [ qtp1081769770-22:98289 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 526 | 2015-12-22 09:49:40 [ qtp1081769770-22:98290 ] - [ INFO ] Topology Graph constructed, used 3 ms. 527 | 2015-12-22 09:49:40 [ qtp1081769770-22:98291 ] - [ INFO ] Topology discovery finished, used 1020 ms. 528 | 2015-12-22 09:49:40 [ qtp1081769770-24:98401 ] - [ INFO ] Start to topology discovery. 529 | 2015-12-22 09:49:40 [ qtp1081769770-24:98402 ] - [ INFO ] Start to query Logmet. 530 | 2015-12-22 09:49:40 [ qtp1081769770-24:98404 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777720269. 531 | 2015-12-22 09:49:40 [ qtp1081769770-23:98537 ] - [ INFO ] Retrieved PB records: 147, used 634 ms. 532 | 2015-12-22 09:49:40 [ qtp1081769770-23:98539 ] - [ INFO ] Start to process PB records. 533 | 2015-12-22 09:49:40 [ qtp1081769770-24:98950 ] - [ INFO ] Retrieved PB records: 147, used 548 ms. 534 | 2015-12-22 09:49:40 [ qtp1081769770-24:98951 ] - [ INFO ] Start to process PB records. 535 | 2015-12-22 09:49:40 [ qtp1081769770-23:98997 ] - [ INFO ] From PB records found 41 links, used 458 ms. 536 | 2015-12-22 09:49:40 [ qtp1081769770-23:98998 ] - [ INFO ] Start to construct topology graph. 537 | 2015-12-22 09:49:40 [ qtp1081769770-22:99007 ] - [ INFO ] Start to topology discovery. 538 | 2015-12-22 09:49:40 [ qtp1081769770-22:99007 ] - [ INFO ] Start to query Logmet. 539 | 2015-12-22 09:49:40 [ qtp1081769770-22:99009 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777720874. 540 | 2015-12-22 09:49:40 [ qtp1081769770-23:99013 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 541 | 2015-12-22 09:49:40 [ qtp1081769770-23:99014 ] - [ INFO ] Topology Graph constructed, used 16 ms. 542 | 2015-12-22 09:49:40 [ qtp1081769770-23:99014 ] - [ INFO ] Topology discovery finished, used 1112 ms. 543 | 2015-12-22 09:49:41 [ qtp1081769770-24:99409 ] - [ INFO ] From PB records found 41 links, used 458 ms. 544 | 2015-12-22 09:49:41 [ qtp1081769770-24:99410 ] - [ INFO ] Start to construct topology graph. 545 | 2015-12-22 09:49:41 [ qtp1081769770-24:99412 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 546 | 2015-12-22 09:49:41 [ qtp1081769770-24:99412 ] - [ INFO ] Topology Graph constructed, used 2 ms. 547 | 2015-12-22 09:49:41 [ qtp1081769770-24:99413 ] - [ INFO ] Topology discovery finished, used 1012 ms. 548 | 2015-12-22 09:49:41 [ qtp1081769770-23:99628 ] - [ INFO ] Start to topology discovery. 549 | 2015-12-22 09:49:41 [ qtp1081769770-23:99629 ] - [ INFO ] Start to query Logmet. 550 | 2015-12-22 09:49:41 [ qtp1081769770-22:99629 ] - [ INFO ] Retrieved PB records: 147, used 622 ms. 551 | 2015-12-22 09:49:41 [ qtp1081769770-22:99630 ] - [ INFO ] Start to process PB records. 552 | 2015-12-22 09:49:41 [ qtp1081769770-23:99631 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777721496. 553 | 2015-12-22 09:49:41 [ qtp1081769770-22:100124 ] - [ INFO ] From PB records found 41 links, used 494 ms. 554 | 2015-12-22 09:49:41 [ qtp1081769770-22:100125 ] - [ INFO ] Start to construct topology graph. 555 | 2015-12-22 09:49:41 [ qtp1081769770-22:100126 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 556 | 2015-12-22 09:49:41 [ qtp1081769770-22:100127 ] - [ INFO ] Topology Graph constructed, used 2 ms. 557 | 2015-12-22 09:49:41 [ qtp1081769770-22:100127 ] - [ INFO ] Topology discovery finished, used 1120 ms. 558 | 2015-12-22 09:49:42 [ qtp1081769770-19:100187 ] - [ INFO ] Start to topology discovery. 559 | 2015-12-22 09:49:42 [ qtp1081769770-19:100187 ] - [ INFO ] Start to query Logmet. 560 | 2015-12-22 09:49:42 [ qtp1081769770-19:100189 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777722054. 561 | 2015-12-22 09:49:42 [ qtp1081769770-23:100221 ] - [ INFO ] Retrieved PB records: 147, used 592 ms. 562 | 2015-12-22 09:49:42 [ qtp1081769770-23:100222 ] - [ INFO ] Start to process PB records. 563 | 2015-12-22 09:49:42 [ qtp1081769770-25:100725 ] - [ INFO ] Start to topology discovery. 564 | 2015-12-22 09:49:42 [ qtp1081769770-25:100729 ] - [ INFO ] Start to query Logmet. 565 | 2015-12-22 09:49:42 [ qtp1081769770-25:100730 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777722595. 566 | 2015-12-22 09:49:42 [ qtp1081769770-23:100741 ] - [ INFO ] From PB records found 41 links, used 519 ms. 567 | 2015-12-22 09:49:42 [ qtp1081769770-23:100741 ] - [ INFO ] Start to construct topology graph. 568 | 2015-12-22 09:49:42 [ qtp1081769770-23:100743 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 569 | 2015-12-22 09:49:42 [ qtp1081769770-23:100743 ] - [ INFO ] Topology Graph constructed, used 2 ms. 570 | 2015-12-22 09:49:42 [ qtp1081769770-23:100744 ] - [ INFO ] Topology discovery finished, used 1116 ms. 571 | 2015-12-22 09:49:42 [ qtp1081769770-19:100777 ] - [ INFO ] Retrieved PB records: 147, used 590 ms. 572 | 2015-12-22 09:49:42 [ qtp1081769770-19:100778 ] - [ INFO ] Start to process PB records. 573 | 2015-12-22 09:49:43 [ qtp1081769770-22:101232 ] - [ INFO ] Start to topology discovery. 574 | 2015-12-22 09:49:43 [ qtp1081769770-22:101233 ] - [ INFO ] Start to query Logmet. 575 | 2015-12-22 09:49:43 [ qtp1081769770-22:101234 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777723099. 576 | 2015-12-22 09:49:43 [ qtp1081769770-19:101316 ] - [ INFO ] From PB records found 41 links, used 537 ms. 577 | 2015-12-22 09:49:43 [ qtp1081769770-19:101316 ] - [ INFO ] Start to construct topology graph. 578 | 2015-12-22 09:49:43 [ qtp1081769770-19:101318 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 579 | 2015-12-22 09:49:43 [ qtp1081769770-19:101318 ] - [ INFO ] Topology Graph constructed, used 2 ms. 580 | 2015-12-22 09:49:43 [ qtp1081769770-19:101319 ] - [ INFO ] Topology discovery finished, used 1132 ms. 581 | 2015-12-22 09:49:43 [ qtp1081769770-25:101367 ] - [ INFO ] Retrieved PB records: 144, used 637 ms. 582 | 2015-12-22 09:49:43 [ qtp1081769770-25:101367 ] - [ INFO ] Start to process PB records. 583 | 2015-12-22 09:49:43 [ qtp1081769770-22:101760 ] - [ INFO ] Retrieved PB records: 137, used 527 ms. 584 | 2015-12-22 09:49:43 [ qtp1081769770-22:101761 ] - [ INFO ] Start to process PB records. 585 | 2015-12-22 09:49:43 [ qtp1081769770-25:101760 ] - [ INFO ] From PB records found 40 links, used 393 ms. 586 | 2015-12-22 09:49:43 [ qtp1081769770-25:101761 ] - [ INFO ] Start to construct topology graph. 587 | 2015-12-22 09:49:43 [ qtp1081769770-25:101763 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 588 | 2015-12-22 09:49:43 [ qtp1081769770-25:101764 ] - [ INFO ] Topology Graph constructed, used 3 ms. 589 | 2015-12-22 09:49:43 [ qtp1081769770-25:101764 ] - [ INFO ] Topology discovery finished, used 1039 ms. 590 | 2015-12-22 09:49:43 [ qtp1081769770-19:101874 ] - [ INFO ] Start to topology discovery. 591 | 2015-12-22 09:49:43 [ qtp1081769770-19:101875 ] - [ INFO ] Start to query Logmet. 592 | 2015-12-22 09:49:43 [ qtp1081769770-19:101876 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777723741. 593 | 2015-12-22 09:49:43 [ qtp1081769770-22:102127 ] - [ INFO ] From PB records found 35 links, used 366 ms. 594 | 2015-12-22 09:49:43 [ qtp1081769770-22:102128 ] - [ INFO ] Start to construct topology graph. 595 | 2015-12-22 09:49:43 [ qtp1081769770-22:102129 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 596 | 2015-12-22 09:49:43 [ qtp1081769770-22:102130 ] - [ INFO ] Topology Graph constructed, used 2 ms. 597 | 2015-12-22 09:49:43 [ qtp1081769770-22:102130 ] - [ INFO ] Topology discovery finished, used 898 ms. 598 | 2015-12-22 09:49:44 [ qtp1081769770-19:102394 ] - [ INFO ] Retrieved PB records: 125, used 519 ms. 599 | 2015-12-22 09:49:44 [ qtp1081769770-19:102394 ] - [ INFO ] Start to process PB records. 600 | 2015-12-22 09:49:44 [ qtp1081769770-19:102695 ] - [ INFO ] From PB records found 30 links, used 301 ms. 601 | 2015-12-22 09:49:44 [ qtp1081769770-19:102696 ] - [ INFO ] Start to construct topology graph. 602 | 2015-12-22 09:49:44 [ qtp1081769770-19:102697 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 603 | 2015-12-22 09:49:44 [ qtp1081769770-19:102698 ] - [ INFO ] Topology Graph constructed, used 2 ms. 604 | 2015-12-22 09:49:44 [ qtp1081769770-19:102698 ] - [ INFO ] Topology discovery finished, used 824 ms. 605 | 2015-12-22 09:53:50 [ qtp1081769770-22:349068 ] - [ INFO ] Start to topology discovery. 606 | 2015-12-22 09:53:50 [ qtp1081769770-22:349069 ] - [ INFO ] Start to query Logmet. 607 | 2015-12-22 09:53:50 [ qtp1081769770-22:349070 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777430935. 608 | 2015-12-22 09:53:51 [ qtp1081769770-24:349906 ] - [ INFO ] Start to topology discovery. 609 | 2015-12-22 09:53:51 [ qtp1081769770-24:349907 ] - [ INFO ] Start to query Logmet. 610 | 2015-12-22 09:53:51 [ qtp1081769770-24:349908 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777431773. 611 | 2015-12-22 09:53:51 [ qtp1081769770-22:350129 ] - [ INFO ] Retrieved PB records: 497, used 1060 ms. 612 | 2015-12-22 09:53:51 [ qtp1081769770-22:350130 ] - [ INFO ] Start to process PB records. 613 | 2015-12-22 09:53:52 [ qtp1081769770-20:350408 ] - [ INFO ] Start to topology discovery. 614 | 2015-12-22 09:53:52 [ qtp1081769770-20:350409 ] - [ INFO ] Start to query Logmet. 615 | 2015-12-22 09:53:52 [ qtp1081769770-20:350410 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777432275. 616 | 2015-12-22 09:53:52 [ qtp1081769770-26:350821 ] - [ INFO ] Start to topology discovery. 617 | 2015-12-22 09:53:52 [ qtp1081769770-26:350822 ] - [ INFO ] Start to query Logmet. 618 | 2015-12-22 09:53:52 [ qtp1081769770-26:350823 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777432688. 619 | 2015-12-22 09:53:52 [ qtp1081769770-24:350844 ] - [ INFO ] Retrieved PB records: 497, used 937 ms. 620 | 2015-12-22 09:53:52 [ qtp1081769770-24:350845 ] - [ INFO ] Start to process PB records. 621 | 2015-12-22 09:53:53 [ qtp1081769770-19:351255 ] - [ INFO ] Start to topology discovery. 622 | 2015-12-22 09:53:53 [ qtp1081769770-19:351256 ] - [ INFO ] Start to query Logmet. 623 | 2015-12-22 09:53:53 [ qtp1081769770-19:351257 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777433122. 624 | 2015-12-22 09:53:53 [ qtp1081769770-20:351602 ] - [ INFO ] Retrieved PB records: 497, used 1193 ms. 625 | 2015-12-22 09:53:53 [ qtp1081769770-20:351603 ] - [ INFO ] Start to process PB records. 626 | 2015-12-22 09:53:53 [ qtp1081769770-31:351685 ] - [ INFO ] Start to topology discovery. 627 | 2015-12-22 09:53:53 [ qtp1081769770-31:351686 ] - [ INFO ] Start to query Logmet. 628 | 2015-12-22 09:53:53 [ qtp1081769770-31:351688 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777433553. 629 | 2015-12-22 09:53:53 [ qtp1081769770-26:352024 ] - [ INFO ] Retrieved PB records: 497, used 1202 ms. 630 | 2015-12-22 09:53:53 [ qtp1081769770-26:352025 ] - [ INFO ] Start to process PB records. 631 | 2015-12-22 09:53:53 [ qtp1081769770-30:352070 ] - [ INFO ] Start to topology discovery. 632 | 2015-12-22 09:53:53 [ qtp1081769770-30:352081 ] - [ INFO ] Start to query Logmet. 633 | 2015-12-22 09:53:53 [ qtp1081769770-30:352084 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777433949. 634 | 2015-12-22 09:53:54 [ qtp1081769770-32:352436 ] - [ INFO ] Start to topology discovery. 635 | 2015-12-22 09:53:54 [ qtp1081769770-32:352437 ] - [ INFO ] Start to query Logmet. 636 | 2015-12-22 09:53:54 [ qtp1081769770-32:352441 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777434306. 637 | 2015-12-22 09:53:54 [ qtp1081769770-19:352445 ] - [ INFO ] Retrieved PB records: 497, used 1189 ms. 638 | 2015-12-22 09:53:54 [ qtp1081769770-19:352446 ] - [ INFO ] Start to process PB records. 639 | 2015-12-22 09:53:54 [ qtp1081769770-31:352671 ] - [ INFO ] Retrieved PB records: 497, used 985 ms. 640 | 2015-12-22 09:53:54 [ qtp1081769770-31:352672 ] - [ INFO ] Start to process PB records. 641 | 2015-12-22 09:53:54 [ qtp1081769770-34:352776 ] - [ INFO ] Start to topology discovery. 642 | 2015-12-22 09:53:54 [ qtp1081769770-34:352776 ] - [ INFO ] Start to query Logmet. 643 | 2015-12-22 09:53:54 [ qtp1081769770-34:352777 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777434642. 644 | 2015-12-22 09:53:55 [ qtp1081769770-35:353144 ] - [ INFO ] Start to topology discovery. 645 | 2015-12-22 09:53:55 [ qtp1081769770-35:353145 ] - [ INFO ] Start to query Logmet. 646 | 2015-12-22 09:53:55 [ qtp1081769770-35:353149 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777435014. 647 | 2015-12-22 09:53:55 [ qtp1081769770-32:353635 ] - [ INFO ] Retrieved PB records: 497, used 1198 ms. 648 | 2015-12-22 09:53:55 [ qtp1081769770-32:353636 ] - [ INFO ] Start to process PB records. 649 | 2015-12-22 09:53:55 [ qtp1081769770-30:353637 ] - [ INFO ] Retrieved PB records: 497, used 1556 ms. 650 | 2015-12-22 09:53:55 [ qtp1081769770-30:353638 ] - [ INFO ] Start to process PB records. 651 | 2015-12-22 09:53:55 [ qtp1081769770-34:353877 ] - [ INFO ] Retrieved PB records: 497, used 1101 ms. 652 | 2015-12-22 09:53:55 [ qtp1081769770-34:353884 ] - [ INFO ] Start to process PB records. 653 | 2015-12-22 09:53:56 [ qtp1081769770-35:354409 ] - [ INFO ] Retrieved PB records: 497, used 1264 ms. 654 | 2015-12-22 09:53:56 [ qtp1081769770-35:354420 ] - [ INFO ] Start to process PB records. 655 | 2015-12-22 09:54:03 [ qtp1081769770-22:361912 ] - [ INFO ] From PB records found 153 links, used 11782 ms. 656 | 2015-12-22 09:54:03 [ qtp1081769770-22:361917 ] - [ INFO ] Start to construct topology graph. 657 | 2015-12-22 09:54:03 [ qtp1081769770-22:361931 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 658 | 2015-12-22 09:54:03 [ qtp1081769770-22:361932 ] - [ INFO ] Topology Graph constructed, used 15 ms. 659 | 2015-12-22 09:54:03 [ qtp1081769770-22:361932 ] - [ INFO ] Topology discovery finished, used 12864 ms. 660 | 2015-12-22 09:54:04 [ qtp1081769770-24:362233 ] - [ INFO ] From PB records found 153 links, used 11388 ms. 661 | 2015-12-22 09:54:04 [ qtp1081769770-24:362234 ] - [ INFO ] Start to construct topology graph. 662 | 2015-12-22 09:54:04 [ qtp1081769770-24:362237 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 663 | 2015-12-22 09:54:04 [ qtp1081769770-24:362237 ] - [ INFO ] Topology Graph constructed, used 3 ms. 664 | 2015-12-22 09:54:04 [ qtp1081769770-24:362238 ] - [ INFO ] Topology discovery finished, used 12332 ms. 665 | 2015-12-22 09:54:07 [ qtp1081769770-19:365246 ] - [ INFO ] From PB records found 151 links, used 12800 ms. 666 | 2015-12-22 09:54:07 [ qtp1081769770-19:365247 ] - [ INFO ] Start to construct topology graph. 667 | 2015-12-22 09:54:07 [ qtp1081769770-19:365257 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 668 | 2015-12-22 09:54:07 [ qtp1081769770-19:365257 ] - [ INFO ] Topology Graph constructed, used 10 ms. 669 | 2015-12-22 09:54:07 [ qtp1081769770-19:365258 ] - [ INFO ] Topology discovery finished, used 14003 ms. 670 | 2015-12-22 09:54:07 [ qtp1081769770-20:365254 ] - [ INFO ] From PB records found 151 links, used 13651 ms. 671 | 2015-12-22 09:54:07 [ qtp1081769770-20:365269 ] - [ INFO ] Start to construct topology graph. 672 | 2015-12-22 09:54:07 [ qtp1081769770-20:365271 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 673 | 2015-12-22 09:54:07 [ qtp1081769770-20:365272 ] - [ INFO ] Topology Graph constructed, used 3 ms. 674 | 2015-12-22 09:54:07 [ qtp1081769770-20:365276 ] - [ INFO ] Topology discovery finished, used 14868 ms. 675 | 2015-12-22 09:54:07 [ qtp1081769770-31:365490 ] - [ INFO ] From PB records found 153 links, used 12818 ms. 676 | 2015-12-22 09:54:07 [ qtp1081769770-31:365490 ] - [ INFO ] Start to construct topology graph. 677 | 2015-12-22 09:54:07 [ qtp1081769770-31:365493 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 678 | 2015-12-22 09:54:07 [ qtp1081769770-31:365494 ] - [ INFO ] Topology Graph constructed, used 4 ms. 679 | 2015-12-22 09:54:07 [ qtp1081769770-31:365494 ] - [ INFO ] Topology discovery finished, used 13809 ms. 680 | 2015-12-22 09:54:07 [ qtp1081769770-26:365545 ] - [ INFO ] From PB records found 151 links, used 13520 ms. 681 | 2015-12-22 09:54:07 [ qtp1081769770-26:365557 ] - [ INFO ] Start to construct topology graph. 682 | 2015-12-22 09:54:07 [ qtp1081769770-26:365573 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 683 | 2015-12-22 09:54:07 [ qtp1081769770-26:365574 ] - [ INFO ] Topology Graph constructed, used 17 ms. 684 | 2015-12-22 09:54:07 [ qtp1081769770-26:365574 ] - [ INFO ] Topology discovery finished, used 14753 ms. 685 | 2015-12-22 09:54:07 [ qtp1081769770-32:365830 ] - [ INFO ] From PB records found 151 links, used 12194 ms. 686 | 2015-12-22 09:54:07 [ qtp1081769770-32:365831 ] - [ INFO ] Start to construct topology graph. 687 | 2015-12-22 09:54:07 [ qtp1081769770-32:365834 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 688 | 2015-12-22 09:54:07 [ qtp1081769770-32:365835 ] - [ INFO ] Topology Graph constructed, used 4 ms. 689 | 2015-12-22 09:54:07 [ qtp1081769770-32:365835 ] - [ INFO ] Topology discovery finished, used 13399 ms. 690 | 2015-12-22 09:54:07 [ qtp1081769770-34:365929 ] - [ INFO ] From PB records found 151 links, used 12044 ms. 691 | 2015-12-22 09:54:07 [ qtp1081769770-34:365930 ] - [ INFO ] Start to construct topology graph. 692 | 2015-12-22 09:54:07 [ qtp1081769770-34:365932 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 693 | 2015-12-22 09:54:07 [ qtp1081769770-34:365933 ] - [ INFO ] Topology Graph constructed, used 3 ms. 694 | 2015-12-22 09:54:07 [ qtp1081769770-34:365933 ] - [ INFO ] Topology discovery finished, used 13157 ms. 695 | 2015-12-22 09:54:07 [ qtp1081769770-30:366095 ] - [ INFO ] From PB records found 151 links, used 12457 ms. 696 | 2015-12-22 09:54:07 [ qtp1081769770-30:366096 ] - [ INFO ] Start to construct topology graph. 697 | 2015-12-22 09:54:07 [ qtp1081769770-30:366098 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 698 | 2015-12-22 09:54:07 [ qtp1081769770-30:366099 ] - [ INFO ] Topology Graph constructed, used 3 ms. 699 | 2015-12-22 09:54:07 [ qtp1081769770-30:366099 ] - [ INFO ] Topology discovery finished, used 14029 ms. 700 | 2015-12-22 09:54:08 [ qtp1081769770-35:366215 ] - [ INFO ] From PB records found 151 links, used 11795 ms. 701 | 2015-12-22 09:54:08 [ qtp1081769770-35:366216 ] - [ INFO ] Start to construct topology graph. 702 | 2015-12-22 09:54:08 [ qtp1081769770-35:366218 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 703 | 2015-12-22 09:54:08 [ qtp1081769770-35:366219 ] - [ INFO ] Topology Graph constructed, used 3 ms. 704 | 2015-12-22 09:54:08 [ qtp1081769770-35:366219 ] - [ INFO ] Topology discovery finished, used 13075 ms. 705 | 2015-12-22 09:54:56 [ qtp1081769770-32:414500 ] - [ INFO ] Start to topology discovery. 706 | 2015-12-22 09:54:56 [ qtp1081769770-32:414501 ] - [ INFO ] Start to query Logmet. 707 | 2015-12-22 09:54:56 [ qtp1081769770-32:414502 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777496367. 708 | 2015-12-22 09:54:56 [ qtp1081769770-36:415012 ] - [ INFO ] Start to topology discovery. 709 | 2015-12-22 09:54:56 [ qtp1081769770-36:415013 ] - [ INFO ] Start to query Logmet. 710 | 2015-12-22 09:54:56 [ qtp1081769770-36:415014 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777496879. 711 | 2015-12-22 09:54:57 [ qtp1081769770-37:415323 ] - [ INFO ] Start to topology discovery. 712 | 2015-12-22 09:54:57 [ qtp1081769770-37:415323 ] - [ INFO ] Start to query Logmet. 713 | 2015-12-22 09:54:57 [ qtp1081769770-37:415324 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777497189. 714 | 2015-12-22 09:54:57 [ qtp1081769770-32:415331 ] - [ INFO ] Retrieved PB records: 498, used 830 ms. 715 | 2015-12-22 09:54:57 [ qtp1081769770-32:415332 ] - [ INFO ] Start to process PB records. 716 | 2015-12-22 09:54:57 [ qtp1081769770-36:415775 ] - [ INFO ] Retrieved PB records: 498, used 762 ms. 717 | 2015-12-22 09:54:57 [ qtp1081769770-36:415776 ] - [ INFO ] Start to process PB records. 718 | 2015-12-22 09:54:58 [ qtp1081769770-37:416234 ] - [ INFO ] Retrieved PB records: 498, used 911 ms. 719 | 2015-12-22 09:54:58 [ qtp1081769770-37:416235 ] - [ INFO ] Start to process PB records. 720 | 2015-12-22 09:54:58 [ qtp1081769770-31:416450 ] - [ INFO ] Start to topology discovery. 721 | 2015-12-22 09:54:58 [ qtp1081769770-31:416451 ] - [ INFO ] Start to query Logmet. 722 | 2015-12-22 09:54:58 [ qtp1081769770-31:416455 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777498320. 723 | 2015-12-22 09:54:58 [ qtp1081769770-34:416852 ] - [ INFO ] Start to topology discovery. 724 | 2015-12-22 09:54:58 [ qtp1081769770-34:416853 ] - [ INFO ] Start to query Logmet. 725 | 2015-12-22 09:54:58 [ qtp1081769770-34:416868 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777498733. 726 | 2015-12-22 09:54:59 [ qtp1081769770-22:417213 ] - [ INFO ] Start to topology discovery. 727 | 2015-12-22 09:54:59 [ qtp1081769770-22:417213 ] - [ INFO ] Start to query Logmet. 728 | 2015-12-22 09:54:59 [ qtp1081769770-22:417214 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777499079. 729 | 2015-12-22 09:54:59 [ qtp1081769770-31:417460 ] - [ INFO ] Retrieved PB records: 498, used 1008 ms. 730 | 2015-12-22 09:54:59 [ qtp1081769770-31:417461 ] - [ INFO ] Start to process PB records. 731 | 2015-12-22 09:54:59 [ qtp1081769770-35:417566 ] - [ INFO ] Start to topology discovery. 732 | 2015-12-22 09:54:59 [ qtp1081769770-35:417570 ] - [ INFO ] Start to query Logmet. 733 | 2015-12-22 09:54:59 [ qtp1081769770-35:417572 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777499437. 734 | 2015-12-22 09:54:59 [ qtp1081769770-34:417896 ] - [ INFO ] Retrieved PB records: 498, used 1043 ms. 735 | 2015-12-22 09:54:59 [ qtp1081769770-34:417905 ] - [ INFO ] Start to process PB records. 736 | 2015-12-22 09:54:59 [ qtp1081769770-24:417918 ] - [ INFO ] Start to topology discovery. 737 | 2015-12-22 09:54:59 [ qtp1081769770-24:417919 ] - [ INFO ] Start to query Logmet. 738 | 2015-12-22 09:54:59 [ qtp1081769770-24:417928 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777499793. 739 | 2015-12-22 09:55:00 [ qtp1081769770-19:418140 ] - [ INFO ] Start to topology discovery. 740 | 2015-12-22 09:55:00 [ qtp1081769770-19:418142 ] - [ INFO ] Start to query Logmet. 741 | 2015-12-22 09:55:00 [ qtp1081769770-19:418145 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777500010. 742 | 2015-12-22 09:55:00 [ qtp1081769770-22:418235 ] - [ INFO ] Retrieved PB records: 498, used 1022 ms. 743 | 2015-12-22 09:55:00 [ qtp1081769770-22:418236 ] - [ INFO ] Start to process PB records. 744 | 2015-12-22 09:55:00 [ qtp1081769770-30:418382 ] - [ INFO ] Start to topology discovery. 745 | 2015-12-22 09:55:00 [ qtp1081769770-30:418383 ] - [ INFO ] Start to query Logmet. 746 | 2015-12-22 09:55:00 [ qtp1081769770-30:418390 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777500255. 747 | 2015-12-22 09:55:00 [ qtp1081769770-35:418600 ] - [ INFO ] Retrieved PB records: 498, used 1030 ms. 748 | 2015-12-22 09:55:00 [ qtp1081769770-35:418601 ] - [ INFO ] Start to process PB records. 749 | 2015-12-22 09:55:00 [ qtp1081769770-20:418700 ] - [ INFO ] Start to topology discovery. 750 | 2015-12-22 09:55:00 [ qtp1081769770-20:418701 ] - [ INFO ] Start to query Logmet. 751 | 2015-12-22 09:55:00 [ qtp1081769770-20:418703 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777500568. 752 | 2015-12-22 09:55:00 [ qtp1081769770-38:419089 ] - [ INFO ] Start to topology discovery. 753 | 2015-12-22 09:55:00 [ qtp1081769770-38:419089 ] - [ INFO ] Start to query Logmet. 754 | 2015-12-22 09:55:00 [ qtp1081769770-38:419090 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777500955. 755 | 2015-12-22 09:55:01 [ qtp1081769770-19:419180 ] - [ INFO ] Retrieved PB records: 498, used 1038 ms. 756 | 2015-12-22 09:55:01 [ qtp1081769770-19:419209 ] - [ INFO ] Start to process PB records. 757 | 2015-12-22 09:55:01 [ qtp1081769770-24:419181 ] - [ INFO ] Retrieved PB records: 498, used 1262 ms. 758 | 2015-12-22 09:55:01 [ qtp1081769770-24:419210 ] - [ INFO ] Start to process PB records. 759 | 2015-12-22 09:55:01 [ qtp1081769770-40:419235 ] - [ INFO ] Start to topology discovery. 760 | 2015-12-22 09:55:01 [ qtp1081769770-40:419236 ] - [ INFO ] Start to query Logmet. 761 | 2015-12-22 09:55:01 [ qtp1081769770-40:419237 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777501102. 762 | 2015-12-22 09:55:01 [ qtp1081769770-26:419582 ] - [ INFO ] Start to topology discovery. 763 | 2015-12-22 09:55:01 [ qtp1081769770-26:419583 ] - [ INFO ] Start to query Logmet. 764 | 2015-12-22 09:55:01 [ qtp1081769770-26:419584 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777501449. 765 | 2015-12-22 09:55:01 [ qtp1081769770-30:419691 ] - [ INFO ] Retrieved PB records: 498, used 1308 ms. 766 | 2015-12-22 09:55:01 [ qtp1081769770-30:419723 ] - [ INFO ] Start to process PB records. 767 | 2015-12-22 09:55:01 [ qtp1081769770-33:419828 ] - [ INFO ] Start to topology discovery. 768 | 2015-12-22 09:55:01 [ qtp1081769770-33:419829 ] - [ INFO ] Start to query Logmet. 769 | 2015-12-22 09:55:01 [ qtp1081769770-33:419830 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777501695. 770 | 2015-12-22 09:55:01 [ qtp1081769770-20:420008 ] - [ INFO ] Retrieved PB records: 498, used 1307 ms. 771 | 2015-12-22 09:55:01 [ qtp1081769770-20:420025 ] - [ INFO ] Start to process PB records. 772 | 2015-12-22 09:55:01 [ qtp1081769770-38:420106 ] - [ INFO ] Retrieved PB records: 498, used 1017 ms. 773 | 2015-12-22 09:55:01 [ qtp1081769770-38:420107 ] - [ INFO ] Start to process PB records. 774 | 2015-12-22 09:55:02 [ qtp1081769770-42:420162 ] - [ INFO ] Start to topology discovery. 775 | 2015-12-22 09:55:02 [ qtp1081769770-42:420162 ] - [ INFO ] Start to query Logmet. 776 | 2015-12-22 09:55:02 [ qtp1081769770-42:420165 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777502030. 777 | 2015-12-22 09:55:02 [ qtp1081769770-40:420321 ] - [ INFO ] Retrieved PB records: 498, used 1085 ms. 778 | 2015-12-22 09:55:02 [ qtp1081769770-40:420328 ] - [ INFO ] Start to process PB records. 779 | 2015-12-22 09:55:02 [ qtp1081769770-43:420433 ] - [ INFO ] Start to topology discovery. 780 | 2015-12-22 09:55:02 [ qtp1081769770-43:420447 ] - [ INFO ] Start to query Logmet. 781 | 2015-12-22 09:55:02 [ qtp1081769770-43:420452 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777502317. 782 | 2015-12-22 09:55:02 [ qtp1081769770-41:420742 ] - [ INFO ] Start to topology discovery. 783 | 2015-12-22 09:55:02 [ qtp1081769770-41:420742 ] - [ INFO ] Start to query Logmet. 784 | 2015-12-22 09:55:02 [ qtp1081769770-41:420743 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777502608. 785 | 2015-12-22 09:55:02 [ qtp1081769770-26:420821 ] - [ INFO ] Retrieved PB records: 498, used 1238 ms. 786 | 2015-12-22 09:55:02 [ qtp1081769770-26:420821 ] - [ INFO ] Start to process PB records. 787 | 2015-12-22 09:55:02 [ qtp1081769770-44:420969 ] - [ INFO ] Start to topology discovery. 788 | 2015-12-22 09:55:02 [ qtp1081769770-44:420976 ] - [ INFO ] Start to query Logmet. 789 | 2015-12-22 09:55:02 [ qtp1081769770-44:420978 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777502843. 790 | 2015-12-22 09:55:03 [ qtp1081769770-33:421311 ] - [ INFO ] Retrieved PB records: 498, used 1482 ms. 791 | 2015-12-22 09:55:03 [ qtp1081769770-33:421348 ] - [ INFO ] Start to process PB records. 792 | 2015-12-22 09:55:03 [ qtp1081769770-39:421394 ] - [ INFO ] Start to topology discovery. 793 | 2015-12-22 09:55:03 [ qtp1081769770-39:421395 ] - [ INFO ] Start to query Logmet. 794 | 2015-12-22 09:55:03 [ qtp1081769770-39:421396 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777503261. 795 | 2015-12-22 09:55:03 [ qtp1081769770-46:421612 ] - [ INFO ] Start to topology discovery. 796 | 2015-12-22 09:55:03 [ qtp1081769770-46:421627 ] - [ INFO ] Start to query Logmet. 797 | 2015-12-22 09:55:03 [ qtp1081769770-46:421638 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777503503. 798 | 2015-12-22 09:55:03 [ qtp1081769770-42:421636 ] - [ INFO ] Retrieved PB records: 498, used 1474 ms. 799 | 2015-12-22 09:55:03 [ qtp1081769770-42:421640 ] - [ INFO ] Start to process PB records. 800 | 2015-12-22 09:55:03 [ qtp1081769770-43:421642 ] - [ INFO ] Retrieved PB records: 498, used 1195 ms. 801 | 2015-12-22 09:55:03 [ qtp1081769770-43:421642 ] - [ INFO ] Start to process PB records. 802 | 2015-12-22 09:55:03 [ qtp1081769770-47:421846 ] - [ INFO ] Start to topology discovery. 803 | 2015-12-22 09:55:03 [ qtp1081769770-47:421853 ] - [ INFO ] Start to query Logmet. 804 | 2015-12-22 09:55:03 [ qtp1081769770-47:421854 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777503719. 805 | 2015-12-22 09:55:04 [ qtp1081769770-41:422205 ] - [ INFO ] Retrieved PB records: 498, used 1463 ms. 806 | 2015-12-22 09:55:04 [ qtp1081769770-41:422256 ] - [ INFO ] Start to process PB records. 807 | 2015-12-22 09:55:04 [ qtp1081769770-45:422298 ] - [ INFO ] Start to topology discovery. 808 | 2015-12-22 09:55:04 [ qtp1081769770-45:422298 ] - [ INFO ] Start to query Logmet. 809 | 2015-12-22 09:55:04 [ qtp1081769770-45:422301 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777504166. 810 | 2015-12-22 09:55:04 [ qtp1081769770-44:422372 ] - [ INFO ] Retrieved PB records: 498, used 1396 ms. 811 | 2015-12-22 09:55:04 [ qtp1081769770-44:422393 ] - [ INFO ] Start to process PB records. 812 | 2015-12-22 09:55:04 [ qtp1081769770-39:422530 ] - [ INFO ] Retrieved PB records: 498, used 1135 ms. 813 | 2015-12-22 09:55:04 [ qtp1081769770-39:422531 ] - [ INFO ] Start to process PB records. 814 | 2015-12-22 09:55:04 [ qtp1081769770-50:422646 ] - [ INFO ] Start to topology discovery. 815 | 2015-12-22 09:55:04 [ qtp1081769770-50:422664 ] - [ INFO ] Start to query Logmet. 816 | 2015-12-22 09:55:04 [ qtp1081769770-50:422672 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777504537. 817 | 2015-12-22 09:55:04 [ qtp1081769770-49:422769 ] - [ INFO ] Start to topology discovery. 818 | 2015-12-22 09:55:04 [ qtp1081769770-49:422770 ] - [ INFO ] Start to query Logmet. 819 | 2015-12-22 09:55:04 [ qtp1081769770-49:422771 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777504636. 820 | 2015-12-22 09:55:04 [ qtp1081769770-51:423070 ] - [ INFO ] Start to topology discovery. 821 | 2015-12-22 09:55:04 [ qtp1081769770-51:423072 ] - [ INFO ] Start to query Logmet. 822 | 2015-12-22 09:55:04 [ qtp1081769770-51:423081 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777504946. 823 | 2015-12-22 09:55:05 [ qtp1081769770-52:423326 ] - [ INFO ] Start to topology discovery. 824 | 2015-12-22 09:55:05 [ qtp1081769770-52:423326 ] - [ INFO ] Start to query Logmet. 825 | 2015-12-22 09:55:05 [ qtp1081769770-52:423328 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777505192. 826 | 2015-12-22 09:55:05 [ qtp1081769770-46:423335 ] - [ INFO ] Retrieved PB records: 498, used 1708 ms. 827 | 2015-12-22 09:55:05 [ qtp1081769770-46:423352 ] - [ INFO ] Start to process PB records. 828 | 2015-12-22 09:55:05 [ qtp1081769770-47:423423 ] - [ INFO ] Retrieved PB records: 498, used 1570 ms. 829 | 2015-12-22 09:55:05 [ qtp1081769770-47:423424 ] - [ INFO ] Start to process PB records. 830 | 2015-12-22 09:55:05 [ qtp1081769770-53:423819 ] - [ INFO ] Start to topology discovery. 831 | 2015-12-22 09:55:05 [ qtp1081769770-53:423822 ] - [ INFO ] Start to query Logmet. 832 | 2015-12-22 09:55:05 [ qtp1081769770-53:423823 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777505688. 833 | 2015-12-22 09:55:05 [ qtp1081769770-45:424087 ] - [ INFO ] Retrieved PB records: 498, used 1789 ms. 834 | 2015-12-22 09:55:05 [ qtp1081769770-45:424087 ] - [ INFO ] Start to process PB records. 835 | 2015-12-22 09:55:06 [ qtp1081769770-48:424163 ] - [ INFO ] Start to topology discovery. 836 | 2015-12-22 09:55:06 [ qtp1081769770-48:424166 ] - [ INFO ] Start to query Logmet. 837 | 2015-12-22 09:55:06 [ qtp1081769770-48:424167 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777506032. 838 | 2015-12-22 09:55:06 [ qtp1081769770-54:424433 ] - [ INFO ] Start to topology discovery. 839 | 2015-12-22 09:55:06 [ qtp1081769770-54:424436 ] - [ INFO ] Start to query Logmet. 840 | 2015-12-22 09:55:06 [ qtp1081769770-54:424439 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777506304. 841 | 2015-12-22 09:55:06 [ qtp1081769770-50:424532 ] - [ INFO ] Retrieved PB records: 498, used 1868 ms. 842 | 2015-12-22 09:55:06 [ qtp1081769770-50:424564 ] - [ INFO ] Start to process PB records. 843 | 2015-12-22 09:55:06 [ qtp1081769770-49:424607 ] - [ INFO ] Retrieved PB records: 498, used 1837 ms. 844 | 2015-12-22 09:55:06 [ qtp1081769770-49:424608 ] - [ INFO ] Start to process PB records. 845 | 2015-12-22 09:55:06 [ qtp1081769770-57:424760 ] - [ INFO ] Start to topology discovery. 846 | 2015-12-22 09:55:06 [ qtp1081769770-57:424761 ] - [ INFO ] Start to query Logmet. 847 | 2015-12-22 09:55:06 [ qtp1081769770-57:424763 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777506628. 848 | 2015-12-22 09:55:06 [ qtp1081769770-51:424816 ] - [ INFO ] Retrieved PB records: 498, used 1744 ms. 849 | 2015-12-22 09:55:06 [ qtp1081769770-51:424840 ] - [ INFO ] Start to process PB records. 850 | 2015-12-22 09:55:06 [ qtp1081769770-56:424999 ] - [ INFO ] Start to topology discovery. 851 | 2015-12-22 09:55:06 [ qtp1081769770-56:424999 ] - [ INFO ] Start to query Logmet. 852 | 2015-12-22 09:55:06 [ qtp1081769770-56:425002 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777506867. 853 | 2015-12-22 09:55:06 [ qtp1081769770-52:425038 ] - [ INFO ] Retrieved PB records: 498, used 1712 ms. 854 | 2015-12-22 09:55:06 [ qtp1081769770-52:425060 ] - [ INFO ] Start to process PB records. 855 | 2015-12-22 09:55:07 [ qtp1081769770-59:425248 ] - [ INFO ] Start to topology discovery. 856 | 2015-12-22 09:55:07 [ qtp1081769770-59:425252 ] - [ INFO ] Start to query Logmet. 857 | 2015-12-22 09:55:07 [ qtp1081769770-59:425258 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777507123. 858 | 2015-12-22 09:55:07 [ qtp1081769770-58:425530 ] - [ INFO ] Start to topology discovery. 859 | 2015-12-22 09:55:07 [ qtp1081769770-58:425531 ] - [ INFO ] Start to query Logmet. 860 | 2015-12-22 09:55:07 [ qtp1081769770-58:425533 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777507398. 861 | 2015-12-22 09:55:07 [ qtp1081769770-53:425995 ] - [ INFO ] Retrieved PB records: 498, used 2173 ms. 862 | 2015-12-22 09:55:07 [ qtp1081769770-53:425997 ] - [ INFO ] Start to process PB records. 863 | 2015-12-22 09:55:07 [ qtp1081769770-61:426053 ] - [ INFO ] Start to topology discovery. 864 | 2015-12-22 09:55:07 [ qtp1081769770-61:426058 ] - [ INFO ] Start to query Logmet. 865 | 2015-12-22 09:55:07 [ qtp1081769770-61:426082 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777507947. 866 | 2015-12-22 09:55:07 [ qtp1081769770-60:426108 ] - [ INFO ] Start to topology discovery. 867 | 2015-12-22 09:55:07 [ qtp1081769770-60:426109 ] - [ INFO ] Start to query Logmet. 868 | 2015-12-22 09:55:07 [ qtp1081769770-60:426110 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777507975. 869 | 2015-12-22 09:55:08 [ qtp1081769770-48:426333 ] - [ INFO ] Retrieved PB records: 498, used 2167 ms. 870 | 2015-12-22 09:55:08 [ qtp1081769770-48:426334 ] - [ INFO ] Start to process PB records. 871 | 2015-12-22 09:55:08 [ qtp1081769770-62:426425 ] - [ INFO ] Start to topology discovery. 872 | 2015-12-22 09:55:08 [ qtp1081769770-62:426426 ] - [ INFO ] Start to query Logmet. 873 | 2015-12-22 09:55:08 [ qtp1081769770-62:426427 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777508292. 874 | 2015-12-22 09:55:08 [ qtp1081769770-54:426439 ] - [ INFO ] Retrieved PB records: 497, used 2003 ms. 875 | 2015-12-22 09:55:08 [ qtp1081769770-54:426439 ] - [ INFO ] Start to process PB records. 876 | 2015-12-22 09:55:08 [ qtp1081769770-55:426703 ] - [ INFO ] Start to topology discovery. 877 | 2015-12-22 09:55:08 [ qtp1081769770-55:426704 ] - [ INFO ] Start to query Logmet. 878 | 2015-12-22 09:55:08 [ qtp1081769770-55:426706 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777508570. 879 | 2015-12-22 09:55:08 [ qtp1081769770-57:426913 ] - [ INFO ] Retrieved PB records: 498, used 2153 ms. 880 | 2015-12-22 09:55:08 [ qtp1081769770-57:426914 ] - [ INFO ] Start to process PB records. 881 | 2015-12-22 09:55:09 [ qtp1081769770-64:427139 ] - [ INFO ] Start to topology discovery. 882 | 2015-12-22 09:55:09 [ qtp1081769770-64:427139 ] - [ INFO ] Start to query Logmet. 883 | 2015-12-22 09:55:09 [ qtp1081769770-64:427185 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777509050. 884 | 2015-12-22 09:55:09 [ qtp1081769770-65:427324 ] - [ INFO ] Start to topology discovery. 885 | 2015-12-22 09:55:09 [ qtp1081769770-65:427326 ] - [ INFO ] Start to query Logmet. 886 | 2015-12-22 09:55:09 [ qtp1081769770-65:427328 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777509193. 887 | 2015-12-22 09:55:09 [ qtp1081769770-59:427497 ] - [ INFO ] Retrieved PB records: 498, used 2245 ms. 888 | 2015-12-22 09:55:09 [ qtp1081769770-59:427504 ] - [ INFO ] Start to process PB records. 889 | 2015-12-22 09:55:09 [ qtp1081769770-63:427641 ] - [ INFO ] Start to topology discovery. 890 | 2015-12-22 09:55:09 [ qtp1081769770-63:427642 ] - [ INFO ] Start to query Logmet. 891 | 2015-12-22 09:55:09 [ qtp1081769770-63:427643 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777509508. 892 | 2015-12-22 09:55:09 [ qtp1081769770-56:427719 ] - [ INFO ] Retrieved PB records: 497, used 2720 ms. 893 | 2015-12-22 09:55:09 [ qtp1081769770-56:427719 ] - [ INFO ] Start to process PB records. 894 | 2015-12-22 09:55:09 [ qtp1081769770-66:427936 ] - [ INFO ] Start to topology discovery. 895 | 2015-12-22 09:55:09 [ qtp1081769770-66:427938 ] - [ INFO ] Start to query Logmet. 896 | 2015-12-22 09:55:09 [ qtp1081769770-66:427940 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777509805. 897 | 2015-12-22 09:55:09 [ qtp1081769770-61:427948 ] - [ INFO ] Retrieved PB records: 498, used 1890 ms. 898 | 2015-12-22 09:55:09 [ qtp1081769770-61:428069 ] - [ INFO ] Start to process PB records. 899 | 2015-12-22 09:55:10 [ qtp1081769770-67:428227 ] - [ INFO ] Start to topology discovery. 900 | 2015-12-22 09:55:10 [ qtp1081769770-67:428228 ] - [ INFO ] Start to query Logmet. 901 | 2015-12-22 09:55:10 [ qtp1081769770-67:428229 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777510094. 902 | 2015-12-22 09:55:10 [ qtp1081769770-58:428237 ] - [ INFO ] Retrieved PB records: 497, used 2706 ms. 903 | 2015-12-22 09:55:10 [ qtp1081769770-58:428238 ] - [ INFO ] Start to process PB records. 904 | 2015-12-22 09:55:10 [ qtp1081769770-68:428619 ] - [ INFO ] Start to topology discovery. 905 | 2015-12-22 09:55:10 [ qtp1081769770-68:428660 ] - [ INFO ] Start to query Logmet. 906 | 2015-12-22 09:55:10 [ qtp1081769770-68:428665 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777510530. 907 | 2015-12-22 09:55:10 [ qtp1081769770-60:428693 ] - [ INFO ] Retrieved PB records: 498, used 2584 ms. 908 | 2015-12-22 09:55:10 [ qtp1081769770-60:428694 ] - [ INFO ] Start to process PB records. 909 | 2015-12-22 09:55:10 [ qtp1081769770-71:429000 ] - [ INFO ] Start to topology discovery. 910 | 2015-12-22 09:55:10 [ qtp1081769770-71:429004 ] - [ INFO ] Start to query Logmet. 911 | 2015-12-22 09:55:10 [ qtp1081769770-71:429005 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777510870. 912 | 2015-12-22 09:55:10 [ qtp1081769770-70:429091 ] - [ INFO ] Start to topology discovery. 913 | 2015-12-22 09:55:10 [ qtp1081769770-70:429097 ] - [ INFO ] Start to query Logmet. 914 | 2015-12-22 09:55:10 [ qtp1081769770-70:429098 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777510963. 915 | 2015-12-22 09:55:11 [ qtp1081769770-62:429298 ] - [ INFO ] Retrieved PB records: 498, used 2872 ms. 916 | 2015-12-22 09:55:11 [ qtp1081769770-62:429298 ] - [ INFO ] Start to process PB records. 917 | 2015-12-22 09:55:11 [ qtp1081769770-55:429341 ] - [ INFO ] Retrieved PB records: 498, used 2637 ms. 918 | 2015-12-22 09:55:11 [ qtp1081769770-55:429342 ] - [ INFO ] Start to process PB records. 919 | 2015-12-22 09:55:11 [ qtp1081769770-69:429437 ] - [ INFO ] Start to topology discovery. 920 | 2015-12-22 09:55:11 [ qtp1081769770-69:429438 ] - [ INFO ] Start to query Logmet. 921 | 2015-12-22 09:55:11 [ qtp1081769770-69:429438 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777511303. 922 | 2015-12-22 09:55:11 [ qtp1081769770-64:429682 ] - [ INFO ] Retrieved PB records: 497, used 2543 ms. 923 | 2015-12-22 09:55:11 [ qtp1081769770-64:429713 ] - [ INFO ] Start to process PB records. 924 | 2015-12-22 09:55:11 [ qtp1081769770-74:429994 ] - [ INFO ] Start to topology discovery. 925 | 2015-12-22 09:55:11 [ qtp1081769770-74:429995 ] - [ INFO ] Start to query Logmet. 926 | 2015-12-22 09:55:11 [ qtp1081769770-74:429996 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777511861. 927 | 2015-12-22 09:55:11 [ qtp1081769770-73:430047 ] - [ INFO ] Start to topology discovery. 928 | 2015-12-22 09:55:11 [ qtp1081769770-73:430048 ] - [ INFO ] Start to query Logmet. 929 | 2015-12-22 09:55:12 [ qtp1081769770-73:430153 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777512018. 930 | 2015-12-22 09:55:12 [ qtp1081769770-72:430307 ] - [ INFO ] Start to topology discovery. 931 | 2015-12-22 09:55:12 [ qtp1081769770-72:430308 ] - [ INFO ] Start to query Logmet. 932 | 2015-12-22 09:55:12 [ qtp1081769770-72:430309 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777512174. 933 | 2015-12-22 09:55:12 [ qtp1081769770-65:430367 ] - [ INFO ] Retrieved PB records: 497, used 3041 ms. 934 | 2015-12-22 09:55:12 [ qtp1081769770-65:430367 ] - [ INFO ] Start to process PB records. 935 | 2015-12-22 09:55:12 [ qtp1081769770-67:430586 ] - [ INFO ] Retrieved PB records: 497, used 2358 ms. 936 | 2015-12-22 09:55:12 [ qtp1081769770-67:430596 ] - [ INFO ] Start to process PB records. 937 | 2015-12-22 09:55:12 [ qtp1081769770-76:430664 ] - [ INFO ] Start to topology discovery. 938 | 2015-12-22 09:55:12 [ qtp1081769770-76:430665 ] - [ INFO ] Start to query Logmet. 939 | 2015-12-22 09:55:12 [ qtp1081769770-76:430666 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777512531. 940 | 2015-12-22 09:55:12 [ qtp1081769770-77:430971 ] - [ INFO ] Start to topology discovery. 941 | 2015-12-22 09:55:12 [ qtp1081769770-77:430976 ] - [ INFO ] Start to query Logmet. 942 | 2015-12-22 09:55:12 [ qtp1081769770-77:430977 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777512842. 943 | 2015-12-22 09:55:12 [ qtp1081769770-63:431050 ] - [ INFO ] Retrieved PB records: 497, used 3408 ms. 944 | 2015-12-22 09:55:12 [ qtp1081769770-63:431051 ] - [ INFO ] Start to process PB records. 945 | 2015-12-22 09:55:13 [ qtp1081769770-75:431299 ] - [ INFO ] Start to topology discovery. 946 | 2015-12-22 09:55:13 [ qtp1081769770-75:431300 ] - [ INFO ] Start to query Logmet. 947 | 2015-12-22 09:55:13 [ qtp1081769770-75:431301 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777513166. 948 | 2015-12-22 09:55:13 [ qtp1081769770-66:431338 ] - [ INFO ] Retrieved PB records: 497, used 3400 ms. 949 | 2015-12-22 09:55:13 [ qtp1081769770-66:431339 ] - [ INFO ] Start to process PB records. 950 | 2015-12-22 09:55:13 [ qtp1081769770-70:431814 ] - [ INFO ] Retrieved PB records: 497, used 2717 ms. 951 | 2015-12-22 09:55:13 [ qtp1081769770-70:431814 ] - [ INFO ] Start to process PB records. 952 | 2015-12-22 09:55:13 [ qtp1081769770-69:432007 ] - [ INFO ] Retrieved PB records: 497, used 2569 ms. 953 | 2015-12-22 09:55:13 [ qtp1081769770-69:432009 ] - [ INFO ] Start to process PB records. 954 | 2015-12-22 09:55:14 [ qtp1081769770-68:432137 ] - [ INFO ] Retrieved PB records: 497, used 3477 ms. 955 | 2015-12-22 09:55:14 [ qtp1081769770-68:432138 ] - [ INFO ] Start to process PB records. 956 | 2015-12-22 09:55:14 [ qtp1081769770-71:432385 ] - [ INFO ] Retrieved PB records: 497, used 3381 ms. 957 | 2015-12-22 09:55:14 [ qtp1081769770-71:432413 ] - [ INFO ] Start to process PB records. 958 | 2015-12-22 09:55:14 [ qtp1081769770-78:432463 ] - [ INFO ] Start to topology discovery. 959 | 2015-12-22 09:55:14 [ qtp1081769770-78:432464 ] - [ INFO ] Start to query Logmet. 960 | 2015-12-22 09:55:14 [ qtp1081769770-78:432465 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777514330. 961 | 2015-12-22 09:55:14 [ qtp1081769770-79:432528 ] - [ INFO ] Start to topology discovery. 962 | 2015-12-22 09:55:14 [ qtp1081769770-79:432531 ] - [ INFO ] Start to query Logmet. 963 | 2015-12-22 09:55:14 [ qtp1081769770-79:432533 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777514398. 964 | 2015-12-22 09:55:14 [ qtp1081769770-80:432774 ] - [ INFO ] Start to topology discovery. 965 | 2015-12-22 09:55:14 [ qtp1081769770-80:432777 ] - [ INFO ] Start to query Logmet. 966 | 2015-12-22 09:55:14 [ qtp1081769770-80:432778 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777514643. 967 | 2015-12-22 09:55:14 [ qtp1081769770-82:432861 ] - [ INFO ] Start to topology discovery. 968 | 2015-12-22 09:55:14 [ qtp1081769770-82:432862 ] - [ INFO ] Start to query Logmet. 969 | 2015-12-22 09:55:14 [ qtp1081769770-82:432863 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777514728. 970 | 2015-12-22 09:55:14 [ qtp1081769770-81:433113 ] - [ INFO ] Start to topology discovery. 971 | 2015-12-22 09:55:14 [ qtp1081769770-81:433114 ] - [ INFO ] Start to query Logmet. 972 | 2015-12-22 09:55:14 [ qtp1081769770-81:433122 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777514987. 973 | 2015-12-22 09:55:15 [ qtp1081769770-72:433438 ] - [ INFO ] Retrieved PB records: 497, used 3130 ms. 974 | 2015-12-22 09:55:15 [ qtp1081769770-72:433474 ] - [ INFO ] Start to process PB records. 975 | 2015-12-22 09:55:15 [ qtp1081769770-73:433486 ] - [ INFO ] Retrieved PB records: 497, used 3438 ms. 976 | 2015-12-22 09:55:15 [ qtp1081769770-73:433487 ] - [ INFO ] Start to process PB records. 977 | 2015-12-22 09:55:15 [ qtp1081769770-74:433566 ] - [ INFO ] Retrieved PB records: 497, used 3571 ms. 978 | 2015-12-22 09:55:15 [ qtp1081769770-74:433582 ] - [ INFO ] Start to process PB records. 979 | 2015-12-22 09:55:15 [ qtp1081769770-76:433667 ] - [ INFO ] Retrieved PB records: 497, used 3002 ms. 980 | 2015-12-22 09:55:15 [ qtp1081769770-76:433708 ] - [ INFO ] Start to process PB records. 981 | 2015-12-22 09:55:15 [ qtp1081769770-83:433735 ] - [ INFO ] Start to topology discovery. 982 | 2015-12-22 09:55:15 [ qtp1081769770-83:433738 ] - [ INFO ] Start to query Logmet. 983 | 2015-12-22 09:55:15 [ qtp1081769770-83:433739 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777515604. 984 | 2015-12-22 09:55:15 [ qtp1081769770-85:433922 ] - [ INFO ] Start to topology discovery. 985 | 2015-12-22 09:55:15 [ qtp1081769770-85:433968 ] - [ INFO ] Start to query Logmet. 986 | 2015-12-22 09:55:15 [ qtp1081769770-85:433981 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777515846. 987 | 2015-12-22 09:55:15 [ qtp1081769770-75:434079 ] - [ INFO ] Retrieved PB records: 497, used 2779 ms. 988 | 2015-12-22 09:55:15 [ qtp1081769770-75:434128 ] - [ INFO ] Start to process PB records. 989 | 2015-12-22 09:55:16 [ qtp1081769770-84:434150 ] - [ INFO ] Start to topology discovery. 990 | 2015-12-22 09:55:16 [ qtp1081769770-84:434150 ] - [ INFO ] Start to query Logmet. 991 | 2015-12-22 09:55:16 [ qtp1081769770-84:434151 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777516016. 992 | 2015-12-22 09:55:16 [ qtp1081769770-77:434194 ] - [ INFO ] Retrieved PB records: 497, used 3218 ms. 993 | 2015-12-22 09:55:16 [ qtp1081769770-77:434384 ] - [ INFO ] Start to process PB records. 994 | 2015-12-22 09:55:16 [ qtp1081769770-86:434398 ] - [ INFO ] Start to topology discovery. 995 | 2015-12-22 09:55:16 [ qtp1081769770-86:434398 ] - [ INFO ] Start to query Logmet. 996 | 2015-12-22 09:55:16 [ qtp1081769770-86:434413 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777516278. 997 | 2015-12-22 09:55:16 [ qtp1081769770-88:434675 ] - [ INFO ] Start to topology discovery. 998 | 2015-12-22 09:55:16 [ qtp1081769770-88:434675 ] - [ INFO ] Start to query Logmet. 999 | 2015-12-22 09:55:16 [ qtp1081769770-88:434676 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777516541. 1000 | 2015-12-22 09:55:16 [ qtp1081769770-89:434969 ] - [ INFO ] Start to topology discovery. 1001 | 2015-12-22 09:55:16 [ qtp1081769770-89:434970 ] - [ INFO ] Start to query Logmet. 1002 | 2015-12-22 09:55:16 [ qtp1081769770-89:434971 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777516836. 1003 | 2015-12-22 09:55:17 [ qtp1081769770-87:435262 ] - [ INFO ] Start to topology discovery. 1004 | 2015-12-22 09:55:17 [ qtp1081769770-87:435266 ] - [ INFO ] Start to query Logmet. 1005 | 2015-12-22 09:55:17 [ qtp1081769770-87:435268 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777517133. 1006 | 2015-12-22 09:55:17 [ qtp1081769770-78:435478 ] - [ INFO ] Retrieved PB records: 497, used 3014 ms. 1007 | 2015-12-22 09:55:17 [ qtp1081769770-78:435524 ] - [ INFO ] Start to process PB records. 1008 | 2015-12-22 09:55:17 [ qtp1081769770-90:435571 ] - [ INFO ] Start to topology discovery. 1009 | 2015-12-22 09:55:17 [ qtp1081769770-90:435571 ] - [ INFO ] Start to query Logmet. 1010 | 2015-12-22 09:55:17 [ qtp1081769770-90:435632 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777517497. 1011 | 2015-12-22 09:55:17 [ qtp1081769770-79:435736 ] - [ INFO ] Retrieved PB records: 497, used 3205 ms. 1012 | 2015-12-22 09:55:17 [ qtp1081769770-79:435810 ] - [ INFO ] Start to process PB records. 1013 | 2015-12-22 09:55:17 [ qtp1081769770-93:435957 ] - [ INFO ] Start to topology discovery. 1014 | 2015-12-22 09:55:17 [ qtp1081769770-93:435957 ] - [ INFO ] Start to query Logmet. 1015 | 2015-12-22 09:55:17 [ qtp1081769770-93:435958 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777517823. 1016 | 2015-12-22 09:55:17 [ qtp1081769770-82:435990 ] - [ INFO ] Retrieved PB records: 497, used 3128 ms. 1017 | 2015-12-22 09:55:17 [ qtp1081769770-82:436008 ] - [ INFO ] Start to process PB records. 1018 | 2015-12-22 09:55:18 [ qtp1081769770-92:436204 ] - [ INFO ] Start to topology discovery. 1019 | 2015-12-22 09:55:18 [ qtp1081769770-92:436259 ] - [ INFO ] Start to query Logmet. 1020 | 2015-12-22 09:55:18 [ qtp1081769770-92:436260 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777518125. 1021 | 2015-12-22 09:55:18 [ qtp1081769770-94:436573 ] - [ INFO ] Start to topology discovery. 1022 | 2015-12-22 09:55:18 [ qtp1081769770-94:436574 ] - [ INFO ] Start to query Logmet. 1023 | 2015-12-22 09:55:18 [ qtp1081769770-94:436574 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450777518439. 1024 | 2015-12-22 09:55:18 [ qtp1081769770-80:436762 ] - [ INFO ] Retrieved PB records: 497, used 3985 ms. 1025 | 2015-12-22 09:55:18 [ qtp1081769770-80:436763 ] - [ INFO ] Start to process PB records. 1026 | 2015-12-22 09:55:18 [ qtp1081769770-81:436983 ] - [ INFO ] Retrieved PB records: 497, used 3869 ms. 1027 | 2015-12-22 09:55:18 [ qtp1081769770-81:436983 ] - [ INFO ] Start to process PB records. 1028 | 2015-12-22 09:55:19 [ qtp1081769770-83:437327 ] - [ INFO ] Retrieved PB records: 497, used 3589 ms. 1029 | 2015-12-22 09:55:19 [ qtp1081769770-83:437396 ] - [ INFO ] Start to process PB records. 1030 | 2015-12-22 09:55:19 [ qtp1081769770-85:437532 ] - [ INFO ] Retrieved PB records: 497, used 3564 ms. 1031 | 2015-12-22 09:55:19 [ qtp1081769770-85:437554 ] - [ INFO ] Start to process PB records. 1032 | 2015-12-22 09:55:19 [ qtp1081769770-86:437658 ] - [ INFO ] Retrieved PB records: 497, used 3260 ms. 1033 | 2015-12-22 09:55:19 [ qtp1081769770-86:437659 ] - [ INFO ] Start to process PB records. 1034 | 2015-12-22 09:55:20 [ qtp1081769770-88:438176 ] - [ INFO ] Retrieved PB records: 497, used 3501 ms. 1035 | 2015-12-22 09:55:20 [ qtp1081769770-88:438253 ] - [ INFO ] Start to process PB records. 1036 | 2015-12-22 09:55:20 [ qtp1081769770-84:438373 ] - [ INFO ] Retrieved PB records: 497, used 4223 ms. 1037 | 2015-12-22 09:55:20 [ qtp1081769770-84:438374 ] - [ INFO ] Start to process PB records. 1038 | 2015-12-22 09:55:20 [ qtp1081769770-87:438875 ] - [ INFO ] Retrieved PB records: 497, used 3609 ms. 1039 | 2015-12-22 09:55:20 [ qtp1081769770-87:438924 ] - [ INFO ] Start to process PB records. 1040 | 2015-12-22 09:55:20 [ qtp1081769770-89:438886 ] - [ INFO ] Retrieved PB records: 497, used 3916 ms. 1041 | 2015-12-22 09:55:20 [ qtp1081769770-89:438945 ] - [ INFO ] Start to process PB records. 1042 | 2015-12-22 09:55:21 [ qtp1081769770-90:439830 ] - [ INFO ] Retrieved PB records: 497, used 4259 ms. 1043 | 2015-12-22 09:55:21 [ qtp1081769770-90:439830 ] - [ INFO ] Start to process PB records. 1044 | 2015-12-22 09:55:21 [ qtp1081769770-92:439966 ] - [ INFO ] Retrieved PB records: 497, used 3707 ms. 1045 | 2015-12-22 09:55:21 [ qtp1081769770-92:440028 ] - [ INFO ] Start to process PB records. 1046 | 2015-12-22 09:55:21 [ qtp1081769770-93:440058 ] - [ INFO ] Retrieved PB records: 497, used 4100 ms. 1047 | 2015-12-22 09:55:21 [ qtp1081769770-93:440058 ] - [ INFO ] Start to process PB records. 1048 | 2015-12-22 09:55:23 [ qtp1081769770-94:441537 ] - [ INFO ] Retrieved PB records: 497, used 4963 ms. 1049 | 2015-12-22 09:55:23 [ qtp1081769770-94:441538 ] - [ INFO ] Start to process PB records. 1050 | 2015-12-22 09:55:24 [ qtp1081769770-32:442401 ] - [ INFO ] From PB records found 154 links, used 27069 ms. 1051 | 2015-12-22 09:55:24 [ qtp1081769770-32:442428 ] - [ INFO ] Start to construct topology graph. 1052 | 2015-12-22 09:55:24 [ qtp1081769770-32:442435 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1053 | 2015-12-22 09:55:24 [ qtp1081769770-32:442498 ] - [ INFO ] Topology Graph constructed, used 70 ms. 1054 | 2015-12-22 09:55:24 [ qtp1081769770-32:442516 ] - [ INFO ] Topology discovery finished, used 28016 ms. 1055 | 2015-12-22 09:55:29 [ qtp1081769770-36:447505 ] - [ INFO ] From PB records found 154 links, used 31729 ms. 1056 | 2015-12-22 09:55:29 [ qtp1081769770-36:447505 ] - [ INFO ] Start to construct topology graph. 1057 | 2015-12-22 09:55:29 [ qtp1081769770-36:447524 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1058 | 2015-12-22 09:55:29 [ qtp1081769770-36:447525 ] - [ INFO ] Topology Graph constructed, used 20 ms. 1059 | 2015-12-22 09:55:29 [ qtp1081769770-36:447525 ] - [ INFO ] Topology discovery finished, used 32513 ms. 1060 | 2015-12-22 09:55:39 [ qtp1081769770-37:457285 ] - [ INFO ] From PB records found 154 links, used 41050 ms. 1061 | 2015-12-22 09:55:39 [ qtp1081769770-37:457285 ] - [ INFO ] Start to construct topology graph. 1062 | 2015-12-22 09:55:39 [ qtp1081769770-37:457350 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1063 | 2015-12-22 09:55:39 [ qtp1081769770-37:457353 ] - [ INFO ] Topology Graph constructed, used 68 ms. 1064 | 2015-12-22 09:55:39 [ qtp1081769770-37:457354 ] - [ INFO ] Topology discovery finished, used 42031 ms. 1065 | 2015-12-22 09:56:01 [ qtp1081769770-31:479626 ] - [ INFO ] From PB records found 150 links, used 62165 ms. 1066 | 2015-12-22 09:56:01 [ qtp1081769770-31:479681 ] - [ INFO ] Start to construct topology graph. 1067 | 2015-12-22 09:56:01 [ qtp1081769770-31:479695 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1068 | 2015-12-22 09:56:01 [ qtp1081769770-31:479956 ] - [ INFO ] Topology Graph constructed, used 275 ms. 1069 | 2015-12-22 09:56:01 [ qtp1081769770-31:479957 ] - [ INFO ] Topology discovery finished, used 63507 ms. 1070 | 2015-12-22 09:56:06 [ qtp1081769770-22:484483 ] - [ INFO ] From PB records found 150 links, used 66247 ms. 1071 | 2015-12-22 09:56:06 [ qtp1081769770-22:484484 ] - [ INFO ] Start to construct topology graph. 1072 | 2015-12-22 09:56:06 [ qtp1081769770-22:484540 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1073 | 2015-12-22 09:56:06 [ qtp1081769770-22:484620 ] - [ INFO ] Topology Graph constructed, used 136 ms. 1074 | 2015-12-22 09:56:06 [ qtp1081769770-22:484621 ] - [ INFO ] Topology discovery finished, used 67408 ms. 1075 | 2015-12-22 09:56:07 [ qtp1081769770-34:485226 ] - [ INFO ] From PB records found 150 links, used 67321 ms. 1076 | 2015-12-22 09:56:07 [ qtp1081769770-34:485227 ] - [ INFO ] Start to construct topology graph. 1077 | 2015-12-22 09:56:07 [ qtp1081769770-34:485255 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1078 | 2015-12-22 09:56:07 [ qtp1081769770-34:485256 ] - [ INFO ] Topology Graph constructed, used 29 ms. 1079 | 2015-12-22 09:56:07 [ qtp1081769770-34:485264 ] - [ INFO ] Topology discovery finished, used 68412 ms. 1080 | 2015-12-22 09:56:07 [ qtp1081769770-35:485459 ] - [ INFO ] From PB records found 155 links, used 66858 ms. 1081 | 2015-12-22 09:56:07 [ qtp1081769770-35:485674 ] - [ INFO ] Start to construct topology graph. 1082 | 2015-12-22 09:56:07 [ qtp1081769770-35:485698 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1083 | 2015-12-22 09:56:07 [ qtp1081769770-35:485699 ] - [ INFO ] Topology Graph constructed, used 25 ms. 1084 | 2015-12-22 09:56:07 [ qtp1081769770-35:485699 ] - [ INFO ] Topology discovery finished, used 68133 ms. 1085 | 2015-12-22 09:56:12 [ qtp1081769770-19:490854 ] - [ INFO ] From PB records found 154 links, used 71645 ms. 1086 | 2015-12-22 09:56:12 [ qtp1081769770-19:490890 ] - [ INFO ] Start to construct topology graph. 1087 | 2015-12-22 09:56:12 [ qtp1081769770-19:490934 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1088 | 2015-12-22 09:56:12 [ qtp1081769770-19:490990 ] - [ INFO ] Topology Graph constructed, used 100 ms. 1089 | 2015-12-22 09:56:12 [ qtp1081769770-19:491008 ] - [ INFO ] Topology discovery finished, used 72868 ms. 1090 | 2015-12-22 09:56:16 [ qtp1081769770-20:494787 ] - [ INFO ] From PB records found 154 links, used 74762 ms. 1091 | 2015-12-22 09:56:16 [ qtp1081769770-20:494836 ] - [ INFO ] Start to construct topology graph. 1092 | 2015-12-22 09:56:16 [ qtp1081769770-20:494839 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1093 | 2015-12-22 09:56:16 [ qtp1081769770-20:494876 ] - [ INFO ] Topology Graph constructed, used 40 ms. 1094 | 2015-12-22 09:56:16 [ qtp1081769770-20:494880 ] - [ INFO ] Topology discovery finished, used 76180 ms. 1095 | 2015-12-22 09:56:17 [ qtp1081769770-24:495230 ] - [ INFO ] From PB records found 155 links, used 76020 ms. 1096 | 2015-12-22 09:56:17 [ qtp1081769770-24:495231 ] - [ INFO ] Start to construct topology graph. 1097 | 2015-12-22 09:56:17 [ qtp1081769770-24:495305 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1098 | 2015-12-22 09:56:17 [ qtp1081769770-24:495306 ] - [ INFO ] Topology Graph constructed, used 75 ms. 1099 | 2015-12-22 09:56:17 [ qtp1081769770-24:495306 ] - [ INFO ] Topology discovery finished, used 77388 ms. 1100 | 2015-12-22 09:56:17 [ qtp1081769770-30:495669 ] - [ INFO ] From PB records found 155 links, used 75946 ms. 1101 | 2015-12-22 09:56:17 [ qtp1081769770-30:495669 ] - [ INFO ] Start to construct topology graph. 1102 | 2015-12-22 09:56:17 [ qtp1081769770-30:495672 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1103 | 2015-12-22 09:56:17 [ qtp1081769770-30:495688 ] - [ INFO ] Topology Graph constructed, used 19 ms. 1104 | 2015-12-22 09:56:17 [ qtp1081769770-30:495689 ] - [ INFO ] Topology discovery finished, used 77307 ms. 1105 | 2015-12-22 09:56:18 [ qtp1081769770-38:497029 ] - [ INFO ] From PB records found 155 links, used 76922 ms. 1106 | 2015-12-22 09:56:18 [ qtp1081769770-38:497069 ] - [ INFO ] Start to construct topology graph. 1107 | 2015-12-22 09:56:18 [ qtp1081769770-38:497074 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1108 | 2015-12-22 09:56:18 [ qtp1081769770-38:497121 ] - [ INFO ] Topology Graph constructed, used 52 ms. 1109 | 2015-12-22 09:56:18 [ qtp1081769770-38:497132 ] - [ INFO ] Topology discovery finished, used 78043 ms. 1110 | 2015-12-22 09:56:20 [ qtp1081769770-40:498549 ] - [ INFO ] From PB records found 155 links, used 78221 ms. 1111 | 2015-12-22 09:56:20 [ qtp1081769770-40:498550 ] - [ INFO ] Start to construct topology graph. 1112 | 2015-12-22 09:56:20 [ qtp1081769770-40:498604 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1113 | 2015-12-22 09:56:20 [ qtp1081769770-40:498613 ] - [ INFO ] Topology Graph constructed, used 63 ms. 1114 | 2015-12-22 09:56:20 [ qtp1081769770-40:498613 ] - [ INFO ] Topology discovery finished, used 79378 ms. 1115 | 2015-12-22 09:56:20 [ qtp1081769770-26:498738 ] - [ INFO ] From PB records found 155 links, used 77917 ms. 1116 | 2015-12-22 09:56:20 [ qtp1081769770-26:498764 ] - [ INFO ] Start to construct topology graph. 1117 | 2015-12-22 09:56:20 [ qtp1081769770-26:498779 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1118 | 2015-12-22 09:56:20 [ qtp1081769770-26:498828 ] - [ INFO ] Topology Graph constructed, used 64 ms. 1119 | 2015-12-22 09:56:20 [ qtp1081769770-26:498832 ] - [ INFO ] Topology discovery finished, used 79250 ms. 1120 | 2015-12-22 09:56:22 [ qtp1081769770-43:500989 ] - [ INFO ] From PB records found 155 links, used 79347 ms. 1121 | 2015-12-22 09:56:22 [ qtp1081769770-43:500990 ] - [ INFO ] Start to construct topology graph. 1122 | 2015-12-22 09:56:22 [ qtp1081769770-43:501017 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1123 | 2015-12-22 09:56:22 [ qtp1081769770-43:501052 ] - [ INFO ] Topology Graph constructed, used 62 ms. 1124 | 2015-12-22 09:56:22 [ qtp1081769770-43:501060 ] - [ INFO ] Topology discovery finished, used 80627 ms. 1125 | 2015-12-22 09:56:24 [ qtp1081769770-33:502997 ] - [ INFO ] From PB records found 155 links, used 81649 ms. 1126 | 2015-12-22 09:56:24 [ qtp1081769770-33:503004 ] - [ INFO ] Start to construct topology graph. 1127 | 2015-12-22 09:56:24 [ qtp1081769770-33:503007 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1128 | 2015-12-22 09:56:24 [ qtp1081769770-33:503016 ] - [ INFO ] Topology Graph constructed, used 12 ms. 1129 | 2015-12-22 09:56:24 [ qtp1081769770-33:503020 ] - [ INFO ] Topology discovery finished, used 83192 ms. 1130 | 2015-12-22 09:56:25 [ qtp1081769770-42:503798 ] - [ INFO ] From PB records found 155 links, used 82158 ms. 1131 | 2015-12-22 09:56:25 [ qtp1081769770-42:503799 ] - [ INFO ] Start to construct topology graph. 1132 | 2015-12-22 09:56:25 [ qtp1081769770-42:503802 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1133 | 2015-12-22 09:56:25 [ qtp1081769770-42:503812 ] - [ INFO ] Topology Graph constructed, used 13 ms. 1134 | 2015-12-22 09:56:25 [ qtp1081769770-42:503840 ] - [ INFO ] Topology discovery finished, used 83678 ms. 1135 | 2015-12-22 09:56:25 [ qtp1081769770-44:503944 ] - [ INFO ] From PB records found 155 links, used 81551 ms. 1136 | 2015-12-22 09:56:25 [ qtp1081769770-44:503945 ] - [ INFO ] Start to construct topology graph. 1137 | 2015-12-22 09:56:25 [ qtp1081769770-44:503947 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1138 | 2015-12-22 09:56:25 [ qtp1081769770-44:503948 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1139 | 2015-12-22 09:56:25 [ qtp1081769770-44:503952 ] - [ INFO ] Topology discovery finished, used 82983 ms. 1140 | 2015-12-22 09:56:27 [ qtp1081769770-41:505346 ] - [ INFO ] From PB records found 155 links, used 83090 ms. 1141 | 2015-12-22 09:56:27 [ qtp1081769770-41:505368 ] - [ INFO ] Start to construct topology graph. 1142 | 2015-12-22 09:56:27 [ qtp1081769770-41:505374 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1143 | 2015-12-22 09:56:27 [ qtp1081769770-41:505418 ] - [ INFO ] Topology Graph constructed, used 50 ms. 1144 | 2015-12-22 09:56:27 [ qtp1081769770-41:505440 ] - [ INFO ] Topology discovery finished, used 84698 ms. 1145 | 2015-12-22 09:56:27 [ qtp1081769770-47:506082 ] - [ INFO ] From PB records found 155 links, used 82658 ms. 1146 | 2015-12-22 09:56:27 [ qtp1081769770-47:506083 ] - [ INFO ] Start to construct topology graph. 1147 | 2015-12-22 09:56:27 [ qtp1081769770-47:506114 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1148 | 2015-12-22 09:56:27 [ qtp1081769770-47:506115 ] - [ INFO ] Topology Graph constructed, used 32 ms. 1149 | 2015-12-22 09:56:27 [ qtp1081769770-47:506115 ] - [ INFO ] Topology discovery finished, used 84269 ms. 1150 | 2015-12-22 09:56:28 [ qtp1081769770-50:506784 ] - [ INFO ] From PB records found 153 links, used 82219 ms. 1151 | 2015-12-22 09:56:28 [ qtp1081769770-50:506810 ] - [ INFO ] Start to construct topology graph. 1152 | 2015-12-22 09:56:28 [ qtp1081769770-50:506823 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1153 | 2015-12-22 09:56:28 [ qtp1081769770-50:506823 ] - [ INFO ] Topology Graph constructed, used 13 ms. 1154 | 2015-12-22 09:56:28 [ qtp1081769770-50:506824 ] - [ INFO ] Topology discovery finished, used 84178 ms. 1155 | 2015-12-22 09:56:28 [ qtp1081769770-46:506894 ] - [ INFO ] From PB records found 155 links, used 83542 ms. 1156 | 2015-12-22 09:56:28 [ qtp1081769770-46:506922 ] - [ INFO ] Start to construct topology graph. 1157 | 2015-12-22 09:56:28 [ qtp1081769770-46:506930 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1158 | 2015-12-22 09:56:28 [ qtp1081769770-46:506968 ] - [ INFO ] Topology Graph constructed, used 46 ms. 1159 | 2015-12-22 09:56:28 [ qtp1081769770-46:506969 ] - [ INFO ] Topology discovery finished, used 85357 ms. 1160 | 2015-12-22 09:56:28 [ qtp1081769770-39:506992 ] - [ INFO ] From PB records found 155 links, used 84461 ms. 1161 | 2015-12-22 09:56:28 [ qtp1081769770-39:507008 ] - [ INFO ] Start to construct topology graph. 1162 | 2015-12-22 09:56:28 [ qtp1081769770-39:507022 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1163 | 2015-12-22 09:56:28 [ qtp1081769770-39:507046 ] - [ INFO ] Topology Graph constructed, used 38 ms. 1164 | 2015-12-22 09:56:28 [ qtp1081769770-39:507060 ] - [ INFO ] Topology discovery finished, used 85666 ms. 1165 | 2015-12-22 09:56:29 [ qtp1081769770-45:507184 ] - [ INFO ] From PB records found 155 links, used 83097 ms. 1166 | 2015-12-22 09:56:29 [ qtp1081769770-45:507200 ] - [ INFO ] Start to construct topology graph. 1167 | 2015-12-22 09:56:29 [ qtp1081769770-45:507233 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1168 | 2015-12-22 09:56:29 [ qtp1081769770-45:507297 ] - [ INFO ] Topology Graph constructed, used 97 ms. 1169 | 2015-12-22 09:56:29 [ qtp1081769770-45:507297 ] - [ INFO ] Topology discovery finished, used 84999 ms. 1170 | 2015-12-22 09:56:30 [ qtp1081769770-56:508898 ] - [ INFO ] From PB records found 152 links, used 81179 ms. 1171 | 2015-12-22 09:56:30 [ qtp1081769770-56:508904 ] - [ INFO ] Start to construct topology graph. 1172 | 2015-12-22 09:56:30 [ qtp1081769770-56:508907 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1173 | 2015-12-22 09:56:30 [ qtp1081769770-56:508908 ] - [ INFO ] Topology Graph constructed, used 4 ms. 1174 | 2015-12-22 09:56:30 [ qtp1081769770-56:508908 ] - [ INFO ] Topology discovery finished, used 83909 ms. 1175 | 2015-12-22 09:56:31 [ qtp1081769770-48:509383 ] - [ INFO ] From PB records found 153 links, used 83049 ms. 1176 | 2015-12-22 09:56:31 [ qtp1081769770-48:509404 ] - [ INFO ] Start to construct topology graph. 1177 | 2015-12-22 09:56:31 [ qtp1081769770-48:509414 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1178 | 2015-12-22 09:56:31 [ qtp1081769770-48:509415 ] - [ INFO ] Topology Graph constructed, used 11 ms. 1179 | 2015-12-22 09:56:31 [ qtp1081769770-48:509448 ] - [ INFO ] Topology discovery finished, used 85285 ms. 1180 | 2015-12-22 09:56:31 [ qtp1081769770-51:509583 ] - [ INFO ] From PB records found 153 links, used 84743 ms. 1181 | 2015-12-22 09:56:31 [ qtp1081769770-51:509613 ] - [ INFO ] Start to construct topology graph. 1182 | 2015-12-22 09:56:31 [ qtp1081769770-51:509622 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1183 | 2015-12-22 09:56:31 [ qtp1081769770-51:509638 ] - [ INFO ] Topology Graph constructed, used 25 ms. 1184 | 2015-12-22 09:56:31 [ qtp1081769770-51:509642 ] - [ INFO ] Topology discovery finished, used 86571 ms. 1185 | 2015-12-22 09:56:31 [ qtp1081769770-53:509653 ] - [ INFO ] From PB records found 153 links, used 83656 ms. 1186 | 2015-12-22 09:56:31 [ qtp1081769770-53:509654 ] - [ INFO ] Start to construct topology graph. 1187 | 2015-12-22 09:56:31 [ qtp1081769770-53:509699 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1188 | 2015-12-22 09:56:31 [ qtp1081769770-53:509700 ] - [ INFO ] Topology Graph constructed, used 46 ms. 1189 | 2015-12-22 09:56:31 [ qtp1081769770-53:509700 ] - [ INFO ] Topology discovery finished, used 85881 ms. 1190 | 2015-12-22 09:56:31 [ qtp1081769770-58:509941 ] - [ INFO ] From PB records found 152 links, used 81703 ms. 1191 | 2015-12-22 09:56:31 [ qtp1081769770-58:509942 ] - [ INFO ] Start to construct topology graph. 1192 | 2015-12-22 09:56:31 [ qtp1081769770-52:509966 ] - [ INFO ] From PB records found 155 links, used 84906 ms. 1193 | 2015-12-22 09:56:31 [ qtp1081769770-52:509968 ] - [ INFO ] Start to construct topology graph. 1194 | 2015-12-22 09:56:31 [ qtp1081769770-58:510000 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1195 | 2015-12-22 09:56:31 [ qtp1081769770-58:510013 ] - [ INFO ] Topology Graph constructed, used 71 ms. 1196 | 2015-12-22 09:56:31 [ qtp1081769770-58:510013 ] - [ INFO ] Topology discovery finished, used 84483 ms. 1197 | 2015-12-22 09:56:31 [ qtp1081769770-52:510017 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1198 | 2015-12-22 09:56:31 [ qtp1081769770-52:510017 ] - [ INFO ] Topology Graph constructed, used 49 ms. 1199 | 2015-12-22 09:56:31 [ qtp1081769770-52:510018 ] - [ INFO ] Topology discovery finished, used 86692 ms. 1200 | 2015-12-22 09:56:33 [ qtp1081769770-55:511688 ] - [ INFO ] From PB records found 153 links, used 82346 ms. 1201 | 2015-12-22 09:56:33 [ qtp1081769770-55:511689 ] - [ INFO ] Start to construct topology graph. 1202 | 2015-12-22 09:56:33 [ qtp1081769770-55:511692 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1203 | 2015-12-22 09:56:33 [ qtp1081769770-55:511771 ] - [ INFO ] Topology Graph constructed, used 82 ms. 1204 | 2015-12-22 09:56:33 [ qtp1081769770-55:511771 ] - [ INFO ] Topology discovery finished, used 85068 ms. 1205 | 2015-12-22 09:56:33 [ qtp1081769770-57:511816 ] - [ INFO ] From PB records found 153 links, used 84902 ms. 1206 | 2015-12-22 09:56:33 [ qtp1081769770-57:511816 ] - [ INFO ] Start to construct topology graph. 1207 | 2015-12-22 09:56:33 [ qtp1081769770-57:511819 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1208 | 2015-12-22 09:56:33 [ qtp1081769770-57:511820 ] - [ INFO ] Topology Graph constructed, used 4 ms. 1209 | 2015-12-22 09:56:33 [ qtp1081769770-57:511820 ] - [ INFO ] Topology discovery finished, used 87060 ms. 1210 | 2015-12-22 09:56:33 [ qtp1081769770-61:511875 ] - [ INFO ] From PB records found 153 links, used 83806 ms. 1211 | 2015-12-22 09:56:33 [ qtp1081769770-61:511875 ] - [ INFO ] Start to construct topology graph. 1212 | 2015-12-22 09:56:33 [ qtp1081769770-61:511878 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1213 | 2015-12-22 09:56:33 [ qtp1081769770-61:511952 ] - [ INFO ] Topology Graph constructed, used 77 ms. 1214 | 2015-12-22 09:56:33 [ qtp1081769770-61:511953 ] - [ INFO ] Topology discovery finished, used 85900 ms. 1215 | 2015-12-22 09:56:33 [ qtp1081769770-54:512040 ] - [ INFO ] From PB records found 152 links, used 85601 ms. 1216 | 2015-12-22 09:56:33 [ qtp1081769770-54:512044 ] - [ INFO ] Start to construct topology graph. 1217 | 2015-12-22 09:56:33 [ qtp1081769770-54:512051 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1218 | 2015-12-22 09:56:33 [ qtp1081769770-54:512080 ] - [ INFO ] Topology Graph constructed, used 36 ms. 1219 | 2015-12-22 09:56:33 [ qtp1081769770-54:512084 ] - [ INFO ] Topology discovery finished, used 87651 ms. 1220 | 2015-12-22 09:56:33 [ qtp1081769770-64:512110 ] - [ INFO ] From PB records found 152 links, used 82397 ms. 1221 | 2015-12-22 09:56:33 [ qtp1081769770-64:512111 ] - [ INFO ] Start to construct topology graph. 1222 | 2015-12-22 09:56:34 [ qtp1081769770-64:512156 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1223 | 2015-12-22 09:56:34 [ qtp1081769770-64:512157 ] - [ INFO ] Topology Graph constructed, used 46 ms. 1224 | 2015-12-22 09:56:34 [ qtp1081769770-64:512157 ] - [ INFO ] Topology discovery finished, used 85018 ms. 1225 | 2015-12-22 09:56:34 [ qtp1081769770-66:512417 ] - [ INFO ] From PB records found 154 links, used 81078 ms. 1226 | 2015-12-22 09:56:34 [ qtp1081769770-66:512417 ] - [ INFO ] Start to construct topology graph. 1227 | 2015-12-22 09:56:34 [ qtp1081769770-66:512420 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1228 | 2015-12-22 09:56:34 [ qtp1081769770-66:512456 ] - [ INFO ] Topology Graph constructed, used 39 ms. 1229 | 2015-12-22 09:56:34 [ qtp1081769770-66:512457 ] - [ INFO ] Topology discovery finished, used 84521 ms. 1230 | 2015-12-22 09:56:34 [ qtp1081769770-59:512481 ] - [ INFO ] From PB records found 153 links, used 84977 ms. 1231 | 2015-12-22 09:56:34 [ qtp1081769770-59:512485 ] - [ INFO ] Start to construct topology graph. 1232 | 2015-12-22 09:56:34 [ qtp1081769770-59:512494 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1233 | 2015-12-22 09:56:34 [ qtp1081769770-59:512516 ] - [ INFO ] Topology Graph constructed, used 31 ms. 1234 | 2015-12-22 09:56:34 [ qtp1081769770-59:512517 ] - [ INFO ] Topology discovery finished, used 87269 ms. 1235 | 2015-12-22 09:56:34 [ qtp1081769770-49:512712 ] - [ INFO ] From PB records found 155 links, used 88104 ms. 1236 | 2015-12-22 09:56:34 [ qtp1081769770-49:512716 ] - [ INFO ] Start to construct topology graph. 1237 | 2015-12-22 09:56:34 [ qtp1081769770-49:512723 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1238 | 2015-12-22 09:56:34 [ qtp1081769770-49:512746 ] - [ INFO ] Topology Graph constructed, used 30 ms. 1239 | 2015-12-22 09:56:34 [ qtp1081769770-49:512752 ] - [ INFO ] Topology discovery finished, used 89983 ms. 1240 | 2015-12-22 09:56:34 [ qtp1081769770-71:512866 ] - [ INFO ] From PB records found 154 links, used 80453 ms. 1241 | 2015-12-22 09:56:34 [ qtp1081769770-71:512866 ] - [ INFO ] Start to construct topology graph. 1242 | 2015-12-22 09:56:34 [ qtp1081769770-71:512882 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1243 | 2015-12-22 09:56:34 [ qtp1081769770-71:512883 ] - [ INFO ] Topology Graph constructed, used 17 ms. 1244 | 2015-12-22 09:56:34 [ qtp1081769770-71:512883 ] - [ INFO ] Topology discovery finished, used 83883 ms. 1245 | 2015-12-22 09:56:34 [ qtp1081769770-67:512911 ] - [ INFO ] From PB records found 152 links, used 82315 ms. 1246 | 2015-12-22 09:56:34 [ qtp1081769770-67:512920 ] - [ INFO ] Start to construct topology graph. 1247 | 2015-12-22 09:56:34 [ qtp1081769770-67:512923 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1248 | 2015-12-22 09:56:34 [ qtp1081769770-67:512965 ] - [ INFO ] Topology Graph constructed, used 45 ms. 1249 | 2015-12-22 09:56:34 [ qtp1081769770-67:512966 ] - [ INFO ] Topology discovery finished, used 84739 ms. 1250 | 2015-12-22 09:56:34 [ qtp1081769770-62:513089 ] - [ INFO ] From PB records found 153 links, used 83791 ms. 1251 | 2015-12-22 09:56:34 [ qtp1081769770-62:513116 ] - [ INFO ] Start to construct topology graph. 1252 | 2015-12-22 09:56:35 [ qtp1081769770-62:513141 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1253 | 2015-12-22 09:56:35 [ qtp1081769770-62:513148 ] - [ INFO ] Topology Graph constructed, used 32 ms. 1254 | 2015-12-22 09:56:35 [ qtp1081769770-62:513152 ] - [ INFO ] Topology discovery finished, used 86727 ms. 1255 | 2015-12-22 09:56:35 [ qtp1081769770-77:513677 ] - [ INFO ] From PB records found 154 links, used 79293 ms. 1256 | 2015-12-22 09:56:35 [ qtp1081769770-77:513678 ] - [ INFO ] Start to construct topology graph. 1257 | 2015-12-22 09:56:35 [ qtp1081769770-77:513680 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1258 | 2015-12-22 09:56:35 [ qtp1081769770-77:513681 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1259 | 2015-12-22 09:56:35 [ qtp1081769770-77:513681 ] - [ INFO ] Topology discovery finished, used 82710 ms. 1260 | 2015-12-22 09:56:35 [ qtp1081769770-65:513705 ] - [ INFO ] From PB records found 152 links, used 83338 ms. 1261 | 2015-12-22 09:56:35 [ qtp1081769770-65:513714 ] - [ INFO ] Start to construct topology graph. 1262 | 2015-12-22 09:56:35 [ qtp1081769770-65:513717 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1263 | 2015-12-22 09:56:35 [ qtp1081769770-65:513740 ] - [ INFO ] Topology Graph constructed, used 26 ms. 1264 | 2015-12-22 09:56:35 [ qtp1081769770-65:513741 ] - [ INFO ] Topology discovery finished, used 86417 ms. 1265 | 2015-12-22 09:56:35 [ qtp1081769770-73:513893 ] - [ INFO ] From PB records found 154 links, used 80406 ms. 1266 | 2015-12-22 09:56:35 [ qtp1081769770-73:513896 ] - [ INFO ] Start to construct topology graph. 1267 | 2015-12-22 09:56:35 [ qtp1081769770-73:513899 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1268 | 2015-12-22 09:56:35 [ qtp1081769770-73:513928 ] - [ INFO ] Topology Graph constructed, used 32 ms. 1269 | 2015-12-22 09:56:35 [ qtp1081769770-73:513929 ] - [ INFO ] Topology discovery finished, used 83882 ms. 1270 | 2015-12-22 09:56:36 [ qtp1081769770-60:514221 ] - [ INFO ] From PB records found 153 links, used 85527 ms. 1271 | 2015-12-22 09:56:36 [ qtp1081769770-60:514228 ] - [ INFO ] Start to construct topology graph. 1272 | 2015-12-22 09:56:36 [ qtp1081769770-60:514234 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1273 | 2015-12-22 09:56:36 [ qtp1081769770-60:514248 ] - [ INFO ] Topology Graph constructed, used 20 ms. 1274 | 2015-12-22 09:56:36 [ qtp1081769770-60:514252 ] - [ INFO ] Topology discovery finished, used 88144 ms. 1275 | 2015-12-22 09:56:36 [ qtp1081769770-68:514446 ] - [ INFO ] From PB records found 154 links, used 82308 ms. 1276 | 2015-12-22 09:56:36 [ qtp1081769770-68:514468 ] - [ INFO ] Start to construct topology graph. 1277 | 2015-12-22 09:56:36 [ qtp1081769770-69:514448 ] - [ INFO ] From PB records found 154 links, used 82439 ms. 1278 | 2015-12-22 09:56:36 [ qtp1081769770-69:514470 ] - [ INFO ] Start to construct topology graph. 1279 | 2015-12-22 09:56:36 [ qtp1081769770-68:514471 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1280 | 2015-12-22 09:56:36 [ qtp1081769770-68:514472 ] - [ INFO ] Topology Graph constructed, used 4 ms. 1281 | 2015-12-22 09:56:36 [ qtp1081769770-68:514472 ] - [ INFO ] Topology discovery finished, used 85853 ms. 1282 | 2015-12-22 09:56:36 [ qtp1081769770-69:514473 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1283 | 2015-12-22 09:56:36 [ qtp1081769770-69:514490 ] - [ INFO ] Topology Graph constructed, used 20 ms. 1284 | 2015-12-22 09:56:36 [ qtp1081769770-69:514497 ] - [ INFO ] Topology discovery finished, used 85060 ms. 1285 | 2015-12-22 09:56:36 [ qtp1081769770-79:514619 ] - [ INFO ] From PB records found 154 links, used 78809 ms. 1286 | 2015-12-22 09:56:36 [ qtp1081769770-79:514660 ] - [ INFO ] Start to construct topology graph. 1287 | 2015-12-22 09:56:36 [ qtp1081769770-79:514663 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1288 | 2015-12-22 09:56:36 [ qtp1081769770-79:514663 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1289 | 2015-12-22 09:56:36 [ qtp1081769770-79:514664 ] - [ INFO ] Topology discovery finished, used 82136 ms. 1290 | 2015-12-22 09:56:36 [ qtp1081769770-76:514786 ] - [ INFO ] From PB records found 154 links, used 81078 ms. 1291 | 2015-12-22 09:56:36 [ qtp1081769770-76:514792 ] - [ INFO ] Start to construct topology graph. 1292 | 2015-12-22 09:56:36 [ qtp1081769770-76:514810 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1293 | 2015-12-22 09:56:36 [ qtp1081769770-76:514811 ] - [ INFO ] Topology Graph constructed, used 19 ms. 1294 | 2015-12-22 09:56:36 [ qtp1081769770-76:514812 ] - [ INFO ] Topology discovery finished, used 84148 ms. 1295 | 2015-12-22 09:56:36 [ qtp1081769770-78:515069 ] - [ INFO ] From PB records found 154 links, used 79545 ms. 1296 | 2015-12-22 09:56:36 [ qtp1081769770-78:515069 ] - [ INFO ] Start to construct topology graph. 1297 | 2015-12-22 09:56:36 [ qtp1081769770-78:515072 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1298 | 2015-12-22 09:56:36 [ qtp1081769770-78:515113 ] - [ INFO ] Topology Graph constructed, used 44 ms. 1299 | 2015-12-22 09:56:36 [ qtp1081769770-78:515113 ] - [ INFO ] Topology discovery finished, used 82650 ms. 1300 | 2015-12-22 09:56:37 [ qtp1081769770-82:515201 ] - [ INFO ] From PB records found 154 links, used 79193 ms. 1301 | 2015-12-22 09:56:37 [ qtp1081769770-82:515201 ] - [ INFO ] Start to construct topology graph. 1302 | 2015-12-22 09:56:37 [ qtp1081769770-82:515215 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1303 | 2015-12-22 09:56:37 [ qtp1081769770-82:515232 ] - [ INFO ] Topology Graph constructed, used 31 ms. 1304 | 2015-12-22 09:56:37 [ qtp1081769770-82:515240 ] - [ INFO ] Topology discovery finished, used 82379 ms. 1305 | 2015-12-22 09:56:37 [ qtp1081769770-72:515288 ] - [ INFO ] From PB records found 154 links, used 81814 ms. 1306 | 2015-12-22 09:56:37 [ qtp1081769770-72:515297 ] - [ INFO ] Start to construct topology graph. 1307 | 2015-12-22 09:56:37 [ qtp1081769770-72:515299 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1308 | 2015-12-22 09:56:37 [ qtp1081769770-72:515306 ] - [ INFO ] Topology Graph constructed, used 9 ms. 1309 | 2015-12-22 09:56:37 [ qtp1081769770-72:515312 ] - [ INFO ] Topology discovery finished, used 85005 ms. 1310 | 2015-12-22 09:56:37 [ qtp1081769770-70:515346 ] - [ INFO ] From PB records found 154 links, used 83532 ms. 1311 | 2015-12-22 09:56:37 [ qtp1081769770-70:515347 ] - [ INFO ] Start to construct topology graph. 1312 | 2015-12-22 09:56:37 [ qtp1081769770-83:515347 ] - [ INFO ] From PB records found 152 links, used 77951 ms. 1313 | 2015-12-22 09:56:37 [ qtp1081769770-83:515348 ] - [ INFO ] Start to construct topology graph. 1314 | 2015-12-22 09:56:37 [ qtp1081769770-83:515350 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1315 | 2015-12-22 09:56:37 [ qtp1081769770-83:515351 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1316 | 2015-12-22 09:56:37 [ qtp1081769770-83:515351 ] - [ INFO ] Topology discovery finished, used 81616 ms. 1317 | 2015-12-22 09:56:37 [ qtp1081769770-70:515365 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1318 | 2015-12-22 09:56:37 [ qtp1081769770-70:515366 ] - [ INFO ] Topology Graph constructed, used 19 ms. 1319 | 2015-12-22 09:56:37 [ qtp1081769770-70:515366 ] - [ INFO ] Topology discovery finished, used 86275 ms. 1320 | 2015-12-22 09:56:37 [ qtp1081769770-80:515533 ] - [ INFO ] From PB records found 154 links, used 78770 ms. 1321 | 2015-12-22 09:56:37 [ qtp1081769770-80:515533 ] - [ INFO ] Start to construct topology graph. 1322 | 2015-12-22 09:56:37 [ qtp1081769770-80:515536 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1323 | 2015-12-22 09:56:37 [ qtp1081769770-80:515545 ] - [ INFO ] Topology Graph constructed, used 12 ms. 1324 | 2015-12-22 09:56:37 [ qtp1081769770-80:515546 ] - [ INFO ] Topology discovery finished, used 82772 ms. 1325 | 2015-12-22 09:56:37 [ qtp1081769770-63:515543 ] - [ INFO ] From PB records found 154 links, used 84492 ms. 1326 | 2015-12-22 09:56:37 [ qtp1081769770-63:515556 ] - [ INFO ] Start to construct topology graph. 1327 | 2015-12-22 09:56:37 [ qtp1081769770-63:515567 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1328 | 2015-12-22 09:56:37 [ qtp1081769770-63:515576 ] - [ INFO ] Topology Graph constructed, used 20 ms. 1329 | 2015-12-22 09:56:37 [ qtp1081769770-63:515577 ] - [ INFO ] Topology discovery finished, used 87936 ms. 1330 | 2015-12-22 09:56:37 [ qtp1081769770-94:515716 ] - [ INFO ] From PB records found 152 links, used 74178 ms. 1331 | 2015-12-22 09:56:37 [ qtp1081769770-94:515741 ] - [ INFO ] Start to construct topology graph. 1332 | 2015-12-22 09:56:37 [ qtp1081769770-94:515743 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1333 | 2015-12-22 09:56:37 [ qtp1081769770-94:515760 ] - [ INFO ] Topology Graph constructed, used 19 ms. 1334 | 2015-12-22 09:56:37 [ qtp1081769770-94:515761 ] - [ INFO ] Topology discovery finished, used 79188 ms. 1335 | 2015-12-22 09:56:37 [ qtp1081769770-74:515801 ] - [ INFO ] From PB records found 154 links, used 82219 ms. 1336 | 2015-12-22 09:56:37 [ qtp1081769770-74:515808 ] - [ INFO ] Start to construct topology graph. 1337 | 2015-12-22 09:56:37 [ qtp1081769770-74:515818 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1338 | 2015-12-22 09:56:37 [ qtp1081769770-74:515824 ] - [ INFO ] Topology Graph constructed, used 16 ms. 1339 | 2015-12-22 09:56:37 [ qtp1081769770-74:515825 ] - [ INFO ] Topology discovery finished, used 85831 ms. 1340 | 2015-12-22 09:56:37 [ qtp1081769770-75:515873 ] - [ INFO ] From PB records found 154 links, used 81745 ms. 1341 | 2015-12-22 09:56:37 [ qtp1081769770-75:515873 ] - [ INFO ] Start to construct topology graph. 1342 | 2015-12-22 09:56:37 [ qtp1081769770-75:515882 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1343 | 2015-12-22 09:56:37 [ qtp1081769770-75:515882 ] - [ INFO ] Topology Graph constructed, used 9 ms. 1344 | 2015-12-22 09:56:37 [ qtp1081769770-75:515883 ] - [ INFO ] Topology discovery finished, used 84584 ms. 1345 | 2015-12-22 09:56:37 [ qtp1081769770-93:516056 ] - [ INFO ] From PB records found 152 links, used 75998 ms. 1346 | 2015-12-22 09:56:37 [ qtp1081769770-93:516076 ] - [ INFO ] Start to construct topology graph. 1347 | 2015-12-22 09:56:37 [ qtp1081769770-93:516079 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1348 | 2015-12-22 09:56:37 [ qtp1081769770-93:516080 ] - [ INFO ] Topology Graph constructed, used 4 ms. 1349 | 2015-12-22 09:56:37 [ qtp1081769770-93:516080 ] - [ INFO ] Topology discovery finished, used 80123 ms. 1350 | 2015-12-22 09:56:38 [ qtp1081769770-81:516141 ] - [ INFO ] From PB records found 154 links, used 79158 ms. 1351 | 2015-12-22 09:56:38 [ qtp1081769770-81:516142 ] - [ INFO ] Start to construct topology graph. 1352 | 2015-12-22 09:56:38 [ qtp1081769770-81:516153 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1353 | 2015-12-22 09:56:38 [ qtp1081769770-81:516153 ] - [ INFO ] Topology Graph constructed, used 11 ms. 1354 | 2015-12-22 09:56:38 [ qtp1081769770-81:516154 ] - [ INFO ] Topology discovery finished, used 83041 ms. 1355 | 2015-12-22 09:56:38 [ qtp1081769770-86:516156 ] - [ INFO ] From PB records found 153 links, used 78497 ms. 1356 | 2015-12-22 09:56:38 [ qtp1081769770-86:516171 ] - [ INFO ] Start to construct topology graph. 1357 | 2015-12-22 09:56:38 [ qtp1081769770-86:516174 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1358 | 2015-12-22 09:56:38 [ qtp1081769770-86:516174 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1359 | 2015-12-22 09:56:38 [ qtp1081769770-86:516175 ] - [ INFO ] Topology discovery finished, used 81777 ms. 1360 | 2015-12-22 09:56:38 [ qtp1081769770-84:516311 ] - [ INFO ] From PB records found 153 links, used 77937 ms. 1361 | 2015-12-22 09:56:38 [ qtp1081769770-84:516317 ] - [ INFO ] Start to construct topology graph. 1362 | 2015-12-22 09:56:38 [ qtp1081769770-84:516320 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1363 | 2015-12-22 09:56:38 [ qtp1081769770-84:516330 ] - [ INFO ] Topology Graph constructed, used 13 ms. 1364 | 2015-12-22 09:56:38 [ qtp1081769770-84:516331 ] - [ INFO ] Topology discovery finished, used 82181 ms. 1365 | 2015-12-22 09:56:38 [ qtp1081769770-85:516339 ] - [ INFO ] From PB records found 152 links, used 78785 ms. 1366 | 2015-12-22 09:56:38 [ qtp1081769770-85:516339 ] - [ INFO ] Start to construct topology graph. 1367 | 2015-12-22 09:56:38 [ qtp1081769770-85:516345 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1368 | 2015-12-22 09:56:38 [ qtp1081769770-85:516346 ] - [ INFO ] Topology Graph constructed, used 7 ms. 1369 | 2015-12-22 09:56:38 [ qtp1081769770-85:516346 ] - [ INFO ] Topology discovery finished, used 82424 ms. 1370 | 2015-12-22 09:56:38 [ qtp1081769770-88:516371 ] - [ INFO ] From PB records found 153 links, used 78118 ms. 1371 | 2015-12-22 09:56:38 [ qtp1081769770-88:516375 ] - [ INFO ] Start to construct topology graph. 1372 | 2015-12-22 09:56:38 [ qtp1081769770-88:516378 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1373 | 2015-12-22 09:56:38 [ qtp1081769770-88:516391 ] - [ INFO ] Topology Graph constructed, used 16 ms. 1374 | 2015-12-22 09:56:38 [ qtp1081769770-88:516392 ] - [ INFO ] Topology discovery finished, used 81717 ms. 1375 | 2015-12-22 09:56:38 [ qtp1081769770-89:516422 ] - [ INFO ] From PB records found 154 links, used 77477 ms. 1376 | 2015-12-22 09:56:38 [ qtp1081769770-89:516422 ] - [ INFO ] Start to construct topology graph. 1377 | 2015-12-22 09:56:38 [ qtp1081769770-89:516425 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1378 | 2015-12-22 09:56:38 [ qtp1081769770-89:516427 ] - [ INFO ] Topology Graph constructed, used 5 ms. 1379 | 2015-12-22 09:56:38 [ qtp1081769770-89:516428 ] - [ INFO ] Topology discovery finished, used 81459 ms. 1380 | 2015-12-22 09:56:38 [ qtp1081769770-92:516485 ] - [ INFO ] From PB records found 152 links, used 76457 ms. 1381 | 2015-12-22 09:56:38 [ qtp1081769770-92:516486 ] - [ INFO ] Start to construct topology graph. 1382 | 2015-12-22 09:56:38 [ qtp1081769770-92:516488 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1383 | 2015-12-22 09:56:38 [ qtp1081769770-92:516489 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1384 | 2015-12-22 09:56:38 [ qtp1081769770-92:516489 ] - [ INFO ] Topology discovery finished, used 80285 ms. 1385 | 2015-12-22 09:56:38 [ qtp1081769770-87:516544 ] - [ INFO ] From PB records found 154 links, used 77620 ms. 1386 | 2015-12-22 09:56:38 [ qtp1081769770-87:516544 ] - [ INFO ] Start to construct topology graph. 1387 | 2015-12-22 09:56:38 [ qtp1081769770-87:516547 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1388 | 2015-12-22 09:56:38 [ qtp1081769770-87:516547 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1389 | 2015-12-22 09:56:38 [ qtp1081769770-87:516547 ] - [ INFO ] Topology discovery finished, used 81285 ms. 1390 | 2015-12-22 09:56:38 [ qtp1081769770-90:516597 ] - [ INFO ] From PB records found 154 links, used 76767 ms. 1391 | 2015-12-22 09:56:38 [ qtp1081769770-90:516598 ] - [ INFO ] Start to construct topology graph. 1392 | 2015-12-22 09:56:38 [ qtp1081769770-90:516600 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1393 | 2015-12-22 09:56:38 [ qtp1081769770-90:516601 ] - [ INFO ] Topology Graph constructed, used 3 ms. 1394 | 2015-12-22 09:56:38 [ qtp1081769770-90:516601 ] - [ INFO ] Topology discovery finished, used 81030 ms. 1395 | 2015-12-22 09:58:11 [ qtp1081769770-52:609567 ] - [ INFO ] Start to topology discovery. 1396 | 2015-12-22 09:58:11 [ qtp1081769770-52:609568 ] - [ INFO ] Start to query Logmet. 1397 | 2015-12-22 09:58:11 [ qtp1081769770-52:609569 ] - [ INFO ] Query Logmet for PB records whose timestamp is greater than 1450778231434. 1398 | 2015-12-22 09:58:11 [ qtp1081769770-52:610132 ] - [ INFO ] Retrieved PB records: 172, used 564 ms. 1399 | 2015-12-22 09:58:11 [ qtp1081769770-52:610133 ] - [ INFO ] Start to process PB records. 1400 | 2015-12-22 09:58:12 [ qtp1081769770-52:610683 ] - [ INFO ] From PB records found 54 links, used 550 ms. 1401 | 2015-12-22 09:58:12 [ qtp1081769770-52:610684 ] - [ INFO ] Start to construct topology graph. 1402 | 2015-12-22 09:58:12 [ qtp1081769770-52:610685 ] - [ INFO ] Constructed graph with 12 vertice and 11 edges 1403 | 2015-12-22 09:58:12 [ qtp1081769770-52:610685 ] - [ INFO ] Topology Graph constructed, used 1 ms. 1404 | 2015-12-22 09:58:12 [ qtp1081769770-52:610685 ] - [ INFO ] Topology discovery finished, used 1118 ms. 1405 | --------------------------------------------------------------------------------