tgen.client.graphml.xml 1.1 KB

123456789101112131415161718192021222324252627
  1. <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
  2. <key attr.name="peers" attr.type="string" for="node" id="d5" />
  3. <key attr.name="sendsize" attr.type="string" for="node" id="d3" />
  4. <key attr.name="recvsize" attr.type="string" for="node" id="d2" />
  5. <key attr.name="count" attr.type="string" for="node" id="d1" />
  6. <key attr.name="time" attr.type="string" for="node" id="d0" />
  7. <graph edgedefault="directed">
  8. <node id="start">
  9. <data key="d5">fileserver:80</data>
  10. </node>
  11. <node id="stream">
  12. <data key="d2">1 MiB</data>
  13. <data key="d3">1 KiB</data>
  14. </node>
  15. <node id="pause">
  16. <data key="d0">1,2,3,4,5,6,7,8,9,10</data>
  17. </node>
  18. <node id="end">
  19. <data key="d1">10</data>
  20. <data key="d0">3600</data>
  21. </node>
  22. <edge source="start" target="stream" />
  23. <edge source="stream" target="end" />
  24. <edge source="end" target="pause" />
  25. <edge source="pause" target="start" />
  26. </graph>
  27. </graphml>