a lot of fixes, improve visualization speed, add c++ code
diff --git a/configs-examples/default.yaml b/configs-examples/default.yaml
index c3614ba..da50150 100644
--- a/configs-examples/default.yaml
+++ b/configs-examples/default.yaml
@@ -1,22 +1,30 @@
 #  ------------------------------------    CONFIGS   -------------------------------------------------------------------
-fuel:
-    url: http://172.16.44.13:8000/
-    creds: admin:admin@admin
-    ssh_creds: root:r00tme
-    openstack_env: test
-
-openstack:
-    skip_preparation: false
-    openrc: /home/koder/workspace/scale_openrc
-    openrc:
-        user: USER
-        passwd: PASSWD
-        tenant: KEY_FILE
-        auth_url: URL
-        SOME_OTHER_OPTS: OPTIONAL
-    vms:
-        - "USERNAME[:PASSWD]@VM_NAME_PREFIX[::KEY_FILE]"
-
+#fuel:
+#    url: http://172.16.44.13:8000/
+#    creds: admin:admin@admin
+#    ssh_creds: root:r00tme
+#    openstack_env: test
+#
+#openstack:
+#    skip_preparation: false
+#    openrc: /home/koder/workspace/scale_openrc
+#    openrc:
+#        user: USER
+#        passwd: PASSWD
+#        tenant: KEY_FILE
+#        auth_url: URL
+#        SOME_OTHER_OPTS: OPTIONAL
+#    vms:
+#        - "USERNAME[:PASSWD]@VM_NAME_PREFIX[::KEY_FILE]"
+#
+#ceph:
+#    cluster: ceph   << Optional
+#    config: PATH    << Optional
+#    keyfile: PATH   << Optional
+#    key: KEY   << not supported for now
+#    root_node: NODE_NAME
+#
+#
 # nodes: - map of explicit nodes URLS to node roles
 # in format
 #    USERNAME[:PASSWD]@VM_NAME_PREFIX[::KEY_FILE] or localhost: role1, role2, role3....
diff --git a/configs-examples/local_vm_ceph.yml b/configs-examples/local_vm_ceph.yml
new file mode 100644
index 0000000..2c75e31
--- /dev/null
+++ b/configs-examples/local_vm_ceph.yml
@@ -0,0 +1,19 @@
+include: default.yaml
+run_sensors: true
+results_storage: /var/wally_results
+discover: ceph
+
+ceph:
+    root_node: ceph-client
+
+sleep: 0
+
+nodes:
+    koder@ceph-client: testnode
+
+tests:
+  - fio:
+      load: verify
+      params:
+          FILENAME: /dev/rbd0
+          FILESIZE: 4G
diff --git a/configs-examples/perf_lab.yml b/configs-examples/perf_lab.yml
new file mode 100644
index 0000000..b53dfa4
--- /dev/null
+++ b/configs-examples/perf_lab.yml
@@ -0,0 +1,17 @@
+include: default.yaml
+run_sensors: true
+results_storage: /var/wally_results
+discover: ceph
+
+ceph:
+    root_node: root@cz7625
+
+nodes:
+    root@cz7625: testnode
+
+tests:
+  - fio:
+      load: ceph
+      params:
+          FILENAME: /dev/rbd0
+          FILESIZE: 100G
\ No newline at end of file