diff --git a/Resources/public/images/elastica.png b/Resources/public/images/elastica.png
new file mode 100644
index 0000000..dbde014
Binary files /dev/null and b/Resources/public/images/elastica.png differ
diff --git a/Resources/views/Collector/elastica.html.twig b/Resources/views/Collector/elastica.html.twig
new file mode 100644
index 0000000..899b901
--- /dev/null
+++ b/Resources/views/Collector/elastica.html.twig
@@ -0,0 +1,45 @@
+{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
+
+{% block toolbar %}
+ {% set icon %}
+
+ {% endset %}
+ {% set text %}
+ {{ collector.querycount }}
+ {% endset %}
+ {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %}
+{% endblock %}
+
+{% block menu %}
+
+
+ Elastica
+
+ {{ collector.querycount }}
+
+
+{% endblock %}
+
+{% block panel %}
+ Queries
+
+ {% if not collector.queries %}
+
+ Query logging is disabled.
+
+ {% elseif not collector.querycount %}
+
+ No queries.
+
+ {% else %}
+
+ {% for query in collector.queries %}
+ -
+
+ {{ query }}
+
+
+ {% endfor %}
+
+ {% endif %}
+{% endblock %}
\ No newline at end of file