diff --git a/Aggregation/SumAggregation.php b/Aggregation/SumAggregation.php
new file mode 100644
index 0000000000000000000000000000000000000000..28b07f2a3e2873684dbd3818e5ed466df92ccc9b
--- /dev/null
+++ b/Aggregation/SumAggregation.php
@@ -0,0 +1,26 @@
+<?php
+
+/*
+ * This file is part of the ONGR package.
+ *
+ * (c) NFQ Technologies UAB <info@nfq.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace ONGR\ElasticsearchBundle\DSL\Aggregation;
+
+/**
+ * Class representing Sum Aggregation.
+ */
+class SumAggregation extends StatsAggregation
+{
+    /**
+     * {@inheritdoc}
+     */
+    public function getType()
+    {
+        return 'sum';
+    }
+}