diff options
| author | 彭宣正 <[email protected]> | 2020-12-14 17:24:58 +0800 |
|---|---|---|
| committer | 彭宣正 <[email protected]> | 2021-02-01 16:37:13 +0800 |
| commit | d4cc6cf842ef781e85c486b63cac9c8464472c97 (patch) | |
| tree | 97bfeeed5f8df70dc0492fba3571b3ea76398ea4 /example/performance | |
| parent | 8e242a16957bf9c6f84bd9bde45308052178e487 (diff) | |
✨feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放
Diffstat (limited to 'example/performance')
71 files changed, 0 insertions, 11882 deletions
diff --git a/example/performance/.fold b/example/performance/.fold deleted file mode 100644 index eeb7506d..00000000 --- a/example/performance/.fold +++ /dev/null @@ -1 +0,0 @@ -Unrecognized line: failed to open .data: No such file or directory at /usr/local/src/FlameGraph/stackcollapse-perf.pl line 339, <> line 1. diff --git a/example/performance/.svg b/example/performance/.svg deleted file mode 100644 index b249988b..00000000 --- a/example/performance/.svg +++ /dev/null @@ -1,384 +0,0 @@ -<?xml version="1.0" standalone="no"?> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" width="1200" height="102" onload="init(evt)" viewBox="0 0 1200 102" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> -<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> -<!-- NOTES: --> -<defs> - <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > - <stop stop-color="#eeeeee" offset="5%" /> - <stop stop-color="#eeeeb0" offset="95%" /> - </linearGradient> -</defs> -<style type="text/css"> - text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } - #search, #ignorecase { opacity:0.1; cursor:pointer; } - #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } - #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } - #title { text-anchor:middle; font-size:17px} - #unzoom { cursor:pointer; } - #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } - .hide { display:none; } - .parent { opacity:0.5; } -</style> -<script type="text/ecmascript"> -<![CDATA[ - "use strict"; - var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; - function init(evt) { - details = document.getElementById("details").firstChild; - searchbtn = document.getElementById("search"); - ignorecaseBtn = document.getElementById("ignorecase"); - unzoombtn = document.getElementById("unzoom"); - matchedtxt = document.getElementById("matched"); - svg = document.getElementsByTagName("svg")[0]; - searching = 0; - currentSearchTerm = null; - } - - window.addEventListener("click", function(e) { - var target = find_group(e.target); - if (target) { - if (target.nodeName == "a") { - if (e.ctrlKey === false) return; - e.preventDefault(); - } - if (target.classList.contains("parent")) unzoom(); - zoom(target); - } - else if (e.target.id == "unzoom") unzoom(); - else if (e.target.id == "search") search_prompt(); - else if (e.target.id == "ignorecase") toggle_ignorecase(); - }, false) - - // mouse-over for info - // show - window.addEventListener("mouseover", function(e) { - var target = find_group(e.target); - if (target) details.nodeValue = "Function: " + g_to_text(target); - }, false) - - // clear - window.addEventListener("mouseout", function(e) { - var target = find_group(e.target); - if (target) details.nodeValue = ' '; - }, false) - - // ctrl-F for search - window.addEventListener("keydown",function (e) { - if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { - e.preventDefault(); - search_prompt(); - } - }, false) - - // ctrl-I to toggle case-sensitive search - window.addEventListener("keydown",function (e) { - if (e.ctrlKey && e.keyCode === 73) { - e.preventDefault(); - toggle_ignorecase(); - } - }, false) - - // functions - function find_child(node, selector) { - var children = node.querySelectorAll(selector); - if (children.length) return children[0]; - return; - } - function find_group(node) { - var parent = node.parentElement; - if (!parent) return; - if (parent.id == "frames") return node; - return find_group(parent); - } - function orig_save(e, attr, val) { - if (e.attributes["_orig_" + attr] != undefined) return; - if (e.attributes[attr] == undefined) return; - if (val == undefined) val = e.attributes[attr].value; - e.setAttribute("_orig_" + attr, val); - } - function orig_load(e, attr) { - if (e.attributes["_orig_"+attr] == undefined) return; - e.attributes[attr].value = e.attributes["_orig_" + attr].value; - e.removeAttribute("_orig_"+attr); - } - function g_to_text(e) { - var text = find_child(e, "title").firstChild.nodeValue; - return (text) - } - function g_to_func(e) { - var func = g_to_text(e); - // if there's any manipulation we want to do to the function - // name before it's searched, do it here before returning. - return (func); - } - function update_text(e) { - var r = find_child(e, "rect"); - var t = find_child(e, "text"); - var w = parseFloat(r.attributes.width.value) -3; - var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); - t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; - - // Smaller than this size won't fit anything - if (w < 2 * 12 * 0.59) { - t.textContent = ""; - return; - } - - t.textContent = txt; - // Fit in full text width - if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) - return; - - for (var x = txt.length - 2; x > 0; x--) { - if (t.getSubStringLength(0, x + 2) <= w) { - t.textContent = txt.substring(0, x) + ".."; - return; - } - } - t.textContent = ""; - } - - // zoom - function zoom_reset(e) { - if (e.attributes != undefined) { - orig_load(e, "x"); - orig_load(e, "width"); - } - if (e.childNodes == undefined) return; - for (var i = 0, c = e.childNodes; i < c.length; i++) { - zoom_reset(c[i]); - } - } - function zoom_child(e, x, ratio) { - if (e.attributes != undefined) { - if (e.attributes.x != undefined) { - orig_save(e, "x"); - e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; - if (e.tagName == "text") - e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; - } - if (e.attributes.width != undefined) { - orig_save(e, "width"); - e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; - } - } - - if (e.childNodes == undefined) return; - for (var i = 0, c = e.childNodes; i < c.length; i++) { - zoom_child(c[i], x - 10, ratio); - } - } - function zoom_parent(e) { - if (e.attributes) { - if (e.attributes.x != undefined) { - orig_save(e, "x"); - e.attributes.x.value = 10; - } - if (e.attributes.width != undefined) { - orig_save(e, "width"); - e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); - } - } - if (e.childNodes == undefined) return; - for (var i = 0, c = e.childNodes; i < c.length; i++) { - zoom_parent(c[i]); - } - } - function zoom(node) { - var attr = find_child(node, "rect").attributes; - var width = parseFloat(attr.width.value); - var xmin = parseFloat(attr.x.value); - var xmax = parseFloat(xmin + width); - var ymin = parseFloat(attr.y.value); - var ratio = (svg.width.baseVal.value - 2 * 10) / width; - - // XXX: Workaround for JavaScript float issues (fix me) - var fudge = 0.0001; - - unzoombtn.classList.remove("hide"); - - var el = document.getElementById("frames").children; - for (var i = 0; i < el.length; i++) { - var e = el[i]; - var a = find_child(e, "rect").attributes; - var ex = parseFloat(a.x.value); - var ew = parseFloat(a.width.value); - var upstack; - // Is it an ancestor - if (0 == 0) { - upstack = parseFloat(a.y.value) > ymin; - } else { - upstack = parseFloat(a.y.value) < ymin; - } - if (upstack) { - // Direct ancestor - if (ex <= xmin && (ex+ew+fudge) >= xmax) { - e.classList.add("parent"); - zoom_parent(e); - update_text(e); - } - // not in current path - else - e.classList.add("hide"); - } - // Children maybe - else { - // no common path - if (ex < xmin || ex + fudge >= xmax) { - e.classList.add("hide"); - } - else { - zoom_child(e, xmin, ratio); - update_text(e); - } - } - } - search(); - } - function unzoom() { - unzoombtn.classList.add("hide"); - var el = document.getElementById("frames").children; - for(var i = 0; i < el.length; i++) { - el[i].classList.remove("parent"); - el[i].classList.remove("hide"); - zoom_reset(el[i]); - update_text(el[i]); - } - search(); - } - - // search - function toggle_ignorecase() { - ignorecase = !ignorecase; - if (ignorecase) { - ignorecaseBtn.classList.add("show"); - } else { - ignorecaseBtn.classList.remove("show"); - } - reset_search(); - search(); - } - function reset_search() { - var el = document.querySelectorAll("#frames rect"); - for (var i = 0; i < el.length; i++) { - orig_load(el[i], "fill") - } - } - function search_prompt() { - if (!searching) { - var term = prompt("Enter a search term (regexp " + - "allowed, eg: ^ext4_)" - + (ignorecase ? ", ignoring case" : "") - + "\nPress Ctrl-i to toggle case sensitivity", ""); - if (term != null) { - currentSearchTerm = term; - search(); - } - } else { - reset_search(); - searching = 0; - currentSearchTerm = null; - searchbtn.classList.remove("show"); - searchbtn.firstChild.nodeValue = "Search" - matchedtxt.classList.add("hide"); - matchedtxt.firstChild.nodeValue = "" - } - } - function search(term) { - if (currentSearchTerm === null) return; - var term = currentSearchTerm; - - var re = new RegExp(term, ignorecase ? 'i' : ''); - var el = document.getElementById("frames").children; - var matches = new Object(); - var maxwidth = 0; - for (var i = 0; i < el.length; i++) { - var e = el[i]; - var func = g_to_func(e); - var rect = find_child(e, "rect"); - if (func == null || rect == null) - continue; - - // Save max width. Only works as we have a root frame - var w = parseFloat(rect.attributes.width.value); - if (w > maxwidth) - maxwidth = w; - - if (func.match(re)) { - // highlight - var x = parseFloat(rect.attributes.x.value); - orig_save(rect, "fill"); - rect.attributes.fill.value = "rgb(230,0,230)"; - - // remember matches - if (matches[x] == undefined) { - matches[x] = w; - } else { - if (w > matches[x]) { - // overwrite with parent - matches[x] = w; - } - } - searching = 1; - } - } - if (!searching) - return; - - searchbtn.classList.add("show"); - searchbtn.firstChild.nodeValue = "Reset Search"; - - // calculate percent matched, excluding vertical overlap - var count = 0; - var lastx = -1; - var lastw = 0; - var keys = Array(); - for (k in matches) { - if (matches.hasOwnProperty(k)) - keys.push(k); - } - // sort the matched frames by their x location - // ascending, then width descending - keys.sort(function(a, b){ - return a - b; - }); - // Step through frames saving only the biggest bottom-up frames - // thanks to the sort order. This relies on the tree property - // where children are always smaller than their parents. - var fudge = 0.0001; // JavaScript floating point - for (var k in keys) { - var x = parseFloat(keys[k]); - var w = matches[keys[k]]; - if (x >= lastx + lastw - fudge) { - count += w; - lastx = x; - lastw = w; - } - } - // display matched percent - matchedtxt.classList.remove("hide"); - var pct = 100 * count / maxwidth; - if (pct != 100) pct = pct.toFixed(1) - matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; - } -]]> -</script> -<rect x="0.0" y="0" width="1200.0" height="102.0" fill="url(#background)" /> -<text id="title" x="600.00" y="24" >Flame Graph</text> -<text id="details" x="10.00" y="85" > </text> -<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> -<text id="search" x="1090.00" y="24" >Search</text> -<text id="ignorecase" x="1174.00" y="24" >ic</text> -<text id="matched" x="1090.00" y="85" > </text> -<g id="frames"> -<g > -<title>all (1 samples, 100%)</title><rect x="10.0" y="53" width="1180.0" height="15.0" fill="rgb(223,99,37)" rx="2" ry="2" /> -<text x="13.00" y="63.5" ></text> -</g> -<g > -<title>Unrecognized line: failed to open .data: No such file or directory at /usr/local/src/FlameGraph/stackcollapse-perf.pl line 339, <> line (1 samples, 100.00%)</title><rect x="10.0" y="37" width="1180.0" height="15.0" fill="rgb(219,16,15)" rx="2" ry="2" /> -<text x="13.00" y="47.5" >Unrecognized line: failed to open .data: No such file or directory at /usr/local/src/FlameGraph/stackcollapse-perf.pl line 339, <> line</text> -</g> -</g> -</svg> diff --git a/example/performance/.unfold b/example/performance/.unfold deleted file mode 100644 index ead5e5d7..00000000 --- a/example/performance/.unfold +++ /dev/null @@ -1 +0,0 @@ -failed to open .data: No such file or directory diff --git a/example/performance/17473.txt b/example/performance/17473.txt deleted file mode 100644 index d0a6c125..00000000 --- a/example/performance/17473.txt +++ /dev/null @@ -1 +0,0 @@ -�ٶ�����(��ȡ�룺01di)��https://pan.baidu.com/s/1y3th8eLBkVocS4GMPkT0oA
\ No newline at end of file diff --git a/example/performance/HosClientPerformance b/example/performance/HosClientPerformance Binary files differdeleted file mode 100755 index 4cbb80bf..00000000 --- a/example/performance/HosClientPerformance +++ /dev/null diff --git a/example/performance/build/CMakeCache.txt b/example/performance/build/CMakeCache.txt deleted file mode 100644 index 78c2f3a9..00000000 --- a/example/performance/build/CMakeCache.txt +++ /dev/null @@ -1,373 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/pxz/project/hos_client_cpp_module/example/performance/build -# It was generated by CMake: /usr/bin/cmake3 -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -// set asan type chosen by the user, using OFF as default -ASAN_OPTION:STRING=OFF - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O2 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O2 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=HosClientPerformance - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Value Computed by CMake -HosClientPerformance_BINARY_DIR:STATIC=/home/pxz/project/hos_client_cpp_module/example/performance/build - -//Value Computed by CMake -HosClientPerformance_SOURCE_DIR:STATIC=/home/pxz/project/hos_client_cpp_module/example/performance - - -######################## -# INTERNAL cache entries -######################## - -//STRINGS property for variable: ASAN_OPTION -ASAN_OPTION-STRINGS:INTERNAL=OFF;ADDRESS;THREAD -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/pxz/project/hos_client_cpp_module/example/performance/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=17 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake3 -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack3 -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest3 -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake3 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/pxz/project/hos_client_cpp_module/example/performance -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake3 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 - diff --git a/example/performance/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake b/example/performance/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake deleted file mode 100644 index f9ee1d18..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake +++ /dev/null @@ -1,76 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "4.8.5") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_C_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_LIBRARY_ARCHITECTURE "") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/opt/MESA/lib64;/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/example/performance/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake b/example/performance/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake deleted file mode 100644 index cc31f8ab..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,88 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "4.8.5") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_template_template_parameters") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_template_template_parameters") -set(CMAKE_CXX17_COMPILE_FEATURES "") -set(CMAKE_CXX20_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/include/c++/4.8.5;/usr/include/c++/4.8.5/x86_64-redhat-linux;/usr/include/c++/4.8.5/backward;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/opt/MESA/lib64;/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin b/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin Binary files differdeleted file mode 100755 index 5f36eb83..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin +++ /dev/null diff --git a/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin b/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin Binary files differdeleted file mode 100755 index b9fd148e..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin +++ /dev/null diff --git a/example/performance/build/CMakeFiles/3.17.3/CMakeSystem.cmake b/example/performance/build/CMakeFiles/3.17.3/CMakeSystem.cmake deleted file mode 100644 index eae8f4aa..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-3.10.0-693.el7.x86_64") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "3.10.0-693.el7.x86_64") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-3.10.0-693.el7.x86_64") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "3.10.0-693.el7.x86_64") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c b/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index d884b509..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,671 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if !defined(__STDC__) -# if (defined(_MSC_VER) && !defined(__clang__)) \ - || (defined(__ibmxl__) || defined(__IBMC__)) -# define C_DIALECT "90" -# else -# define C_DIALECT -# endif -#elif __STDC_VERSION__ >= 201000L -# define C_DIALECT "11" -#elif __STDC_VERSION__ >= 199901L -# define C_DIALECT "99" -#else -# define C_DIALECT "90" -#endif -const char* info_language_dialect_default = - "INFO" ":" "dialect_default[" C_DIALECT "]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/a.out b/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/a.out Binary files differdeleted file mode 100755 index 57be4c60..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/a.out +++ /dev/null diff --git a/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 69cfdba6..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,660 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_dialect_default = "INFO" ":" "dialect_default[" -#if CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} diff --git a/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out b/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out Binary files differdeleted file mode 100755 index c6d681ac..00000000 --- a/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out +++ /dev/null diff --git a/example/performance/build/CMakeFiles/CMakeDirectoryInformation.cmake b/example/performance/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 502e32b5..00000000 --- a/example/performance/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/pxz/project/hos_client_cpp_module/example/performance") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/pxz/project/hos_client_cpp_module/example/performance/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/example/performance/build/CMakeFiles/CMakeOutput.log b/example/performance/build/CMakeFiles/CMakeOutput.log deleted file mode 100644 index 07fe6e12..00000000 --- a/example/performance/build/CMakeFiles/CMakeOutput.log +++ /dev/null @@ -1,500 +0,0 @@ -The system is: Linux - 3.10.0-693.el7.x86_64 - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/cc -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is GNU, found in "/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/3.17.3/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/c++ -Build flags: ;-Wall -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is GNU, found in "/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out" - -Determining if the C compiler works passed with the following output: -Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_1aa1e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_1aa1e.dir/build.make CMakeFiles/cmTC_1aa1e.dir/build -gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_1aa1e.dir/testCCompiler.c.o -/usr/bin/cc -o CMakeFiles/cmTC_1aa1e.dir/testCCompiler.c.o -c /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_1aa1e -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_1aa1e.dir/link.txt --verbose=1 -/usr/bin/cc CMakeFiles/cmTC_1aa1e.dir/testCCompiler.c.o -o cmTC_1aa1e -gmake[1]: Leaving directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' - - - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_95374/fast && /usr/bin/gmake -f CMakeFiles/cmTC_95374.dir/build.make CMakeFiles/cmTC_95374.dir/build -gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -/usr/bin/cc -v -o CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake3/Modules/CMakeCCompilerABI.c -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1 -quiet -v /usr/share/cmake3/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccGjD17O.s -GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include" -#include "..." search starts here: -#include <...> search starts here: - /opt/mrzcpd/include - /opt/MESA/include - /opt/MESA/include/MESA/ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include - /usr/local/include - /usr/include -End of search list. -GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: edd9a53947039836c859e437e8c9af72 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o /tmp/ccGjD17O.s -GNU assembler version 2.27 (x86_64-redhat-linux) using BFD version version 2.27-43.base.el7_8.1 -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' -Linking C executable cmTC_95374 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_95374.dir/link.txt --verbose=1 -/usr/bin/cc -v CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -o cmTC_95374 -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_95374' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_95374 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/opt/MESA/lib/../lib64 -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o -gmake[1]: Leaving directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/opt/mrzcpd/include] - add: [/opt/MESA/include] - add: [/opt/MESA/include/MESA/] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - add: [/usr/local/include] - add: [/usr/include] - end of search list found - collapse include dir [/opt/mrzcpd/include] ==> [/opt/mrzcpd/include] - collapse include dir [/opt/MESA/include] ==> [/opt/MESA/include] - collapse include dir [/opt/MESA/include/MESA/] ==> [/opt/MESA/include/MESA] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_95374/fast && /usr/bin/gmake -f CMakeFiles/cmTC_95374.dir/build.make CMakeFiles/cmTC_95374.dir/build] - ignore line: [gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake3/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1 -quiet -v /usr/share/cmake3/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccGjD17O.s] - ignore line: [GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /opt/mrzcpd/include] - ignore line: [ /opt/MESA/include] - ignore line: [ /opt/MESA/include/MESA/] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: edd9a53947039836c859e437e8c9af72] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o /tmp/ccGjD17O.s] - ignore line: [GNU assembler version 2.27 (x86_64-redhat-linux) using BFD version version 2.27-43.base.el7_8.1] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [Linking C executable cmTC_95374] - ignore line: [/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_95374.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -o cmTC_95374 ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_95374' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_95374 /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/opt/MESA/lib/../lib64 -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] - arg [/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2] ==> ignore - arg [--build-id] ==> ignore - arg [--no-add-needed] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_95374] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o] ==> ignore - arg [-L/opt/MESA/lib/../lib64] ==> dir [/opt/MESA/lib/../lib64] - arg [-L/usr/local/lib/../lib64] ==> dir [/usr/local/lib/../lib64] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] - arg [-L/opt/mrzcpd/lib] ==> dir [/opt/mrzcpd/lib] - arg [-L/opt/MESA/lib] ==> dir [/opt/MESA/lib] - arg [-L/usr/local/lib] ==> dir [/usr/local/lib] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] - arg [CMakeFiles/cmTC_95374.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] ==> ignore - collapse library dir [/opt/MESA/lib/../lib64] ==> [/opt/MESA/lib64] - collapse library dir [/usr/local/lib/../lib64] ==> [/usr/local/lib64] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> [/usr/lib64] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] - collapse library dir [/opt/mrzcpd/lib] ==> [/opt/mrzcpd/lib] - collapse library dir [/opt/MESA/lib] ==> [/opt/MESA/lib] - collapse library dir [/usr/local/lib] ==> [/usr/local/lib] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit dirs: [/opt/MESA/lib64;/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib] - implicit fwks: [] - - -Determining if the CXX compiler works passed with the following output: -Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_d210c/fast && /usr/bin/gmake -f CMakeFiles/cmTC_d210c.dir/build.make CMakeFiles/cmTC_d210c.dir/build -gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_d210c.dir/testCXXCompiler.cxx.o -/usr/bin/c++ -Wall -o CMakeFiles/cmTC_d210c.dir/testCXXCompiler.cxx.o -c /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_d210c -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_d210c.dir/link.txt --verbose=1 -/usr/bin/c++ -Wall CMakeFiles/cmTC_d210c.dir/testCXXCompiler.cxx.o -o cmTC_d210c -gmake[1]: Leaving directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' - - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_6562e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_6562e.dir/build.make CMakeFiles/cmTC_6562e.dir/build -gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/c++ -Wall -v -o CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -Wall -version -o /tmp/cculgqT1.s -GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include" -#include "..." search starts here: -#include <...> search starts here: - /opt/mrzcpd/include - /opt/MESA/include - /opt/MESA/include/MESA/ - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5 - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward - /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include - /usr/local/include - /usr/include -End of search list. -GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux) - compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39), GMP version 6.0.0, MPFR version 3.1.1, MPC version 1.0.1 -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 0b3d22846f8ec00d42314b8d2d71514a -COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cculgqT1.s -GNU assembler version 2.27 (x86_64-redhat-linux) using BFD version version 2.27-43.base.el7_8.1 -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -Linking CXX executable cmTC_6562e -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_6562e.dir/link.txt --verbose=1 -/usr/bin/c++ -Wall -v CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6562e -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) -COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/ -LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'cmTC_6562e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_6562e /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/opt/MESA/lib/../lib64 -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o -gmake[1]: Leaving directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/opt/mrzcpd/include] - add: [/opt/MESA/include] - add: [/opt/MESA/include/MESA/] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] - add: [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - add: [/usr/local/include] - add: [/usr/include] - end of search list found - collapse include dir [/opt/mrzcpd/include] ==> [/opt/mrzcpd/include] - collapse include dir [/opt/MESA/include] ==> [/opt/MESA/include] - collapse include dir [/opt/MESA/include/MESA/] ==> [/opt/MESA/include/MESA] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] ==> [/usr/include/c++/4.8.5] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] ==> [/usr/include/c++/4.8.5/x86_64-redhat-linux] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] ==> [/usr/include/c++/4.8.5/backward] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/opt/mrzcpd/include;/opt/MESA/include;/opt/MESA/include/MESA;/usr/include/c++/4.8.5;/usr/include/c++/4.8.5/x86_64-redhat-linux;/usr/include/c++/4.8.5/backward;/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include;/usr/local/include;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_6562e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_6562e.dir/build.make CMakeFiles/cmTC_6562e.dir/build] - ignore line: [gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -Wall -v -o CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -Wall -version -o /tmp/cculgqT1.s] - ignore line: [GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../x86_64-redhat-linux/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /opt/mrzcpd/include] - ignore line: [ /opt/MESA/include] - ignore line: [ /opt/MESA/include/MESA/] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/x86_64-redhat-linux] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../include/c++/4.8.5/backward] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/4.8.5/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++ (GCC) version 4.8.5 20150623 (Red Hat 4.8.5-39) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 4.8.5 20150623 (Red Hat 4.8.5-39) GMP version 6.0.0 MPFR version 3.1.1 MPC version 1.0.1] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 0b3d22846f8ec00d42314b8d2d71514a] - ignore line: [COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cculgqT1.s] - ignore line: [GNU assembler version 2.27 (x86_64-redhat-linux) using BFD version version 2.27-43.base.el7_8.1] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [Linking CXX executable cmTC_6562e] - ignore line: [/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_6562e.dir/link.txt --verbose=1] - ignore line: [/usr/bin/c++ -Wall -v CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6562e ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c c++ objc obj-c++ java fortran ada go lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux] - ignore line: [Thread model: posix] - ignore line: [gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/opt/MESA/lib/../lib64/:/usr/local/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/opt/mrzcpd/lib/:/opt/MESA/lib/:/usr/local/lib/:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-Wall' '-v' '-o' 'cmTC_6562e' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2 --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_6562e /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o -L/opt/MESA/lib/../lib64 -L/usr/local/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/opt/mrzcpd/lib -L/opt/MESA/lib -L/usr/local/lib -L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../.. CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] - arg [/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/collect2] ==> ignore - arg [--build-id] ==> ignore - arg [--no-add-needed] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_6562e] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o] ==> ignore - arg [-L/opt/MESA/lib/../lib64] ==> dir [/opt/MESA/lib/../lib64] - arg [-L/usr/local/lib/../lib64] ==> dir [/usr/local/lib/../lib64] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] - arg [-L/opt/mrzcpd/lib] ==> dir [/opt/mrzcpd/lib] - arg [-L/opt/MESA/lib] ==> dir [/opt/MESA/lib] - arg [-L/usr/local/lib] ==> dir [/usr/local/lib] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] - arg [CMakeFiles/cmTC_6562e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtend.o] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crtn.o] ==> ignore - collapse library dir [/opt/MESA/lib/../lib64] ==> [/opt/MESA/lib64] - collapse library dir [/usr/local/lib/../lib64] ==> [/usr/local/lib64] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] ==> [/usr/lib/gcc/x86_64-redhat-linux/4.8.5] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64] ==> [/usr/lib64] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] - collapse library dir [/opt/mrzcpd/lib] ==> [/opt/mrzcpd/lib] - collapse library dir [/opt/MESA/lib] ==> [/opt/MESA/lib] - collapse library dir [/usr/local/lib] ==> [/usr/local/lib] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit dirs: [/opt/MESA/lib64;/usr/local/lib64;/usr/lib/gcc/x86_64-redhat-linux/4.8.5;/usr/lib64;/lib64;/opt/mrzcpd/lib;/opt/MESA/lib;/usr/local/lib;/usr/lib] - implicit fwks: [] - - - - -Detecting CXX [-std=c++1y] compiler features compiled with the following output: -Change Dir: /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/gmake cmTC_90177/fast && /usr/bin/gmake -f CMakeFiles/cmTC_90177.dir/build.make CMakeFiles/cmTC_90177.dir/build -gmake[1]: Entering directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_90177.dir/feature_tests.cxx.o -/usr/bin/c++ -Wall -std=c++1y -o CMakeFiles/cmTC_90177.dir/feature_tests.cxx.o -c /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_90177 -/usr/bin/cmake3 -E cmake_link_script CMakeFiles/cmTC_90177.dir/link.txt --verbose=1 -/usr/bin/c++ -Wall CMakeFiles/cmTC_90177.dir/feature_tests.cxx.o -o cmTC_90177 -gmake[1]: Leaving directory `/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/CMakeTmp' - - - - Feature record: CXX_FEATURE:1cxx_template_template_parameters - Feature record: CXX_FEATURE:1cxx_alias_templates - Feature record: CXX_FEATURE:1cxx_alignas - Feature record: CXX_FEATURE:1cxx_alignof - Feature record: CXX_FEATURE:1cxx_attributes - Feature record: CXX_FEATURE:1cxx_auto_type - Feature record: CXX_FEATURE:1cxx_constexpr - Feature record: CXX_FEATURE:1cxx_decltype - Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types - Feature record: CXX_FEATURE:1cxx_default_function_template_args - Feature record: CXX_FEATURE:1cxx_defaulted_functions - Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers - Feature record: CXX_FEATURE:1cxx_delegating_constructors - Feature record: CXX_FEATURE:1cxx_deleted_functions - Feature record: CXX_FEATURE:1cxx_enum_forward_declarations - Feature record: CXX_FEATURE:1cxx_explicit_conversions - Feature record: CXX_FEATURE:1cxx_extended_friend_declarations - Feature record: CXX_FEATURE:1cxx_extern_templates - Feature record: CXX_FEATURE:1cxx_final - Feature record: CXX_FEATURE:1cxx_func_identifier - Feature record: CXX_FEATURE:1cxx_generalized_initializers - Feature record: CXX_FEATURE:1cxx_inheriting_constructors - Feature record: CXX_FEATURE:1cxx_inline_namespaces - Feature record: CXX_FEATURE:1cxx_lambdas - Feature record: CXX_FEATURE:1cxx_local_type_template_args - Feature record: CXX_FEATURE:1cxx_long_long_type - Feature record: CXX_FEATURE:1cxx_noexcept - Feature record: CXX_FEATURE:1cxx_nonstatic_member_init - Feature record: CXX_FEATURE:1cxx_nullptr - Feature record: CXX_FEATURE:1cxx_override - Feature record: CXX_FEATURE:1cxx_range_for - Feature record: CXX_FEATURE:1cxx_raw_string_literals - Feature record: CXX_FEATURE:1cxx_reference_qualified_functions - Feature record: CXX_FEATURE:1cxx_right_angle_brackets - Feature record: CXX_FEATURE:1cxx_rvalue_references - Feature record: CXX_FEATURE:1cxx_sizeof_member - Feature record: CXX_FEATURE:1cxx_static_assert - Feature record: CXX_FEATURE:1cxx_strong_enums - Feature record: CXX_FEATURE:1cxx_thread_local - Feature record: CXX_FEATURE:1cxx_trailing_return_types - Feature record: CXX_FEATURE:1cxx_unicode_literals - Feature record: CXX_FEATURE:1cxx_uniform_initialization - Feature record: CXX_FEATURE:1cxx_unrestricted_unions - Feature record: CXX_FEATURE:1cxx_user_literals - Feature record: CXX_FEATURE:1cxx_variadic_macros - Feature record: CXX_FEATURE:1cxx_variadic_templates - Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers - Feature record: CXX_FEATURE:0cxx_attribute_deprecated - Feature record: CXX_FEATURE:0cxx_binary_literals - Feature record: CXX_FEATURE:0cxx_contextual_conversions - Feature record: CXX_FEATURE:0cxx_decltype_auto - Feature record: CXX_FEATURE:0cxx_digit_separators - Feature record: CXX_FEATURE:0cxx_generic_lambdas - Feature record: CXX_FEATURE:0cxx_lambda_init_captures - Feature record: CXX_FEATURE:0cxx_relaxed_constexpr - Feature record: CXX_FEATURE:0cxx_return_type_deduction - Feature record: CXX_FEATURE:0cxx_variable_templates diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/CXX.includecache b/example/performance/build/CMakeFiles/HosClientPerformance.dir/CXX.includecache deleted file mode 100644 index f3042667..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/CXX.includecache +++ /dev/null @@ -1,34 +0,0 @@ -#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) - -#IncludeRegexScan: ^.*$ - -#IncludeRegexComplain: ^$ - -#IncludeRegexTransform: - -/home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp -stdio.h -- -stdlib.h -- -unistd.h -- -string.h -- -time.h -- -pthread.h -- -dirent.h -- -sys/stat.h -- -math.h -- -netinet/in.h -- -../../src/hos_client.h -/home/pxz/project/hos_client_cpp_module/src/hos_client.h - -/home/pxz/project/hos_client_cpp_module/src/hos_client.h - diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/DependInfo.cmake b/example/performance/build/CMakeFiles/HosClientPerformance.dir/DependInfo.cmake deleted file mode 100644 index f78fa1ec..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/DependInfo.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - "CXX" - ) -# The set of files for implicit dependencies of each language: -set(CMAKE_DEPENDS_CHECK_CXX - "/home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp" "/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o" - ) -set(CMAKE_CXX_COMPILER_ID "GNU") - -# The include file search paths: -set(CMAKE_CXX_TARGET_INCLUDE_PATH - ) - -# Targets to which this target links. -set(CMAKE_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o b/example/performance/build/CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o Binary files differdeleted file mode 100644 index debdefa2..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o +++ /dev/null diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/build.make b/example/performance/build/CMakeFiles/HosClientPerformance.dir/build.make deleted file mode 100644 index 5b7c9066..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/build.make +++ /dev/null @@ -1,118 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Disable VCS-based implicit rules. -% : %,v - - -# Disable VCS-based implicit rules. -% : RCS/% - - -# Disable VCS-based implicit rules. -% : RCS/%,v - - -# Disable VCS-based implicit rules. -% : SCCS/s.% - - -# Disable VCS-based implicit rules. -% : s.% - - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake3 - -# The command to remove a file. -RM = /usr/bin/cmake3 -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/pxz/project/hos_client_cpp_module/example/performance - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/pxz/project/hos_client_cpp_module/example/performance/build - -# Include any dependencies generated for this target. -include CMakeFiles/HosClientPerformance.dir/depend.make - -# Include the progress variables for this target. -include CMakeFiles/HosClientPerformance.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/HosClientPerformance.dir/flags.make - -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o: CMakeFiles/HosClientPerformance.dir/flags.make -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o: ../HosClientPerformance.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o -c /home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp - -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp > CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.i - -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp -o CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.s - -# Object files for target HosClientPerformance -HosClientPerformance_OBJECTS = \ -"CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o" - -# External object files for target HosClientPerformance -HosClientPerformance_EXTERNAL_OBJECTS = - -HosClientPerformance: CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o -HosClientPerformance: CMakeFiles/HosClientPerformance.dir/build.make -HosClientPerformance: CMakeFiles/HosClientPerformance.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable HosClientPerformance" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/HosClientPerformance.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/HosClientPerformance.dir/build: HosClientPerformance - -.PHONY : CMakeFiles/HosClientPerformance.dir/build - -CMakeFiles/HosClientPerformance.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/HosClientPerformance.dir/cmake_clean.cmake -.PHONY : CMakeFiles/HosClientPerformance.dir/clean - -CMakeFiles/HosClientPerformance.dir/depend: - cd /home/pxz/project/hos_client_cpp_module/example/performance/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/pxz/project/hos_client_cpp_module/example/performance /home/pxz/project/hos_client_cpp_module/example/performance /home/pxz/project/hos_client_cpp_module/example/performance/build /home/pxz/project/hos_client_cpp_module/example/performance/build /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/HosClientPerformance.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/HosClientPerformance.dir/depend - diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/cmake_clean.cmake b/example/performance/build/CMakeFiles/HosClientPerformance.dir/cmake_clean.cmake deleted file mode 100644 index bbc8e84c..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o" - "HosClientPerformance" - "HosClientPerformance.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/HosClientPerformance.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.internal b/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.internal deleted file mode 100644 index 018ac572..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.internal +++ /dev/null @@ -1,6 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o - /home/pxz/project/hos_client_cpp_module/example/performance/HosClientPerformance.cpp - /home/pxz/project/hos_client_cpp_module/src/hos_client.h diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.make b/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.make deleted file mode 100644 index f63b0d35..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/depend.make +++ /dev/null @@ -1,6 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o: ../HosClientPerformance.cpp -CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o: /home/pxz/project/hos_client_cpp_module/src/hos_client.h - diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/flags.make b/example/performance/build/CMakeFiles/HosClientPerformance.dir/flags.make deleted file mode 100644 index f5e7d32e..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# compile CXX with /usr/bin/c++ -CXX_FLAGS = -Wall -g - -CXX_DEFINES = - -CXX_INCLUDES = - diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/link.txt b/example/performance/build/CMakeFiles/HosClientPerformance.dir/link.txt deleted file mode 100644 index 2f145db2..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -Wall -g CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o -o HosClientPerformance -lhos-client-cpp -lpthread -lhos-client-cpp -lpthread diff --git a/example/performance/build/CMakeFiles/HosClientPerformance.dir/progress.make b/example/performance/build/CMakeFiles/HosClientPerformance.dir/progress.make deleted file mode 100644 index abadeb0c..00000000 --- a/example/performance/build/CMakeFiles/HosClientPerformance.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/example/performance/build/CMakeFiles/Makefile.cmake b/example/performance/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index 80fa1e83..00000000 --- a/example/performance/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,122 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "../CMakeLists.txt" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.17.3/CMakeSystem.cmake" - "CMakeFiles/feature_tests.cxx" - "/usr/share/cmake3/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake3/Modules/CMakeCCompilerABI.c" - "/usr/share/cmake3/Modules/CMakeCInformation.cmake" - "/usr/share/cmake3/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake3/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake3/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake3/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - "/usr/share/cmake3/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake3/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake3/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake3/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake3/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake3/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake3/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake3/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake3/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake3/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake3/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake3/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake3/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake3/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake3/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake3/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake3/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX-FeatureTests.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake3/Modules/Compiler/GNU.cmake" - "/usr/share/cmake3/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake3/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake3/Modules/Internal/CMakeCheckCompilerFlag.cmake" - "/usr/share/cmake3/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake3/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake3/Modules/Platform/Linux.cmake" - "/usr/share/cmake3/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.17.3/CMakeSystem.cmake" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCCompiler.cmake" - "CMakeFiles/3.17.3/CMakeCXXCompiler.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/HosClientPerformance.dir/DependInfo.cmake" - ) diff --git a/example/performance/build/CMakeFiles/Makefile2 b/example/performance/build/CMakeFiles/Makefile2 deleted file mode 100644 index 90dd24cd..00000000 --- a/example/performance/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,126 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Default target executed when no arguments are given to make. -default_target: all - -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Disable VCS-based implicit rules. -% : %,v - - -# Disable VCS-based implicit rules. -% : RCS/% - - -# Disable VCS-based implicit rules. -% : RCS/%,v - - -# Disable VCS-based implicit rules. -% : SCCS/s.% - - -# Disable VCS-based implicit rules. -% : s.% - - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake3 - -# The command to remove a file. -RM = /usr/bin/cmake3 -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/pxz/project/hos_client_cpp_module/example/performance - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/pxz/project/hos_client_cpp_module/example/performance/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/HosClientPerformance.dir/all - -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: - -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/HosClientPerformance.dir/clean - -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/HosClientPerformance.dir - -# All Build rule for target. -CMakeFiles/HosClientPerformance.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles --progress-num=1,2 "Built target HosClientPerformance" -.PHONY : CMakeFiles/HosClientPerformance.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/HosClientPerformance.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/HosClientPerformance.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles 0 -.PHONY : CMakeFiles/HosClientPerformance.dir/rule - -# Convenience name for target. -HosClientPerformance: CMakeFiles/HosClientPerformance.dir/rule - -.PHONY : HosClientPerformance - -# clean rule for target. -CMakeFiles/HosClientPerformance.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/clean -.PHONY : CMakeFiles/HosClientPerformance.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/example/performance/build/CMakeFiles/Progress/2 b/example/performance/build/CMakeFiles/Progress/2 deleted file mode 100644 index 7b4d68d7..00000000 --- a/example/performance/build/CMakeFiles/Progress/2 +++ /dev/null @@ -1 +0,0 @@ -empty
\ No newline at end of file diff --git a/example/performance/build/CMakeFiles/Progress/count.txt b/example/performance/build/CMakeFiles/Progress/count.txt deleted file mode 100644 index 0cfbf088..00000000 --- a/example/performance/build/CMakeFiles/Progress/count.txt +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/example/performance/build/CMakeFiles/TargetDirectories.txt b/example/performance/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index cef80495..00000000 --- a/example/performance/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,3 +0,0 @@ -/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/rebuild_cache.dir -/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/edit_cache.dir -/home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/HosClientPerformance.dir diff --git a/example/performance/build/CMakeFiles/cmake.check_cache b/example/performance/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731..00000000 --- a/example/performance/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/example/performance/build/CMakeFiles/feature_tests.bin b/example/performance/build/CMakeFiles/feature_tests.bin Binary files differdeleted file mode 100755 index 87e201af..00000000 --- a/example/performance/build/CMakeFiles/feature_tests.bin +++ /dev/null diff --git a/example/performance/build/CMakeFiles/feature_tests.cxx b/example/performance/build/CMakeFiles/feature_tests.cxx deleted file mode 100644 index ea528b44..00000000 --- a/example/performance/build/CMakeFiles/feature_tests.cxx +++ /dev/null @@ -1,405 +0,0 @@ - - const char features[] = {"\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus -"1" -#else -"0" -#endif -"cxx_template_template_parameters\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alias_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alignas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_alignof\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_attributes\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_auto_type\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_constexpr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_decltype\n" -"CXX_FEATURE:" -#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_decltype_incomplete_return_types\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_default_function_template_args\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_defaulted_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_defaulted_move_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_delegating_constructors\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_deleted_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_enum_forward_declarations\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_explicit_conversions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_extended_friend_declarations\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_extern_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_final\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_func_identifier\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_generalized_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_inheriting_constructors\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_inline_namespaces\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_lambdas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_local_type_template_args\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_long_long_type\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_noexcept\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_nonstatic_member_init\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_nullptr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_override\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_range_for\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_raw_string_literals\n" -"CXX_FEATURE:" -#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_reference_qualified_functions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_right_angle_brackets\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_rvalue_references\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_sizeof_member\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_static_assert\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_strong_enums\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_thread_local\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_trailing_return_types\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_unicode_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_uniform_initialization\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_unrestricted_unions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L -"1" -#else -"0" -#endif -"cxx_user_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_variadic_macros\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) -"1" -#else -"0" -#endif -"cxx_variadic_templates\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_aggregate_default_initializers\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_attribute_deprecated\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_binary_literals\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_contextual_conversions\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_decltype_auto\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_digit_separators\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_generic_lambdas\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_lambda_init_captures\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_relaxed_constexpr\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L -"1" -#else -"0" -#endif -"cxx_return_type_deduction\n" -"CXX_FEATURE:" -#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L -"1" -#else -"0" -#endif -"cxx_variable_templates\n" - -}; - -int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/example/performance/build/CMakeFiles/progress.marks b/example/performance/build/CMakeFiles/progress.marks deleted file mode 100644 index 0cfbf088..00000000 --- a/example/performance/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/example/performance/build/Makefile b/example/performance/build/Makefile deleted file mode 100644 index 6678ef67..00000000 --- a/example/performance/build/Makefile +++ /dev/null @@ -1,198 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.17 - -# Default target executed when no arguments are given to make. -default_target: all - -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Disable VCS-based implicit rules. -% : %,v - - -# Disable VCS-based implicit rules. -% : RCS/% - - -# Disable VCS-based implicit rules. -% : RCS/%,v - - -# Disable VCS-based implicit rules. -% : SCCS/s.% - - -# Disable VCS-based implicit rules. -% : s.% - - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake3 - -# The command to remove a file. -RM = /usr/bin/cmake3 -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/pxz/project/hos_client_cpp_module/example/performance - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/pxz/project/hos_client_cpp_module/example/performance/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake3 --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache - -.PHONY : rebuild_cache/fast - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - /usr/bin/ccmake3 -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache - -.PHONY : edit_cache/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/pxz/project/hos_client_cpp_module/example/performance/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean - -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named HosClientPerformance - -# Build rule for target. -HosClientPerformance: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 HosClientPerformance -.PHONY : HosClientPerformance - -# fast build rule for target. -HosClientPerformance/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/build -.PHONY : HosClientPerformance/fast - -HosClientPerformance.o: HosClientPerformance.cpp.o - -.PHONY : HosClientPerformance.o - -# target to build an object file -HosClientPerformance.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.o -.PHONY : HosClientPerformance.cpp.o - -HosClientPerformance.i: HosClientPerformance.cpp.i - -.PHONY : HosClientPerformance.i - -# target to preprocess a source file -HosClientPerformance.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.i -.PHONY : HosClientPerformance.cpp.i - -HosClientPerformance.s: HosClientPerformance.cpp.s - -.PHONY : HosClientPerformance.s - -# target to generate assembly for a file -HosClientPerformance.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/HosClientPerformance.dir/build.make CMakeFiles/HosClientPerformance.dir/HosClientPerformance.cpp.s -.PHONY : HosClientPerformance.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... HosClientPerformance" - @echo "... HosClientPerformance.o" - @echo "... HosClientPerformance.i" - @echo "... HosClientPerformance.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/example/performance/build/cmake_install.cmake b/example/performance/build/cmake_install.cmake deleted file mode 100644 index fbf1b266..00000000 --- a/example/performance/build/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: /home/pxz/project/hos_client_cpp_module/example/performance - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "0") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/home/pxz/project/hos_client_cpp_module/example/performance/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/example/performance/log/20201201170059.log b/example/performance/log/20201201170059.log deleted file mode 100644 index ee7d37c5..00000000 --- a/example/performance/log/20201201170059.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 1k 0 79034.000000 0.000000 diff --git a/example/performance/log/20201201170309.log b/example/performance/log/20201201170309.log deleted file mode 100644 index e640f9a8..00000000 --- a/example/performance/log/20201201170309.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 1k 0 83803.000000 0.000000 diff --git a/example/performance/log/20201201170342.log b/example/performance/log/20201201170342.log deleted file mode 100644 index fb9387f2..00000000 --- a/example/performance/log/20201201170342.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 1k 0 89176.000000 0.000000 diff --git a/example/performance/log/20201201170728.log b/example/performance/log/20201201170728.log deleted file mode 100644 index 30669e72..00000000 --- a/example/performance/log/20201201170728.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 1k 0 74080.000000 0.000000 diff --git a/example/performance/log/20201201170856.log b/example/performance/log/20201201170856.log deleted file mode 100644 index 532f0292..00000000 --- a/example/performance/log/20201201170856.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 0.1k 0 434264.000000 0.000000 diff --git a/example/performance/log/20201201170942.log b/example/performance/log/20201201170942.log deleted file mode 100644 index be538425..00000000 --- a/example/performance/log/20201201170942.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 0.1k 0 323269.000000 0.000000 diff --git a/example/performance/log/20201201172227.log b/example/performance/log/20201201172227.log deleted file mode 100644 index e69de29b..00000000 --- a/example/performance/log/20201201172227.log +++ /dev/null diff --git a/example/performance/log/20201201172239.log b/example/performance/log/20201201172239.log deleted file mode 100644 index e69de29b..00000000 --- a/example/performance/log/20201201172239.log +++ /dev/null diff --git a/example/performance/log/20201201174707.log b/example/performance/log/20201201174707.log deleted file mode 100644 index e69de29b..00000000 --- a/example/performance/log/20201201174707.log +++ /dev/null diff --git a/example/performance/log/20201201174717.log b/example/performance/log/20201201174717.log deleted file mode 100644 index e69de29b..00000000 --- a/example/performance/log/20201201174717.log +++ /dev/null diff --git a/example/performance/log/20201201174932.log b/example/performance/log/20201201174932.log deleted file mode 100644 index f9ed7387..00000000 --- a/example/performance/log/20201201174932.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 100k 0 182000.000000 0.000000 diff --git a/example/performance/log/20201201175040.log b/example/performance/log/20201201175040.log deleted file mode 100644 index cee81da8..00000000 --- a/example/performance/log/20201201175040.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 100k 0 182203.000000 0.000000 diff --git a/example/performance/log/20201201175137.log b/example/performance/log/20201201175137.log deleted file mode 100644 index b1abcc02..00000000 --- a/example/performance/log/20201201175137.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 100k 0 212357.000000 0.000000 diff --git a/example/performance/log/20201201180138.log b/example/performance/log/20201201180138.log deleted file mode 100644 index 5ceb520a..00000000 --- a/example/performance/log/20201201180138.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 100k 0 232985.000000 0.000000 diff --git a/example/performance/log/20201201180307.log b/example/performance/log/20201201180307.log deleted file mode 100644 index e69de29b..00000000 --- a/example/performance/log/20201201180307.log +++ /dev/null diff --git a/example/performance/log/20201201181219.log b/example/performance/log/20201201181219.log deleted file mode 100644 index 4f132478..00000000 --- a/example/performance/log/20201201181219.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 100k 0 98939.000000 0.000000 diff --git a/example/performance/log/20201201181257.log b/example/performance/log/20201201181257.log deleted file mode 100644 index cccdff4c..00000000 --- a/example/performance/log/20201201181257.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 0.1k 0 239425.000000 0.000000 diff --git a/example/performance/log/20201201181314.log b/example/performance/log/20201201181314.log deleted file mode 100644 index 66179590..00000000 --- a/example/performance/log/20201201181314.log +++ /dev/null @@ -1 +0,0 @@ -0 0k 0.1k 0 222762.000000 0.000000 diff --git a/example/performance/log/20201202153755.log b/example/performance/log/20201202153755.log deleted file mode 100644 index 745bef4a..00000000 --- a/example/performance/log/20201202153755.log +++ /dev/null @@ -1 +0,0 @@ -0 1024k 0 0 1465028.120000 600149.300948 diff --git a/example/performance/log/fs2.log.2020-11-05 b/example/performance/log/fs2.log.2020-11-05 deleted file mode 100644 index 33233a89..00000000 --- a/example/performance/log/fs2.log.2020-11-05 +++ /dev/null @@ -1,2044 +0,0 @@ -============================================================Thu Nov 5 18:04:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total(4) 0 0 0 0 -rate(4) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total(4) 0 0 0 0 -rate(4) 0 0 0 0 -total(5) 0 0 0 0 -rate(5) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total(4) 0 0 0 0 -rate(4) 0 0 0 0 -total(5) 0 0 0 0 -rate(5) 0 0 0 0 -total(6) 0 0 0 0 -rate(6) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total(4) 0 0 0 0 -rate(4) 0 0 0 0 -total(5) 0 0 0 0 -rate(5) 0 0 0 0 -total(6) 0 0 0 0 -rate(6) 0 0 0 0 -total(7) 0 0 0 0 -rate(7) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total(1) 0 0 0 0 -rate(1) 0 0 0 0 -total(2) 0 0 0 0 -rate(2) 0 0 0 0 -total(3) 0 0 0 0 -rate(3) 0 0 0 0 -total(4) 0 0 0 0 -rate(4) 0 0 0 0 -total(5) 0 0 0 0 -rate(5) 0 0 0 0 -total(6) 0 0 0 0 -rate(6) 0 0 0 0 -total(7) 0 0 0 0 -rate(7) 0 0 0 0 -total(8) 0 0 0 0 -rate(8) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total 102000 102400000 1000 102400000 -rate 102000 102400000 1000 102400000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total 112200 112640000 1100 112640000 -rate 112200 112640000 1100 112640000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total 122400 122880000 1200 122880000 -rate 122400 122880000 1200 122880000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total 132600 133120000 1300 133120000 -rate 132600 133120000 1300 133120000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:04:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total 142800 143360000 1400 143360000 -rate 142800 143360000 1400 143360000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total 153000 153600000 1500 153600000 -rate 153000 153600000 1500 153600000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total 163200 163840000 1600 163840000 -rate 163200 163840000 1600 163840000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total 173400 174080000 1700 174080000 -rate 173400 174080000 1700 174080000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total 183600 184320000 1800 184320000 -rate 183600 184320000 1800 184320000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total 193800 194560000 1900 194560000 -rate 193800 194560000 1900 194560000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total 193800 194560000 1900 194560000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total 204000 204800000 2000 204800000 -rate 204000 204800000 2000 204800000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total 214200 215040000 2100 215040000 -rate 214200 215040000 2100 215040000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total 224400 225280000 2200 225280000 -rate 224400 225280000 2200 225280000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total 224400 225280000 2200 225280000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total 234600 235520000 2300 235520000 -rate 234600 235520000 2300 235520000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total 234600 235520000 2300 235520000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total 244800 245760000 2400 245760000 -rate 244800 245760000 2400 245760000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total 244800 245760000 2400 245760000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total 255000 256000000 2500 256000000 -rate 255000 256000000 2500 256000000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total 255000 256000000 2500 256000000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total 265200 266240000 2600 266240000 -rate 265200 266240000 2600 266240000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total 265200 266240000 2600 266240000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total 275400 276480000 2700 276480000 -rate 275400 276480000 2700 276480000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:05:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total 275400 276480000 2700 276480000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total(27) 10200 10240000 100 10240000 -rate(27) 10200 10240000 100 10240000 -total 285600 286720000 2800 286720000 -rate 285600 286720000 2800 286720000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total 285600 286720000 2800 286720000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total(27) 10200 10240000 100 10240000 -rate(27) 10200 10240000 100 10240000 -total(28) 10200 10240000 100 10240000 -rate(28) 10200 10240000 100 10240000 -total 295800 296960000 2900 296960000 -rate 295800 296960000 2900 296960000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total 295800 296960000 2900 296960000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total(27) 10200 10240000 100 10240000 -rate(27) 10200 10240000 100 10240000 -total(28) 10200 10240000 100 10240000 -rate(28) 10200 10240000 100 10240000 -total(29) 10200 10240000 100 10240000 -rate(29) 10200 10240000 100 10240000 -total 306000 307200000 3000 307200000 -rate 306000 307200000 3000 307200000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total(29) 10200 10240000 100 10240000 -rate(29) 0 0 0 0 -total 306000 307200000 3000 307200000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total(27) 10200 10240000 100 10240000 -rate(27) 10200 10240000 100 10240000 -total(28) 10200 10240000 100 10240000 -rate(28) 10200 10240000 100 10240000 -total(29) 10200 10240000 100 10240000 -rate(29) 10200 10240000 100 10240000 -total(30) 10200 10240000 100 10240000 -rate(30) 10200 10240000 100 10240000 -total 316200 317440000 3100 317440000 -rate 316200 317440000 3100 317440000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total(29) 10200 10240000 100 10240000 -rate(29) 0 0 0 0 -total(30) 10200 10240000 100 10240000 -rate(30) 0 0 0 0 -total 316200 317440000 3100 317440000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total(29) 10200 10240000 100 10240000 -rate(29) 0 0 0 0 -total(30) 10200 10240000 100 10240000 -rate(30) 0 0 0 0 -total 316200 317440000 3100 317440000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 10200 10240000 100 10240000 -total(1) 10200 10240000 100 10240000 -rate(1) 10200 10240000 100 10240000 -total(2) 10200 10240000 100 10240000 -rate(2) 10200 10240000 100 10240000 -total(3) 10200 10240000 100 10240000 -rate(3) 10200 10240000 100 10240000 -total(4) 10200 10240000 100 10240000 -rate(4) 10200 10240000 100 10240000 -total(5) 10200 10240000 100 10240000 -rate(5) 10200 10240000 100 10240000 -total(6) 10200 10240000 100 10240000 -rate(6) 10200 10240000 100 10240000 -total(7) 10200 10240000 100 10240000 -rate(7) 10200 10240000 100 10240000 -total(8) 10200 10240000 100 10240000 -rate(8) 10200 10240000 100 10240000 -total(9) 10200 10240000 100 10240000 -rate(9) 10200 10240000 100 10240000 -total(10) 10200 10240000 100 10240000 -rate(10) 10200 10240000 100 10240000 -total(11) 10200 10240000 100 10240000 -rate(11) 10200 10240000 100 10240000 -total(12) 10200 10240000 100 10240000 -rate(12) 10200 10240000 100 10240000 -total(13) 10200 10240000 100 10240000 -rate(13) 10200 10240000 100 10240000 -total(14) 10200 10240000 100 10240000 -rate(14) 10200 10240000 100 10240000 -total(15) 10200 10240000 100 10240000 -rate(15) 10200 10240000 100 10240000 -total(16) 10200 10240000 100 10240000 -rate(16) 10200 10240000 100 10240000 -total(17) 10200 10240000 100 10240000 -rate(17) 10200 10240000 100 10240000 -total(18) 10200 10240000 100 10240000 -rate(18) 10200 10240000 100 10240000 -total(19) 10200 10240000 100 10240000 -rate(19) 10200 10240000 100 10240000 -total(20) 10200 10240000 100 10240000 -rate(20) 10200 10240000 100 10240000 -total(21) 10200 10240000 100 10240000 -rate(21) 10200 10240000 100 10240000 -total(22) 10200 10240000 100 10240000 -rate(22) 10200 10240000 100 10240000 -total(23) 10200 10240000 100 10240000 -rate(23) 10200 10240000 100 10240000 -total(24) 10200 10240000 100 10240000 -rate(24) 10200 10240000 100 10240000 -total(25) 10200 10240000 100 10240000 -rate(25) 10200 10240000 100 10240000 -total(26) 10200 10240000 100 10240000 -rate(26) 10200 10240000 100 10240000 -total(27) 10200 10240000 100 10240000 -rate(27) 10200 10240000 100 10240000 -total(28) 10200 10240000 100 10240000 -rate(28) 10200 10240000 100 10240000 -total(29) 10200 10240000 100 10240000 -rate(29) 10200 10240000 100 10240000 -total(30) 10200 10240000 100 10240000 -rate(30) 10200 10240000 100 10240000 -total(31) 10200 10240000 100 10240000 -rate(31) 10200 10240000 100 10240000 -total 326400 327680000 3200 327680000 -rate 326400 327680000 3200 327680000 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total(29) 10200 10240000 100 10240000 -rate(29) 0 0 0 0 -total(30) 10200 10240000 100 10240000 -rate(30) 0 0 0 0 -total(31) 10200 10240000 100 10240000 -rate(31) 0 0 0 0 -total 326400 327680000 3200 327680000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 5 18:06:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10200 10240000 100 10240000 -rate(0) 0 0 0 0 -total(1) 10200 10240000 100 10240000 -rate(1) 0 0 0 0 -total(2) 10200 10240000 100 10240000 -rate(2) 0 0 0 0 -total(3) 10200 10240000 100 10240000 -rate(3) 0 0 0 0 -total(4) 10200 10240000 100 10240000 -rate(4) 0 0 0 0 -total(5) 10200 10240000 100 10240000 -rate(5) 0 0 0 0 -total(6) 10200 10240000 100 10240000 -rate(6) 0 0 0 0 -total(7) 10200 10240000 100 10240000 -rate(7) 0 0 0 0 -total(8) 10200 10240000 100 10240000 -rate(8) 0 0 0 0 -total(9) 10200 10240000 100 10240000 -rate(9) 0 0 0 0 -total(10) 10200 10240000 100 10240000 -rate(10) 0 0 0 0 -total(11) 10200 10240000 100 10240000 -rate(11) 0 0 0 0 -total(12) 10200 10240000 100 10240000 -rate(12) 0 0 0 0 -total(13) 10200 10240000 100 10240000 -rate(13) 0 0 0 0 -total(14) 10200 10240000 100 10240000 -rate(14) 0 0 0 0 -total(15) 10200 10240000 100 10240000 -rate(15) 0 0 0 0 -total(16) 10200 10240000 100 10240000 -rate(16) 0 0 0 0 -total(17) 10200 10240000 100 10240000 -rate(17) 0 0 0 0 -total(18) 10200 10240000 100 10240000 -rate(18) 0 0 0 0 -total(19) 10200 10240000 100 10240000 -rate(19) 0 0 0 0 -total(20) 10200 10240000 100 10240000 -rate(20) 0 0 0 0 -total(21) 10200 10240000 100 10240000 -rate(21) 0 0 0 0 -total(22) 10200 10240000 100 10240000 -rate(22) 0 0 0 0 -total(23) 10200 10240000 100 10240000 -rate(23) 0 0 0 0 -total(24) 10200 10240000 100 10240000 -rate(24) 0 0 0 0 -total(25) 10200 10240000 100 10240000 -rate(25) 0 0 0 0 -total(26) 10200 10240000 100 10240000 -rate(26) 0 0 0 0 -total(27) 10200 10240000 100 10240000 -rate(27) 0 0 0 0 -total(28) 10200 10240000 100 10240000 -rate(28) 0 0 0 0 -total(29) 10200 10240000 100 10240000 -rate(29) 0 0 0 0 -total(30) 10200 10240000 100 10240000 -rate(30) 0 0 0 0 -total(31) 10200 10240000 100 10240000 -rate(31) 0 0 0 0 -total 326400 327680000 3200 327680000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-06 b/example/performance/log/fs2.log.2020-11-06 deleted file mode 100644 index a7b2f4f1..00000000 --- a/example/performance/log/fs2.log.2020-11-06 +++ /dev/null @@ -1,1750 +0,0 @@ -============================================================Fri Nov 6 14:29:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42 44040192 42 44040192 -rate(0) 42 44040192 42 44040192 -total 42 44040192 42 44040192 -rate 42 44040192 42 44040192 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 59 61865984 58 60817408 -rate(0) 17 17825792 16 16777216 -total 59 61865984 58 60817408 -rate 17 17825792 16 16777216 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 74 77594624 73 76546048 -rate(0) 15 15728640 15 15728640 -total 74 77594624 73 76546048 -rate 15 15728640 15 15728640 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 88 92274688 87 91226112 -rate(0) 14 14680064 14 14680064 -total 88 92274688 87 91226112 -rate 14 14680064 14 14680064 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 12 12582912 13 13631488 -total 100 104857600 100 104857600 -rate 12 12582912 13 13631488 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 47 49283072 46 48234496 -rate(0) 47 49283072 46 48234496 -total 47 49283072 46 48234496 -rate 47 49283072 46 48234496 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 62 65011712 61 63963136 -rate(0) 15 15728640 15 15728640 -total 62 65011712 61 63963136 -rate 15 15728640 15 15728640 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 77 80740352 76 79691776 -rate(0) 15 15728640 15 15728640 -total 77 80740352 76 79691776 -rate 15 15728640 15 15728640 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 91 95420416 90 94371840 -rate(0) 14 14680064 14 14680064 -total 91 95420416 90 94371840 -rate 14 14680064 14 14680064 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 9 9437184 10 10485760 -total 100 104857600 100 104857600 -rate 9 9437184 10 10485760 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:29:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 43 45088768 42 44040192 -rate(0) 43 45088768 42 44040192 -total 43 45088768 42 44040192 -rate 43 45088768 42 44040192 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 60 62914560 59 61865984 -rate(0) 17 17825792 17 17825792 -total 60 62914560 59 61865984 -rate 17 17825792 17 17825792 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 74 77594624 73 76546048 -rate(0) 14 14680064 14 14680064 -total 74 77594624 73 76546048 -rate 14 14680064 14 14680064 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 89 93323264 88 92274688 -rate(0) 15 15728640 15 15728640 -total 89 93323264 88 92274688 -rate 15 15728640 15 15728640 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 11 11534336 12 12582912 -total 100 104857600 100 104857600 -rate 11 11534336 12 12582912 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:33:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 784 1572864 15 1536000 -rate(0) 784 1572864 15 1536000 -total 784 1572864 15 1536000 -rate 784 1572864 15 1536000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1379 2764800 27 2764800 -rate(0) 595 1191936 12 1228800 -total 1379 2764800 27 2764800 -rate 595 1191936 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2310 4630528 45 4608000 -rate(0) 931 1865728 18 1843200 -total 2310 4630528 45 4608000 -rate 931 1865728 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 3341 6696960 65 6656000 -rate(0) 1031 2066432 20 2048000 -total 3341 6696960 65 6656000 -rate 1031 2066432 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 4336 8691712 84 8601600 -rate(0) 995 1994752 19 1945600 -total 4336 8691712 84 8601600 -rate 995 1994752 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 5326 10674176 104 10649600 -rate(0) 990 1982464 20 2048000 -total 5326 10674176 104 10649600 -rate 990 1982464 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 6254 12535808 122 12492800 -rate(0) 928 1861632 18 1843200 -total 6254 12535808 122 12492800 -rate 928 1861632 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 7220 14471168 141 14438400 -rate(0) 966 1935360 19 1945600 -total 7220 14471168 141 14438400 -rate 966 1935360 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 8224 16484352 160 16384000 -rate(0) 1004 2013184 19 1945600 -total 8224 16484352 160 16384000 -rate 1004 2013184 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 9153 18343936 179 18329600 -rate(0) 929 1859584 19 1945600 -total 9153 18343936 179 18329600 -rate 929 1859584 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10151 20344832 198 20275200 -rate(0) 998 2000896 19 1945600 -total 10151 20344832 198 20275200 -rate 998 2000896 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 11113 22272000 217 22220800 -rate(0) 962 1927168 19 1945600 -total 11113 22272000 217 22220800 -rate 962 1927168 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 12074 24197120 236 24166400 -rate(0) 961 1925120 19 1945600 -total 12074 24197120 236 24166400 -rate 961 1925120 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 13035 26124288 255 26112000 -rate(0) 961 1927168 19 1945600 -total 13035 26124288 255 26112000 -rate 961 1927168 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 14016 28090368 274 28057600 -rate(0) 981 1966080 19 1945600 -total 14016 28090368 274 28057600 -rate 981 1966080 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 14929 29919232 292 29900800 -rate(0) 913 1828864 18 1843200 -total 14929 29919232 292 29900800 -rate 913 1828864 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 15821 31707136 309 31641600 -rate(0) 892 1787904 17 1740800 -total 15821 31707136 309 31641600 -rate 892 1787904 17 1740800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 16743 33554432 327 33484800 -rate(0) 922 1847296 18 1843200 -total 16743 33554432 327 33484800 -rate 922 1847296 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 17775 35624960 347 35532800 -rate(0) 1032 2070528 20 2048000 -total 17775 35624960 347 35532800 -rate 1032 2070528 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 18757 37591040 367 37580800 -rate(0) 982 1966080 20 2048000 -total 18757 37591040 367 37580800 -rate 982 1966080 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 19767 39616512 386 39526400 -rate(0) 1010 2025472 19 1945600 -total 19767 39616512 386 39526400 -rate 1010 2025472 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 20796 41676800 407 41676800 -rate(0) 1029 2060288 21 2150400 -total 20796 41676800 407 41676800 -rate 1029 2060288 21 2150400 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 21763 43616256 425 43520000 -rate(0) 967 1939456 18 1843200 -total 21763 43616256 425 43520000 -rate 967 1939456 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 22784 45662208 445 45568000 -rate(0) 1021 2045952 20 2048000 -total 22784 45662208 445 45568000 -rate 1021 2045952 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 23937 47972352 468 47923200 -rate(0) 1153 2310144 23 2355200 -total 23937 47972352 468 47923200 -rate 1153 2310144 23 2355200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 24526 49152000 480 49152000 -rate(0) 589 1179648 12 1228800 -total 24526 49152000 480 49152000 -rate 589 1179648 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 25523 51150848 499 51097600 -rate(0) 997 1998848 19 1945600 -total 25523 51150848 499 51097600 -rate 997 1998848 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 26472 53051392 518 53043200 -rate(0) 949 1900544 19 1945600 -total 26472 53051392 518 53043200 -rate 949 1900544 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 27450 55011328 537 54988800 -rate(0) 978 1959936 19 1945600 -total 27450 55011328 537 54988800 -rate 978 1959936 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 28375 56864768 555 56832000 -rate(0) 925 1853440 18 1843200 -total 28375 56864768 555 56832000 -rate 925 1853440 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 29411 58941440 575 58880000 -rate(0) 1036 2076672 20 2048000 -total 29411 58941440 575 58880000 -rate 1036 2076672 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 30376 60874752 594 60825600 -rate(0) 965 1933312 19 1945600 -total 30376 60874752 594 60825600 -rate 965 1933312 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 31374 62875648 614 62873600 -rate(0) 998 2000896 20 2048000 -total 31374 62875648 614 62873600 -rate 998 2000896 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 32379 64890880 633 64819200 -rate(0) 1005 2015232 19 1945600 -total 32379 64890880 633 64819200 -rate 1005 2015232 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 33304 66744320 651 66662400 -rate(0) 925 1853440 18 1843200 -total 33304 66744320 651 66662400 -rate 925 1853440 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 34291 68720640 671 68710400 -rate(0) 987 1976320 20 2048000 -total 34291 68720640 671 68710400 -rate 987 1976320 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 35235 70612992 689 70553600 -rate(0) 944 1892352 18 1843200 -total 35235 70612992 689 70553600 -rate 944 1892352 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:34:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36232 72609792 709 72601600 -rate(0) 997 1996800 20 2048000 -total 36232 72609792 709 72601600 -rate 997 1996800 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 37176 74502144 727 74444800 -rate(0) 944 1892352 18 1843200 -total 37176 74502144 727 74444800 -rate 944 1892352 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 38209 76572672 747 76492800 -rate(0) 1033 2070528 20 2048000 -total 38209 76572672 747 76492800 -rate 1033 2070528 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 39241 78643200 767 78540800 -rate(0) 1032 2070528 20 2048000 -total 39241 78643200 767 78540800 -rate 1032 2070528 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 40269 80701440 788 80691200 -rate(0) 1028 2058240 21 2150400 -total 40269 80701440 788 80691200 -rate 1028 2058240 21 2150400 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 41197 82561024 806 82534400 -rate(0) 928 1859584 18 1843200 -total 41197 82561024 806 82534400 -rate 928 1859584 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42178 84527104 825 84480000 -rate(0) 981 1966080 19 1945600 -total 42178 84527104 825 84480000 -rate 981 1966080 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 43182 86538240 845 86528000 -rate(0) 1004 2011136 20 2048000 -total 43182 86538240 845 86528000 -rate 1004 2011136 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 44180 88539136 864 88473600 -rate(0) 998 2000896 19 1945600 -total 44180 88539136 864 88473600 -rate 998 2000896 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 45180 90542080 884 90521600 -rate(0) 1000 2002944 20 2048000 -total 45180 90542080 884 90521600 -rate 1000 2002944 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 46213 92612608 904 92569600 -rate(0) 1033 2070528 20 2048000 -total 46213 92612608 904 92569600 -rate 1033 2070528 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 47215 94619648 924 94617600 -rate(0) 1002 2007040 20 2048000 -total 47215 94619648 924 94617600 -rate 1002 2007040 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 48210 96614400 943 96563200 -rate(0) 995 1994752 19 1945600 -total 48210 96614400 943 96563200 -rate 995 1994752 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 49209 98615296 963 98611200 -rate(0) 999 2000896 20 2048000 -total 49209 98615296 963 98611200 -rate 999 2000896 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 50237 100675584 983 100659200 -rate(0) 1028 2060288 20 2048000 -total 50237 100675584 983 100659200 -rate 1028 2060288 20 2048000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 51203 102612992 1002 102604800 -rate(0) 966 1937408 19 1945600 -total 51203 102612992 1002 102604800 -rate 966 1937408 19 1945600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:35:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 52139 104488960 1020 104448000 -rate(0) 936 1875968 18 1843200 -total 52139 104488960 1020 104448000 -rate 936 1875968 18 1843200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 765 1536000 14 1433600 -rate(0) 765 1536000 14 1433600 -total 765 1536000 14 1433600 -rate 765 1536000 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1168 2342912 22 2252800 -rate(0) 403 806912 8 819200 -total 1168 2342912 22 2252800 -rate 403 806912 8 819200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1777 3563520 34 3481600 -rate(0) 609 1220608 12 1228800 -total 1777 3563520 34 3481600 -rate 609 1220608 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2435 4882432 47 4812800 -rate(0) 658 1318912 13 1331200 -total 2435 4882432 47 4812800 -rate 658 1318912 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 3107 6230016 60 6144000 -rate(0) 672 1347584 13 1331200 -total 3107 6230016 60 6144000 -rate 672 1347584 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 3772 7561216 73 7475200 -rate(0) 665 1331200 13 1331200 -total 3772 7561216 73 7475200 -rate 665 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 4422 8863744 86 8806400 -rate(0) 650 1302528 13 1331200 -total 4422 8863744 86 8806400 -rate 650 1302528 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 5077 10176512 99 10137600 -rate(0) 655 1312768 13 1331200 -total 5077 10176512 99 10137600 -rate 655 1312768 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 5734 11493376 112 11468800 -rate(0) 657 1316864 13 1331200 -total 5734 11493376 112 11468800 -rate 657 1316864 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 6386 12800000 124 12697600 -rate(0) 652 1306624 12 1228800 -total 6386 12800000 124 12697600 -rate 652 1306624 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 7039 14108672 137 14028800 -rate(0) 653 1308672 13 1331200 -total 7039 14108672 137 14028800 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 7708 15450112 150 15360000 -rate(0) 669 1341440 13 1331200 -total 7708 15450112 150 15360000 -rate 669 1341440 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 8379 16793600 163 16691200 -rate(0) 671 1343488 13 1331200 -total 8379 16793600 163 16691200 -rate 671 1343488 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 9045 18126848 177 18124800 -rate(0) 666 1333248 14 1433600 -total 9045 18126848 177 18124800 -rate 666 1333248 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 9714 19468288 190 19456000 -rate(0) 669 1341440 13 1331200 -total 9714 19468288 190 19456000 -rate 669 1341440 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10373 20789248 203 20787200 -rate(0) 659 1320960 13 1331200 -total 10373 20789248 203 20787200 -rate 659 1320960 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 11053 22151168 216 22118400 -rate(0) 680 1361920 13 1331200 -total 11053 22151168 216 22118400 -rate 680 1361920 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 11735 23519232 229 23449600 -rate(0) 682 1368064 13 1331200 -total 11735 23519232 229 23449600 -rate 682 1368064 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 12493 25038848 244 24985600 -rate(0) 758 1519616 15 1536000 -total 12493 25038848 244 24985600 -rate 758 1519616 15 1536000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 13082 26216448 256 26214400 -rate(0) 589 1177600 12 1228800 -total 13082 26216448 256 26214400 -rate 589 1177600 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 13740 27537408 268 27443200 -rate(0) 658 1320960 12 1228800 -total 13740 27537408 268 27443200 -rate 658 1320960 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 14399 28858368 281 28774400 -rate(0) 659 1320960 13 1331200 -total 14399 28858368 281 28774400 -rate 659 1320960 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 15048 30158848 294 30105600 -rate(0) 649 1300480 13 1331200 -total 15048 30158848 294 30105600 -rate 649 1300480 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 15714 31492096 307 31436800 -rate(0) 666 1333248 13 1331200 -total 15714 31492096 307 31436800 -rate 666 1333248 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 16385 32837632 320 32768000 -rate(0) 671 1345536 13 1331200 -total 16385 32837632 320 32768000 -rate 671 1345536 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 17044 34158592 333 34099200 -rate(0) 659 1320960 13 1331200 -total 17044 34158592 333 34099200 -rate 659 1320960 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 17681 35434496 346 35430400 -rate(0) 637 1275904 13 1331200 -total 17681 35434496 346 35430400 -rate 637 1275904 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 18345 36763648 359 36761600 -rate(0) 664 1329152 13 1331200 -total 18345 36763648 359 36761600 -rate 664 1329152 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 18996 38070272 371 37990400 -rate(0) 651 1306624 12 1228800 -total 18996 38070272 371 37990400 -rate 651 1306624 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 19661 39403520 384 39321600 -rate(0) 665 1333248 13 1331200 -total 19661 39403520 384 39321600 -rate 665 1333248 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 20308 40699904 397 40652800 -rate(0) 647 1296384 13 1331200 -total 20308 40699904 397 40652800 -rate 647 1296384 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 20990 42065920 410 41984000 -rate(0) 682 1366016 13 1331200 -total 20990 42065920 410 41984000 -rate 682 1366016 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 21664 43417600 423 43315200 -rate(0) 674 1351680 13 1331200 -total 21664 43417600 423 43315200 -rate 674 1351680 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 22313 44718080 436 44646400 -rate(0) 649 1300480 13 1331200 -total 22313 44718080 436 44646400 -rate 649 1300480 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 22969 46032896 449 45977600 -rate(0) 656 1314816 13 1331200 -total 22969 46032896 449 45977600 -rate 656 1314816 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 23614 47323136 462 47308800 -rate(0) 645 1290240 13 1331200 -total 23614 47323136 462 47308800 -rate 645 1290240 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 24281 48660480 475 48640000 -rate(0) 667 1337344 13 1331200 -total 24281 48660480 475 48640000 -rate 667 1337344 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 24959 50020352 488 49971200 -rate(0) 678 1359872 13 1331200 -total 24959 50020352 488 49971200 -rate 678 1359872 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 25633 51372032 501 51302400 -rate(0) 674 1351680 13 1331200 -total 25633 51372032 501 51302400 -rate 674 1351680 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 26302 52711424 514 52633600 -rate(0) 669 1339392 13 1331200 -total 26302 52711424 514 52633600 -rate 669 1339392 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 26958 54026240 527 53964800 -rate(0) 656 1314816 13 1331200 -total 26958 54026240 527 53964800 -rate 656 1314816 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:37:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 27617 55347200 540 55296000 -rate(0) 659 1320960 13 1331200 -total 27617 55347200 540 55296000 -rate 659 1320960 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 28259 56631296 553 56627200 -rate(0) 642 1284096 13 1331200 -total 28259 56631296 553 56627200 -rate 642 1284096 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 28934 57985024 566 57958400 -rate(0) 675 1353728 13 1331200 -total 28934 57985024 566 57958400 -rate 675 1353728 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 29601 59322368 579 59289600 -rate(0) 667 1337344 13 1331200 -total 29601 59322368 579 59289600 -rate 667 1337344 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 30261 60645376 592 60620800 -rate(0) 660 1323008 13 1331200 -total 30261 60645376 592 60620800 -rate 660 1323008 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 30931 61986816 605 61952000 -rate(0) 670 1341440 13 1331200 -total 30931 61986816 605 61952000 -rate 670 1341440 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 31596 63320064 618 63283200 -rate(0) 665 1333248 13 1331200 -total 31596 63320064 618 63283200 -rate 665 1333248 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 32255 64641024 631 64614400 -rate(0) 659 1320960 13 1331200 -total 32255 64641024 631 64614400 -rate 659 1320960 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 32908 65949696 644 65945600 -rate(0) 653 1308672 13 1331200 -total 32908 65949696 644 65945600 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 33582 67299328 657 67276800 -rate(0) 674 1349632 13 1331200 -total 33582 67299328 657 67276800 -rate 674 1349632 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 34226 68591616 669 68505600 -rate(0) 644 1292288 12 1228800 -total 34226 68591616 669 68505600 -rate 644 1292288 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 34880 69902336 682 69836800 -rate(0) 654 1310720 13 1331200 -total 34880 69902336 682 69836800 -rate 654 1310720 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 35550 71245824 695 71168000 -rate(0) 670 1343488 13 1331200 -total 35550 71245824 695 71168000 -rate 670 1343488 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36207 72560640 708 72499200 -rate(0) 657 1314816 13 1331200 -total 36207 72560640 708 72499200 -rate 657 1314816 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36847 73842688 721 73830400 -rate(0) 640 1282048 13 1331200 -total 36847 73842688 721 73830400 -rate 640 1282048 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 37507 75165696 734 75161600 -rate(0) 660 1323008 13 1331200 -total 37507 75165696 734 75161600 -rate 660 1323008 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 38168 76492800 746 76390400 -rate(0) 661 1327104 12 1228800 -total 38168 76492800 746 76390400 -rate 661 1327104 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 38833 77824000 759 77721600 -rate(0) 665 1331200 13 1331200 -total 38833 77824000 759 77721600 -rate 665 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 39495 79151104 772 79052800 -rate(0) 662 1327104 13 1331200 -total 39495 79151104 772 79052800 -rate 662 1327104 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 40164 80490496 786 80486400 -rate(0) 669 1339392 14 1433600 -total 40164 80490496 786 80486400 -rate 669 1339392 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 40831 81825792 799 81817600 -rate(0) 667 1335296 13 1331200 -total 40831 81825792 799 81817600 -rate 667 1335296 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 41487 83142656 811 83046400 -rate(0) 656 1316864 12 1228800 -total 41487 83142656 811 83046400 -rate 656 1316864 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42157 84484096 825 84480000 -rate(0) 670 1341440 14 1433600 -total 42157 84484096 825 84480000 -rate 670 1341440 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42820 85813248 838 85811200 -rate(0) 663 1329152 13 1331200 -total 42820 85813248 838 85811200 -rate 663 1329152 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 43488 87150592 851 87142400 -rate(0) 668 1337344 13 1331200 -total 43488 87150592 851 87142400 -rate 668 1337344 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 44152 88481792 864 88473600 -rate(0) 664 1331200 13 1331200 -total 44152 88481792 864 88473600 -rate 664 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 44848 89878528 877 89804800 -rate(0) 696 1396736 13 1331200 -total 44848 89878528 877 89804800 -rate 696 1396736 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 45543 91269120 891 91238400 -rate(0) 695 1390592 14 1433600 -total 45543 91269120 891 91238400 -rate 695 1390592 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 46166 92518400 903 92467200 -rate(0) 623 1249280 12 1228800 -total 46166 92518400 903 92467200 -rate 623 1249280 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 46832 93853696 916 93798400 -rate(0) 666 1335296 13 1331200 -total 46832 93853696 916 93798400 -rate 666 1335296 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 47485 95162368 929 95129600 -rate(0) 653 1308672 13 1331200 -total 47485 95162368 929 95129600 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 48160 96514048 942 96460800 -rate(0) 675 1351680 13 1331200 -total 48160 96514048 942 96460800 -rate 675 1351680 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 48808 97812480 955 97792000 -rate(0) 648 1298432 13 1331200 -total 48808 97812480 955 97792000 -rate 648 1298432 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 49470 99139584 968 99123200 -rate(0) 662 1327104 13 1331200 -total 49470 99139584 968 99123200 -rate 662 1327104 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 50121 100446208 980 100352000 -rate(0) 651 1306624 12 1228800 -total 50121 100446208 980 100352000 -rate 651 1306624 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 50787 101779456 993 101683200 -rate(0) 666 1333248 13 1331200 -total 50787 101779456 993 101683200 -rate 666 1333248 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 51418 103043072 1006 103014400 -rate(0) 631 1263616 13 1331200 -total 51418 103043072 1006 103014400 -rate 631 1263616 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:38:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 52066 104343552 1018 104243200 -rate(0) 648 1300480 12 1228800 -total 52066 104343552 1018 104243200 -rate 648 1300480 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 765 1536000 14 1433600 -rate(0) 765 1536000 14 1433600 -total 765 1536000 14 1433600 -rate 765 1536000 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1164 2334720 22 2252800 -rate(0) 399 798720 8 819200 -total 1164 2334720 22 2252800 -rate 399 798720 8 819200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1769 3547136 34 3481600 -rate(0) 605 1212416 12 1228800 -total 1769 3547136 34 3481600 -rate 605 1212416 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2409 4829184 47 4812800 -rate(0) 640 1282048 13 1331200 -total 2409 4829184 47 4812800 -rate 640 1282048 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 3051 6117376 59 6041600 -rate(0) 642 1288192 12 1228800 -total 3051 6117376 59 6041600 -rate 642 1288192 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 3709 7434240 72 7372800 -rate(0) 658 1316864 13 1331200 -total 3709 7434240 72 7372800 -rate 658 1316864 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 4371 8761344 85 8704000 -rate(0) 662 1327104 13 1331200 -total 4371 8761344 85 8704000 -rate 662 1327104 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 5043 10108928 98 10035200 -rate(0) 672 1347584 13 1331200 -total 5043 10108928 98 10035200 -rate 672 1347584 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 5695 11415552 111 11366400 -rate(0) 652 1306624 13 1331200 -total 5695 11415552 111 11366400 -rate 652 1306624 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:40:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 6318 12662784 123 12595200 -rate(0) 623 1247232 12 1228800 -total 6318 12662784 123 12595200 -rate 623 1247232 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 6952 13932544 136 13926400 -rate(0) 634 1269760 13 1331200 -total 6952 13932544 136 13926400 -rate 634 1269760 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 7590 15212544 148 15155200 -rate(0) 638 1280000 12 1228800 -total 7590 15212544 148 15155200 -rate 638 1280000 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 8251 16537600 161 16486400 -rate(0) 661 1325056 13 1331200 -total 8251 16537600 161 16486400 -rate 661 1325056 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 8889 17817600 173 17715200 -rate(0) 638 1280000 12 1228800 -total 8889 17817600 173 17715200 -rate 638 1280000 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 9532 19103744 186 19046400 -rate(0) 643 1286144 13 1331200 -total 9532 19103744 186 19046400 -rate 643 1286144 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10173 20387840 199 20377600 -rate(0) 641 1284096 13 1331200 -total 10173 20387840 199 20377600 -rate 641 1284096 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 10847 21739520 212 21708800 -rate(0) 674 1351680 13 1331200 -total 10847 21739520 212 21708800 -rate 674 1351680 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 11500 23048192 225 23040000 -rate(0) 653 1308672 13 1331200 -total 11500 23048192 225 23040000 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 12144 24338432 237 24268800 -rate(0) 644 1290240 12 1228800 -total 12144 24338432 237 24268800 -rate 644 1290240 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 12774 25600000 250 25600000 -rate(0) 630 1261568 13 1331200 -total 12774 25600000 250 25600000 -rate 630 1261568 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 13424 26904576 262 26828800 -rate(0) 650 1304576 12 1228800 -total 13424 26904576 262 26828800 -rate 650 1304576 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 14062 28182528 275 28160000 -rate(0) 638 1277952 13 1331200 -total 14062 28182528 275 28160000 -rate 638 1277952 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 14716 29491200 288 29491200 -rate(0) 654 1308672 13 1331200 -total 14716 29491200 288 29491200 -rate 654 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 15379 30822400 300 30720000 -rate(0) 663 1331200 12 1228800 -total 15379 30822400 300 30720000 -rate 663 1331200 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 16044 32153600 314 32153600 -rate(0) 665 1331200 14 1433600 -total 16044 32153600 314 32153600 -rate 665 1331200 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 16694 33458176 326 33382400 -rate(0) 650 1304576 12 1228800 -total 16694 33458176 326 33382400 -rate 650 1304576 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 17428 34926592 341 34918400 -rate(0) 734 1468416 15 1536000 -total 17428 34926592 341 34918400 -rate 734 1468416 15 1536000 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 18013 36100096 352 36044800 -rate(0) 585 1173504 11 1126400 -total 18013 36100096 352 36044800 -rate 585 1173504 11 1126400 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 18666 37408768 365 37376000 -rate(0) 653 1308672 13 1331200 -total 18666 37408768 365 37376000 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 19320 38719488 378 38707200 -rate(0) 654 1310720 13 1331200 -total 19320 38719488 378 38707200 -rate 654 1310720 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 19972 40026112 390 39936000 -rate(0) 652 1306624 12 1228800 -total 19972 40026112 390 39936000 -rate 652 1306624 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 20609 41302016 403 41267200 -rate(0) 637 1275904 13 1331200 -total 20609 41302016 403 41267200 -rate 637 1275904 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 21252 42592256 415 42496000 -rate(0) 643 1290240 12 1228800 -total 21252 42592256 415 42496000 -rate 643 1290240 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 21897 43884544 428 43827200 -rate(0) 645 1292288 13 1331200 -total 21897 43884544 428 43827200 -rate 645 1292288 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 22532 45156352 440 45056000 -rate(0) 635 1271808 12 1228800 -total 22532 45156352 440 45056000 -rate 635 1271808 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 23166 46426112 453 46387200 -rate(0) 634 1269760 13 1331200 -total 23166 46426112 453 46387200 -rate 634 1269760 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 23826 47749120 466 47718400 -rate(0) 660 1323008 13 1331200 -total 23826 47749120 466 47718400 -rate 660 1323008 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 24483 49065984 479 49049600 -rate(0) 657 1316864 13 1331200 -total 24483 49065984 479 49049600 -rate 657 1316864 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 25131 50364416 491 50278400 -rate(0) 648 1298432 12 1228800 -total 25131 50364416 491 50278400 -rate 648 1298432 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 25772 51648512 504 51609600 -rate(0) 641 1284096 13 1331200 -total 25772 51648512 504 51609600 -rate 641 1284096 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 26435 52977664 517 52940800 -rate(0) 663 1329152 13 1331200 -total 26435 52977664 517 52940800 -rate 663 1329152 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 27078 54267904 529 54169600 -rate(0) 643 1290240 12 1228800 -total 27078 54267904 529 54169600 -rate 643 1290240 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 27720 55554048 542 55500800 -rate(0) 642 1286144 13 1331200 -total 27720 55554048 542 55500800 -rate 642 1286144 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 28379 56872960 555 56832000 -rate(0) 659 1318912 13 1331200 -total 28379 56872960 555 56832000 -rate 659 1318912 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 29104 58327040 569 58265600 -rate(0) 725 1454080 14 1433600 -total 29104 58327040 569 58265600 -rate 725 1454080 14 1433600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 29737 59596800 581 59494400 -rate(0) 633 1269760 12 1228800 -total 29737 59596800 581 59494400 -rate 633 1269760 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 30395 60913664 594 60825600 -rate(0) 658 1316864 13 1331200 -total 30395 60913664 594 60825600 -rate 658 1316864 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 31031 62187520 607 62156800 -rate(0) 636 1273856 13 1331200 -total 31031 62187520 607 62156800 -rate 636 1273856 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 31689 63506432 620 63488000 -rate(0) 658 1318912 13 1331200 -total 31689 63506432 620 63488000 -rate 658 1318912 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 32353 64837632 633 64819200 -rate(0) 664 1331200 13 1331200 -total 32353 64837632 633 64819200 -rate 664 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 33006 66146304 645 66048000 -rate(0) 653 1308672 12 1228800 -total 33006 66146304 645 66048000 -rate 653 1308672 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 33636 67407872 658 67379200 -rate(0) 630 1261568 13 1331200 -total 33636 67407872 658 67379200 -rate 630 1261568 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 34261 68661248 670 68608000 -rate(0) 625 1253376 12 1228800 -total 34261 68661248 670 68608000 -rate 625 1253376 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 34914 69969920 683 69939200 -rate(0) 653 1308672 13 1331200 -total 34914 69969920 683 69939200 -rate 653 1308672 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 35572 71288832 696 71270400 -rate(0) 658 1318912 13 1331200 -total 35572 71288832 696 71270400 -rate 658 1318912 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36227 72601600 708 72499200 -rate(0) 655 1312768 12 1228800 -total 36227 72601600 708 72499200 -rate 655 1312768 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36891 73932800 721 73830400 -rate(0) 664 1331200 13 1331200 -total 36891 73932800 721 73830400 -rate 664 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 37531 75214848 734 75161600 -rate(0) 640 1282048 13 1331200 -total 37531 75214848 734 75161600 -rate 640 1282048 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 38155 76466176 746 76390400 -rate(0) 624 1251328 12 1228800 -total 38155 76466176 746 76390400 -rate 624 1251328 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 38794 77744128 759 77721600 -rate(0) 639 1277952 13 1331200 -total 38794 77744128 759 77721600 -rate 639 1277952 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 39448 79054848 772 79052800 -rate(0) 654 1310720 13 1331200 -total 39448 79054848 772 79052800 -rate 654 1310720 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 40091 80345088 784 80281600 -rate(0) 643 1290240 12 1228800 -total 40091 80345088 784 80281600 -rate 643 1290240 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 40738 81641472 797 81612800 -rate(0) 647 1296384 13 1331200 -total 40738 81641472 797 81612800 -rate 647 1296384 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 41377 82921472 809 82841600 -rate(0) 639 1280000 12 1228800 -total 41377 82921472 809 82841600 -rate 639 1280000 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42042 84254720 822 84172800 -rate(0) 665 1333248 13 1331200 -total 42042 84254720 822 84172800 -rate 665 1333248 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 42697 85567488 835 85504000 -rate(0) 655 1312768 13 1331200 -total 42697 85567488 835 85504000 -rate 655 1312768 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 43351 86878208 848 86835200 -rate(0) 654 1310720 13 1331200 -total 43351 86878208 848 86835200 -rate 654 1310720 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 43996 88168448 861 88166400 -rate(0) 645 1290240 13 1331200 -total 43996 88168448 861 88166400 -rate 645 1290240 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 44660 89499648 874 89497600 -rate(0) 664 1331200 13 1331200 -total 44660 89499648 874 89497600 -rate 664 1331200 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:41:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 45328 90839040 887 90828800 -rate(0) 668 1339392 13 1331200 -total 45328 90839040 887 90828800 -rate 668 1339392 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 45970 92127232 899 92057600 -rate(0) 642 1288192 12 1228800 -total 45970 92127232 899 92057600 -rate 642 1288192 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 46612 93411328 912 93388800 -rate(0) 642 1284096 13 1331200 -total 46612 93411328 912 93388800 -rate 642 1284096 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 47250 94691328 924 94617600 -rate(0) 638 1280000 12 1228800 -total 47250 94691328 924 94617600 -rate 638 1280000 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 47894 95981568 937 95948800 -rate(0) 644 1290240 13 1331200 -total 47894 95981568 937 95948800 -rate 644 1290240 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 48541 97280000 949 97177600 -rate(0) 647 1298432 12 1228800 -total 48541 97280000 949 97177600 -rate 647 1298432 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 49189 98576384 962 98508800 -rate(0) 648 1296384 13 1331200 -total 49189 98576384 962 98508800 -rate 648 1296384 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 49833 99866624 975 99840000 -rate(0) 644 1290240 13 1331200 -total 49833 99866624 975 99840000 -rate 644 1290240 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 50438 101079040 987 101068800 -rate(0) 605 1212416 12 1228800 -total 50438 101079040 987 101068800 -rate 605 1212416 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 51055 102316032 999 102297600 -rate(0) 617 1236992 12 1228800 -total 51055 102316032 999 102297600 -rate 617 1236992 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 51696 103602176 1011 103526400 -rate(0) 641 1286144 12 1228800 -total 51696 103602176 1011 103526400 -rate 641 1286144 12 1228800 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 14:42:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 52324 104857600 1024 104857600 -rate(0) 628 1255424 13 1331200 -total 52324 104857600 1024 104857600 -rate 628 1255424 13 1331200 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:11:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:11:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2124 154255360 1024 104857600 -rate(0) 2124 154255360 1024 104857600 -total 2124 154255360 1024 104857600 -rate 2124 154255360 1024 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 22 23068672 21 22020096 -rate(0) 22 23068672 21 22020096 -total 22 23068672 21 22020096 -rate 22 23068672 21 22020096 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 36 37748736 35 36700160 -rate(0) 14 14680064 14 14680064 -total 36 37748736 35 36700160 -rate 14 14680064 14 14680064 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 66 69206016 65 68157440 -rate(0) 14 14680064 14 14680064 -total 66 69206016 65 68157440 -rate 14 14680064 14 14680064 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 88 92274688 87 91226112 -rate(0) 9 9437184 9 9437184 -total 88 92274688 87 91226112 -rate 9 9437184 9 9437184 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 4 4194304 5 5242880 -total 100 104857600 100 104857600 -rate 4 4194304 5 5242880 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 6 16:18:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-09 b/example/performance/log/fs2.log.2020-11-09 deleted file mode 100644 index 6154fee6..00000000 --- a/example/performance/log/fs2.log.2020-11-09 +++ /dev/null @@ -1,70 +0,0 @@ -============================================================Mon Nov 9 16:30:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:30:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:31:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:31:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:33:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:33:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:34:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:34:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:39:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 9 16:39:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-10 b/example/performance/log/fs2.log.2020-11-10 deleted file mode 100644 index f1b39c82..00000000 --- a/example/performance/log/fs2.log.2020-11-10 +++ /dev/null @@ -1,7 +0,0 @@ -============================================================Tue Nov 10 19:58:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-11 b/example/performance/log/fs2.log.2020-11-11 deleted file mode 100644 index 54a2dea8..00000000 --- a/example/performance/log/fs2.log.2020-11-11 +++ /dev/null @@ -1,35 +0,0 @@ -============================================================Wed Nov 11 10:59:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 11 11:00:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 11 16:18:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 11 16:19:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 11 16:19:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-19 b/example/performance/log/fs2.log.2020-11-19 deleted file mode 100644 index 0248e34a..00000000 --- a/example/performance/log/fs2.log.2020-11-19 +++ /dev/null @@ -1,14 +0,0 @@ -============================================================Thu Nov 19 14:13:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Thu Nov 19 17:26:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-20 b/example/performance/log/fs2.log.2020-11-20 deleted file mode 100644 index 89e3bb63..00000000 --- a/example/performance/log/fs2.log.2020-11-20 +++ /dev/null @@ -1,7 +0,0 @@ -============================================================Fri Nov 20 18:41:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-23 b/example/performance/log/fs2.log.2020-11-23 deleted file mode 100644 index d391d535..00000000 --- a/example/performance/log/fs2.log.2020-11-23 +++ /dev/null @@ -1,7 +0,0 @@ -============================================================Mon Nov 23 14:21:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-24 b/example/performance/log/fs2.log.2020-11-24 deleted file mode 100644 index 6f652821..00000000 --- a/example/performance/log/fs2.log.2020-11-24 +++ /dev/null @@ -1,7 +0,0 @@ -============================================================Tue Nov 24 15:56:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-25 b/example/performance/log/fs2.log.2020-11-25 deleted file mode 100644 index b66b2053..00000000 --- a/example/performance/log/fs2.log.2020-11-25 +++ /dev/null @@ -1,21 +0,0 @@ -============================================================Wed Nov 25 15:51:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 25 15:51:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Nov 25 15:51:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-27 b/example/performance/log/fs2.log.2020-11-27 deleted file mode 100644 index 219e6745..00000000 --- a/example/performance/log/fs2.log.2020-11-27 +++ /dev/null @@ -1,2582 +0,0 @@ -============================================================Fri Nov 27 17:36:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:36:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 900 943718400 899 942669824 -rate(0) 900 943718400 899 942669824 -total 900 943718400 899 942669824 -rate 900 943718400 899 942669824 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 100 104857600 101 105906176 -total 1000 1048576000 1000 1048576000 -rate 100 104857600 101 105906176 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 17:37:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1000 1048576000 1000 1048576000 -rate(0) 0 0 0 0 -total 1000 1048576000 1000 1048576000 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:06 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:06 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:07 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:07 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:08 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:08 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:09 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:09 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:10 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:10 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:11 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:11 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:12 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:12 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:13 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:13 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:14 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:14 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:15 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:15 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:16 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:16 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:17 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:17 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:18 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:18 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:19 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:19 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:20 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:20 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:21 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:21 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:22 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:22 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:23 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:23 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:24 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:24 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:25 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:25 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:26 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:26 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:27 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:27 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:28 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:28 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:29 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:29 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:30 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:30 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:31 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:31 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:32 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:32 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:33 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:33 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:34 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:34 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:35 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:35 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:36 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:36 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:37 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:37 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:38 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:38 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:39 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:39 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:40 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:40 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:41 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:41 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:42 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:42 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:43 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:43 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:44 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:44 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:45 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:45 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:46 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:46 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:47 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:47 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:48 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:48 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:49 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:49 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:50 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:50 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:51 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:51 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:52 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:52 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:53 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:53 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:54 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:54 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:55 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:55 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:56 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:56 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:57 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:57 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:58 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:58 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:59 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:59 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:34:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:00 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:00 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:01 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:01 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:02 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:02 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:03 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:03 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:04 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:04 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:05 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:05 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:06 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:06 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:07 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:07 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:08 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:08 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:09 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:09 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:10 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:10 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:11 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:11 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:12 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:12 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:13 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:13 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:14 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:14 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:15 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:15 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:16 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:16 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:17 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:17 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:18 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:18 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:19 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:19 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:20 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:20 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:21 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:21 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:22 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:22 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:23 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:23 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:24 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:24 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:25 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:25 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:26 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:26 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:27 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:27 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:28 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:28 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:29 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:29 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:30 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:30 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:31 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:31 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:32 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:32 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:33 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:33 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:34 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:34 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:35 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:35 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:36 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:36 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:37 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:37 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:37 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:38 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:38 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:39 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:39 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:39 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:40 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:40 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:41 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:41 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:35:41 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:00 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:00 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:01 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:01 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:02 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:02 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:03 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:03 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:04 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:04 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:05 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:05 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:06 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:06 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:07 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:07 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:08 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:08 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:09 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:09 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:10 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:10 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:11 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:11 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:12 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:12 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:13 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:13 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:14 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:14 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:15 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:15 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:16 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:16 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:17 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:17 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:18 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:18 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:43 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:43 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:46 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 100 104857600 100 104857600 -total 100 104857600 100 104857600 -rate 100 104857600 100 104857600 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:46 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:47 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:47 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:48 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:48 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:49 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:49 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:50 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:50 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:51 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:51 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:51 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:52 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:52 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:53 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:53 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:53 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:54 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:54 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:55 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:55 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:56 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:56 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:57 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:57 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:58 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:58 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:59 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:36:59 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:00 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:00 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:01 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:01 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:02 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:02 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:03 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:03 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:04 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:04 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:05 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:05 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:05 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:06 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:06 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:07 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:07 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:08 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:08 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:09 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:09 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:10 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:10 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:11 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:11 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:12 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:12 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:13 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:13 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:14 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:14 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:15 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:15 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:16 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:16 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:17 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:17 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:18 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:18 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:19 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:19 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:19 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:20 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:20 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:20 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:21 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:21 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:22 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:22 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:23 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:23 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:24 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:24 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:25 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:25 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:25 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:26 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:26 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:27 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:27 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:28 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:28 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:29 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:29 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:30 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:30 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:31 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:31 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:32 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:32 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:33 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:33 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:33 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:34 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:34 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:34 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 100 104857600 100 104857600 -rate(0) 0 0 0 0 -total 100 104857600 100 104857600 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:35 2020============================================================ - REGISTER INJECT FREE -num(0) 99 0 65434 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:37:35 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:44:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:44:59 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Fri Nov 27 18:44:59 2020============================================================ - cached -Bytes(0) 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-11-30 b/example/performance/log/fs2.log.2020-11-30 deleted file mode 100644 index c80b457c..00000000 --- a/example/performance/log/fs2.log.2020-11-30 +++ /dev/null @@ -1,127 +0,0 @@ -============================================================Mon Nov 30 14:56:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:11 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:11 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:12 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:49 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:49 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:49 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:56:50 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:28 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:28 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:29 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:29 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 14:57:30 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:00:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:00:58 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:00:58 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:01 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:01 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:03 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Mon Nov 30 15:01:03 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-12-01 b/example/performance/log/fs2.log.2020-12-01 deleted file mode 100644 index 70dbed8f..00000000 --- a/example/performance/log/fs2.log.2020-12-01 +++ /dev/null @@ -1,1275 +0,0 @@ -============================================================Tue Dec 1 09:58:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 09:58:15 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 09:58:15 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 09:58:16 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 09:58:16 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 09:58:17 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:09 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:09 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:27 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:27 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:40 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 1 1048576 0 0 -total 1 1048576 0 0 -rate 1 1048576 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:40 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:43 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:43 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:54 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:54 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:55 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:55 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:55 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:56 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:01:56 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:00 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:00 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:03 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:03 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:03 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:04 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:04 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:06 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:06 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:07 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:07 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:07 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:10 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:10 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 0 0 -rate(0) 0 0 0 0 -total 1 1048576 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:02:10 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:17:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 1048576 1 1048576 -rate(0) 0 0 1 1048576 -total 1 1048576 1 1048576 -rate 0 0 1 1048576 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:17:40 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 10:17:40 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:00 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:13 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:13 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:23 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:23 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:23 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:24 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:24 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:29 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:29 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:29 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:31 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:31 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:32 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:32 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:32 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:44 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:44 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:46 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:46 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:50 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:50 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:03:50 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:52 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:52 2020============================================================ - REGISTER INJECT FREE -num(0) 2 0 65531 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:52 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 2097152 2 2097152 -rate(0) 2 2097152 2 2097152 -total 2 2097152 2 2097152 -rate 2 2097152 2 2097152 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:56 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:56 2020============================================================ - REGISTER INJECT FREE -num(0) 3 0 65530 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:56 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 2097152 2 2097152 -rate(0) 0 0 0 0 -total 2 2097152 2 2097152 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:57 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:57 2020============================================================ - REGISTER INJECT FREE -num(0) 3 0 65530 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:57 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 2097152 2 2097152 -rate(0) 0 0 0 0 -total 2 2097152 2 2097152 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:58 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:58 2020============================================================ - REGISTER INJECT FREE -num(0) 3 0 65530 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:07:59 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:17:47 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 714161 71377308 696 71270400 -rate(0) 714161 71377308 696 71270400 -total 714160 71377308 696 71270400 -rate 714161 71377308 696 71270400 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:17:47 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 11:17:47 2020============================================================ - cached -Bytes(0) 74568 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:02 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:02 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:02 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:03 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:03 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:01:04 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:12 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:12 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:13 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:48 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:03:48 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:07:31 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:07:31 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:07:31 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:07:32 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:08:59 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:08:59 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:08:59 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:00 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:00 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:01 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:45 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:45 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:46 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:46 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:09:47 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:22:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:22:44 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:22:44 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:04 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:04 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:04 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:11 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:11 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 1 100 0 0 -total 1 100 0 0 -rate 1 100 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:11 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:13 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:13 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:13 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:14 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:14 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:14 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:21 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:23:21 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:36 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:36 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:36 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:46 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:46 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:46 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:48 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:48 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:24:48 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:01 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:01 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:01 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:12 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:12 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:15 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:15 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:42 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:42 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:45 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:45 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:54 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:54 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:25:54 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:06 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:06 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:06 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:08 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:08 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:08 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:12 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:12 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:12 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:15 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:15 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:15 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:16 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:16 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:16 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:17 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:17 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:18 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:18 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:18 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:24 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:24 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:26:24 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:38 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:38 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:38 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:44 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:44 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 2 200 0 0 -rate(0) 0 0 0 0 -total 2 200 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:27:44 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:49:35 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:49:35 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:49:35 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:49:36 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:50:43 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:50:43 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:50:43 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:40 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:40 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:40 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:41 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:41 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 17:51:42 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:01:42 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:01:42 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:01:42 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:01:43 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:09 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:09 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:09 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:21 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:21 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:26 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:26 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:26 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 1 100 0 0 -total 1 100 0 0 -rate 1 100 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:27 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:27 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:27 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:28 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:28 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:28 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:30 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:30 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:30 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:45 2020============================================================ - cached -Bytes(0) 100 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:45 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 1 100 0 0 -rate(0) 0 0 0 0 -total 1 100 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:03:45 2020============================================================ - REGISTER INJECT FREE -num(0) 1 0 65532 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:12:22 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:12:22 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:12:22 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:00 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:00 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:17 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:17 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:17 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:18 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:18 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Tue Dec 1 18:13:19 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ diff --git a/example/performance/log/fs2.log.2020-12-02 b/example/performance/log/fs2.log.2020-12-02 deleted file mode 100644 index 03888ecc..00000000 --- a/example/performance/log/fs2.log.2020-12-02 +++ /dev/null @@ -1,21 +0,0 @@ -============================================================Wed Dec 2 15:37:58 2020============================================================ - rx_pkts rx_bytes tx_pkts tx_bytes -total(0) 0 0 0 0 -rate(0) 0 0 0 0 -total 0 0 0 0 -rate 0 0 0 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Dec 2 15:37:58 2020============================================================ - REGISTER INJECT FREE -num(0) 0 0 65533 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Dec 2 15:37:58 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ -============================================================Wed Dec 2 15:37:59 2020============================================================ - cached -Bytes(0) 0 -total 0 -________________________________________________________________________________________________________________________________________________ |
