zoukankan      html  css  js  c++  java
  • ONE的输出统计

    ONE的输出统计,参见邮件列表的这封邮件: Hi, The best way to find answers to these kinds of questions is to look at the code. On 3.5.2011 21.43, "Denis Silva"  wrote: >created: 1461 -  This is the total messages generated? Yes. >started: 58338 - This is the total numbers of copies generated by the >routing protocol? It is the number of times nodes started to transmit a message. >  >relayed: 31054 - This is the total of copies relayed? It is the number of times a message was successfully transmitted from one node to another. >What is the difference between aborted: 27283 and dropped: 30959? Aborted is the number of times a transmission of a message from one node to another was stopped before the message was fully transmitted. Dropped refers to the router dropping a message from its queue due to, e.g., the buffer being full or the message TTL having expired. >delivered: 364 - is the total number of messages delivered to a total of >1461? Yes. >overhead_ratio: What is this? is in relation to the started? It's some measure of how much "overhead" there was in relation to delivered messages, defined as: overHead = (1.0 * (this.nrofRelayed - this.nrofDelivered)) /     this.nrofDelivered So if every message was delivered directly from the source to destination without relaying through intermediate nodes the overhead would be zero. The more times message copies are relayed the higher the overhead becomes. Cheers, -Teemu _______________________________________________ theONE mailing list theONE@netlab.tkk.fi https://www.netlab.tkk.fi/mailman/listinfo/theone
  • 相关阅读:
    JUC学习笔记--从阿里Java开发手册学习线程池的正确创建方法
    1.初识Python
    学会 Debug
    如何找出nginx配置文件的所在位置?
    一个技术人,如何做到比别人更突出
    生产环境如何快速跟踪、分析、定位问题-Java
    如何优化代码中大量的if/else,switch/case?
    UML类图几种关系的总结
    DateUtils常用方法
    如何存储和表示数字—二进制(一)
  • 原文地址:https://www.cnblogs.com/jcleung/p/2068834.html
Copyright © 2011-2022 走看看