Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit d1a4468

Browse files
committedApr 9, 2017
Update message passing image
1 parent 88a03e5 commit d1a4468

File tree

1 file changed

+27
-9
lines changed

1 file changed

+27
-9
lines changed
 

‎index.html

+27-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h2>What is Erlang Performance Lab ?</h2>
3131

3232
<!-- Two -->
3333
<section id="two" class="wrapper alt style2">
34-
<section class="spotlight">
34+
<!-- DASHBOARD -->
35+
<section class="spotlight">
3536
<div class="image"><img src="images/erlanglab_dashboard.png" alt="" /></div><div class="content">
3637
<h2>Dashboard</h2>
3738
<p>Gives high level overview of the current system throughput,
@@ -43,27 +44,44 @@ <h2>Dashboard</h2>
4344
</p>
4445
</div>
4546
</section>
46-
<section class="spotlight">
47-
<div class="image"><img src="images/erlanglab_st.png" alt="" /></div><div class="content">
47+
48+
<!-- MESSAGE PASSING -->
49+
<section class="spotlight">
50+
<div class="image"><img src="images/erlanglab_message_passing.png" alt="" /></div><div class="content">
4851
<h2>Message passing graph</h2>
4952
<p>In Erlang-based systems processes share data through message passing.
5053
If certain processes receive more messages than they can handle,
5154
their inbox queue starts growing. Over time it can lead to bottlenecks.
5255
The graph visualises which processes communicate extensively
53-
and highlights them in red, so you know which ones to click and inspect.
54-
You can even put on a pair of 3D glasses
55-
and admire the beauty of complex systems visualisations.
56+
allowing you to easy spot key places slowing down your application.
Has a comment. Original line has a comment.
5657
</p>
5758
</div>
5859
</section>
60+
61+
<!-- TRAFFIC -->
5962
<section class="spotlight">
6063
<div class="image"><img src="images/erlanglab_traffic.png" alt="" /></div><div class="content">
6164
<h2>Traffic graph</h2>
62-
<p>
63-
Gaining visibility into network traffic in distributed systems is of great importance as it helps to understand the behaviour of the entire system, which can consist of more than one Erlang node.
64-
Graphical representation of clustering helps grasp the inter-node traffic patterns and allows displaying traffic data on a graph of nodes.</p>
65+
<p>Gaining visibility into network traffic in distributed systems is of great
66+
importance as it helps to understand the behaviour of the entire system,
67+
which can consist of more than one Erlang node.
68+
Graphical representation of clustering helps grasp the inter-node traffic
69+
patterns and allows displaying traffic data on a graph of nodes.
70+
</p>
6571
</div>
6672
</section>
73+
74+
<!-- SUPERVISION TREE -->
75+
<!-- <section class="spotlight">
76+
<div class="image"><img src="images/erlanglab_st.png" alt="" /></div><div class="content">
77+
<h2>Supervision tree</h2>
78+
<p>May help you understand internal structure of your application.
79+
This view allows you to monitor spawns and exits of your processes.
80+
Visualizing failure and recovery can help you to understand relations
81+
between workers and supervisors.
82+
</p>
83+
</div>
84+
</section> -->
6785
</section>
6886

6987
<!-- CTA -->

0 commit comments

Comments
 (0)
This repository has been archived.