diff --git a/examples/plugins/traffic-control/README.md b/examples/plugins/traffic-control/README.md
new file mode 100644
index 000000000..ed90cf1f6
--- /dev/null
+++ b/examples/plugins/traffic-control/README.md
@@ -0,0 +1,17 @@
+# Traffic Control Plugin
+
+The Traffic Control plugin allows to modify the performance parameters of container's network interfaces. The following images show a simple example of how **status** and **controls** are displayed in scope UI.
+
+
+
+## Visualization
+
+The parameters are shown in a table named **Traffic Control**. The plugin shows the values of latency and packet loss that are enforced on the network interface. The "-" mean that no value is set for that parameter, latency is displayed in *milliseconds* (ms) and packet loss in *percentage*.
+
+## Controls
+
+The Traffic Controls plugin provides a simple interface to change the value of latency (hourglass buttons) and packet loss (scissor button) or remove value that was set (circled cross button). Such buttons are displayed on the top of the container detailed view, just above the STATUS section (See picture below, control are shown inside the red rectangle).
+
+
+
+The *hourglass* buttons control the latency value, from left to right they set: 2000ms, 1000ms, and 500ms. The *scissor* button controls the packet loss value, it set a 10% packet loss. The *circled cross* button clear any previous settings.
diff --git a/examples/plugins/traffic-control/imgs/container_view.png b/examples/plugins/traffic-control/imgs/container_view.png
new file mode 100644
index 000000000..7037b44ed
Binary files /dev/null and b/examples/plugins/traffic-control/imgs/container_view.png differ
diff --git a/examples/plugins/traffic-control/imgs/controls.png b/examples/plugins/traffic-control/imgs/controls.png
new file mode 100644
index 000000000..ed3f6f931
Binary files /dev/null and b/examples/plugins/traffic-control/imgs/controls.png differ
diff --git a/examples/plugins/traffic-control/report.go b/examples/plugins/traffic-control/report.go
index 3c0e5322d..50e7cc958 100644
--- a/examples/plugins/traffic-control/report.go
+++ b/examples/plugins/traffic-control/report.go
@@ -251,7 +251,7 @@ func getLatencyControls() []extControl {
Rank: 21,
},
handler: func(pid int) error {
- return DoTrafficControl(pid, "300ms", "")
+ return DoTrafficControl(pid, "1000ms", "")
},
},
{
@@ -262,7 +262,7 @@ func getLatencyControls() []extControl {
Rank: 22,
},
handler: func(pid int) error {
- return DoTrafficControl(pid, "1ms", "")
+ return DoTrafficControl(pid, "500ms", "")
},
},
}