-
Notifications
You must be signed in to change notification settings - Fork 615
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
log error message when negative samples appear in non-diff_base profiles
- Loading branch information
1 parent
2c569c7
commit cf02d9e
Showing
6 changed files
with
125 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
digraph "unnamed" { | ||
node [style=filled fillcolor="#f8f8f8"] | ||
subgraph cluster_L { "Duration: 10s, Total samples = 11111 " [shape=box fontsize=16 label="Duration: 10s, Total samples = 11111 \lShowing nodes accounting for 10911, 98.20% of 11111 total\l"] } | ||
N1 [label="tee\nsource2:8\n10000 (90.00%)" id="node1" fontsize=24 shape=box tooltip="tee testdata/source2:8 (10000)" color="#b20500" fillcolor="#edd6d5"] | ||
N2 [label="main\nsource1:2\n1 (0.009%)\nof 10911 (98.20%)" id="node2" fontsize=9 shape=box tooltip="main testdata/source1:2 (10911)" color="#b20000" fillcolor="#edd5d5"] | ||
N3 [label="tee\nsource2:2\n1000 (9.00%)\nof 11000 (99.00%)" id="node3" fontsize=14 shape=box tooltip="tee testdata/source2:2 (11000)" color="#b20000" fillcolor="#edd5d5"] | ||
N4 [label="tee\nsource2:8\n-100 (0.9%)" id="node4" fontsize=10 shape=box tooltip="tee testdata/source2:8 (-100)" color="#b0b2aa" fillcolor="#ecedec"] | ||
N5 [label="bar\nsource1:10\n10 (0.09%)" id="node5" fontsize=9 shape=box tooltip="bar testdata/source1:10 (10)" color="#b2b2b1" fillcolor="#ededed"] | ||
N6 [label="bar\nsource1:10\n0 of -100 (0.9%)" id="node6" fontsize=8 shape=box tooltip="bar testdata/source1:10 (-100)" color="#b0b2aa" fillcolor="#ecedec"] | ||
N7 [label="foo\nsource1:4\n0 of 10 (0.09%)" id="node7" fontsize=8 shape=box tooltip="foo testdata/source1:4 (10)" color="#b2b2b1" fillcolor="#ededed"] | ||
N2 -> N3 [label=" 11000" weight=100 penwidth=5 color="#b20000" tooltip="main testdata/source1:2 -> tee testdata/source2:2 (11000)" labeltooltip="main testdata/source1:2 -> tee testdata/source2:2 (11000)"] | ||
N3 -> N1 [label=" 10000" weight=91 penwidth=5 color="#b20500" tooltip="tee testdata/source2:2 -> tee testdata/source2:8 (10000)" labeltooltip="tee testdata/source2:2 -> tee testdata/source2:8 (10000)"] | ||
N6 -> N4 [label=" -100" color="#b0b2aa" tooltip="bar testdata/source1:10 -> tee testdata/source2:8 (-100)" labeltooltip="bar testdata/source1:10 -> tee testdata/source2:8 (-100)"] | ||
N2 -> N6 [label=" -100" color="#b0b2aa" tooltip="main testdata/source1:2 -> bar testdata/source1:10 (-100)" labeltooltip="main testdata/source1:2 -> bar testdata/source1:10 (-100)"] | ||
N7 -> N5 [label=" 10" color="#b2b2b1" tooltip="foo testdata/source1:4 -> bar testdata/source1:10 (10)" labeltooltip="foo testdata/source1:4 -> bar testdata/source1:10 (10)"] | ||
N2 -> N7 [label=" 10" color="#b2b2b1" tooltip="main testdata/source1:2 -> foo testdata/source1:4 (10)" labeltooltip="main testdata/source1:2 -> foo testdata/source1:4 (10)"] | ||
} |