Skeleton and sensors works
diff --git a/configs-examples/default.yaml b/configs-examples/default.yaml
index de17d30..af4ca5f 100644
--- a/configs-examples/default.yaml
+++ b/configs-examples/default.yaml
@@ -1,11 +1,14 @@
 #  ------------------------------------    CONFIGS   -------------------------------------------------------------------
 collect_info: true
-var_dir_root: /tmp/perf_tests
+results_dir: /tmp/perf_tests
 settings_dir: ~/.wally
+connect_timeout: 30
+download_rpc_logs: true
+rpc_log_level: DEBUG
 
 logging:
-    extra_logs: 1
     level: DEBUG
+#   config: logger.yaml
 
 vm_configs:
     keypair_file_private: wally_vm_key_perf3.pem
@@ -38,11 +41,20 @@
    online: true
    roles_mapping:
        testnode: system-cpu, block-io, net-io
-       ceph-osd: system-cpu, block-io, net-io, ceph
+       ceph-osd:
+            system-cpu: ".*"
+            block-io: ".*"
+            net-io: ".*"
+            ceph:
+                counters:
+                  - osd/op_r
+                  - osd/op_w
+                  - osd/op_r_out_bytes
+                  - osd/op_w_in_bytes
        compute:
-            system-cpu: *
-            block-io: sd*
-            net-io: *
+            system-cpu: ".*"
+            block-io: "sd?"
+            net-io: ".*"
 
 #----------------------------------   TEST PROFILES --------------------------------------------------------------------
 profiles:
diff --git a/configs-examples/local_lxc_ceph.yaml b/configs-examples/local_lxc_ceph.yaml
index 03b5185..23ca523 100644
--- a/configs-examples/local_lxc_ceph.yaml
+++ b/configs-examples/local_lxc_ceph.yaml
@@ -1,4 +1,7 @@
 include: default.yaml
+collect_info: false
 
 ceph:
-    root_node: local
+    root_node: localhost
+
+sleep: 60
diff --git a/configs-examples/logger.yaml b/configs-examples/logger.yaml
new file mode 100644
index 0000000..6d833c3
--- /dev/null
+++ b/configs-examples/logger.yaml
@@ -0,0 +1,24 @@
+formatters:
+    default:
+        format: '%(asctime)s - %(levelname)8s - %(name)-15s - %(message)s'
+        datefmt: '"%H:%M:%S"'
+    custom:
+        (): my.package.customFormatterFactory
+        bar: baz
+        spam: 99.9
+        answer: 42
+
+handlers:
+    email:
+        class: logging.handlers.SMTPHandler
+        mailhost: localhost
+        fromaddr: my_app@domain.tld
+        toaddrs:
+          - support_team@domain.tld
+          - dev_team@domain.tld
+        subject: Houston, we have a problem.
+
+loggers:
+  foo.bar.baz:
+    # other configuration for logger 'foo.bar.baz'
+    handlers: [h1, h2]
\ No newline at end of file