diff --git a/README.md b/README.md
index 74706e1..3ee4af4 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
+
Statful Collector AWS
==============
[npm-url]: https://npmjs.org/package/statful-collector-aws
@@ -5,15 +6,20 @@ Statful Collector AWS
[![NPM version][npm-image]][npm-url] [![Build Status](https://travis-ci.org/statful/statful-collector-aws.svg?branch=master)](https://travis-ci.org/statful/statful-collector-aws)
-Staful Collector AWS built in NodeJS. This is intended to collect metrics from AWS CloudWatch and send them to Statful.
+Staful Collector AWS is built in NodeJS. This collector is intended to gather metrics from *AWS CloudWatch* and send them to Statful.
## Table of Contents
* [Supported NodeJS Versions](#supported-nodejs-versions)
* [Installation](#installation)
* [Quick Start](#quick-start)
-* [Examples](#examples)
* [Reference](#reference)
+ * [CLI](#cli)
+ * [Configuration File](#configuration-file)
+* [Examples](#examples)
+ * [Collect a List of Metrics](#collect-a-list-of-metrics)
+ * [Collect a Metric with Different Dimensions](#collect-a-metric-with-different-dimensions)
+ * [Collect Metrics from Multiple Regions](#collect-metrics-from-multiple-regions )
* [Authors](#authors)
* [License](#license)
@@ -30,23 +36,98 @@ Staful Collector AWS built in NodeJS. This is intended to collect metrics from A
$ npm install -g statful-collector-aws
```
-## Quick start
+## Quick Start
-After installing Statful Collector AWS you are ready to use it. The quickest way is to do the following:
+After installing Statful Collector AWS, you are ready to start using it. You can use it straight away by doing:
```bash
$ statful-collector-aws generate-config /etc/statful-collector-aws/conf/
-# Update some info in the statful-collector-aws-conf.json: accessKeyId, secretAccessKey and the statful api token
+# Update the access details in the statful-collector-aws-conf.json: accessKeyId, secretAccessKey, and the Statful's API token
$ statful-collector-aws start /etc/statful-collector-aws/conf/statful-collector-aws-conf.json
```
+
+## Reference
+
+The following section presents a detailed reference of the available options to take full advantage from the Statful Collector AWS.
+
+### CLI
+Here we provide a set of instructions to get started with calls to the service/collector. These refer to the AWS Command Line Interface [syntax](https://aws.amazon.com/cli/).
+
+
+Create a default configuration at the given path. If the given path doesn't exist, it is created based on the user’s input.
+```bash
+$ statful-collector-aws generate-config
+```
+
+Start the collector with the existing configuration on the given path.
+```bash
+$ statful-collector-aws start
+```
+
+Start the collector managed by PM2 with the existing configuration on the given path.
+```bash
+$ statful-collector-aws start-managed
+```
+
+Stop the collector managed by PM2.
+```bash
+$ statful-collector-aws stop-managed
+```
+
+Restart the collector managed by PM2.
+```bash
+$ statful-collector-aws restart-managed
+```
+
+Display a help screen listing built-in commands, each with a brief description.
+```bash
+$ statful-collector-aws help
+```
+
+
+### Configuration File
+
+In the configuration file, you will find three distinct sections: `statfulCollectorAws`, `bunyan`, `statfulClient`. Here we identify the options that define them.
+
+**StatfulCollectorAWS**
+
+| Option | Description | Type | Default | Required |
+|:---|:---|:---|:---|:---|
+| _credentials_ | Defines the credentials required to access AWS. | `object` | **none** | **YES** |
+| _period_ | Defines the global output level, in **seconds**.
**Valid Periods:** `60, 120, 180, 300` | `number` | 60 | **YES** |
+| _statistics_ | Defines which statistics data should be collected from AWS.
**Valid Statistics:** `SampleCount, Average, Sum, Minimum, Maximum` | `array` | `["SampleCount", "Average", "Sum", "Minimum", "Maximum"]` | **YES** |
+| _metricsList_ | Defines metrics to collect from AWS. Here you should only configure the `metricsPerRegion` which is an object organized by AWS region. Inside each region you should set a list of metrics object to collect. Each metric object supports a `Namespace`, `MetricName`, and `Dimensions`.| `object` | **none** | **YES** |
+| _signals_ | Defines the process signals for which the collector should be stopped. You can add any valid NodeJS signal. | `array` | `["SIGTERM", "SIGINT", "SIGABRT", "SIGUSR2"]` | **YES** |
+>To get more information about the metrics object, or related to AWS entities, please refer to the AWS documentation ([AWS Metric Reference](http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Metric.html) and [Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference](http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CW_Support_For_AWS.html)) and the [Examples](https://github.com/statful/statful-collector-aws/blob/master/README.md#examples) section.
+
+**Bunyan**
+
+Next, you will only find the description to some of the Bunyan configuration options, but you can use all of the supported configurations by Bunyan.
+
+| Option | Description | Type | Default | Required |
+|:---|:---|:---|:---|:---|
+| _name_ | Defines the logger name. | `string` | **none** | **YES** |
+| _level_ | Defines the global output level. | `string` | **none** | **NO** |
+| _streams_ | Define the logger streams. By default, when the value is an empty array, the logger will output to `process.stdout`. | `array` | `[]` | **YES** |
+
+> To get more information, please read the [Bunyan documentation](https://github.com/trentm/node-bunyan).
+
+**StatfulClient**
+
+Find more information about this specific client on the [Statful Client NodeJS documentation](https://github.com/statful/statful-client-nodejs).
+
+
+
## Examples
-You can find here some useful usage examples of the Statful Collector AWS. In the following examples are assumed you have already installed the collector globally and followed the [Quick Start](#quick-start).
+Here you can find some useful usage examples of the Statful Collector AWS. In the following examples, we assume that you have already installed the collector with success and followed through the [Quick Start](#quick-start).
+
+### Collect a List of Metrics
-### Collect a list of metrics
+Collect the metrics that you want from the full possible list of metrics received from AWS. Please check the StatfulCollectorAWS [reference](https://github.com/statful/statful-collector-aws#configuration) for more details.
```json
{
@@ -82,7 +163,9 @@ You can find here some useful usage examples of the Statful Collector AWS. In th
}
```
-### Collect a metric with different dimensions
+### Collect a Metric with Different Dimensions
+
+A dimension, as read in the AWS [docs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Dimension), is a name/value pair that uniquely identifies a metric. You can specify a maximum of 10 dimensions for a given metric. Here’s an example on collecting a metric with a set of dimensions:
```json
{
@@ -128,7 +211,9 @@ You can find here some useful usage examples of the Statful Collector AWS. In th
}
```
-### Collect metrics from more than one region
+### Collect Metrics from Multiple Regions
+
+Most of the Amazon Web Services offer a regional endpoint to make your requests. The full list of available regions is presented [here](https://docs.aws.amazon.com/general/latest/gr/rande.html). Statful also allows you to collect metrics from multiple regions - check the example below.
```json
{
@@ -162,78 +247,6 @@ You can find here some useful usage examples of the Statful Collector AWS. In th
}
```
-## Reference
-
-Detailed reference if you want to take full advantage from Statful Collector AWS.
-
-### CLI
-
-```bash
-$ statful-collector-aws generate-config
-```
-
-Creates a default configuration at the given path. If the given path doesn't exists, it will be created.
-
-```bash
-$ statful-collector-aws start
-```
-
-Starts the collector with the config on given path.
-
-```bash
-$ statful-collector-aws start-managed
-```
-
-Starts the collector managed by pm2 with the config on given path.
-
-```bash
-$ statful-collector-aws stop-managed
-```
-
-Stops the collector managed by pm2.
-
-```bash
-$ statful-collector-aws restart-managed
-```
-
-Restarts the collector managed by pm2.
-
-```bash
-$ statful-collector-aws help
-```
-
-Shows a small help for the collector.
-
-### Configuration
-
-In the configuration file you can find 3 main sections: `statfulCollectorAws`, `bunyan`, `statfulClient`.
-
-**StatfulCollectorAWS**
-
-| Option | Description | Type | Default | Required |
-|:---|:---|:---|:---|:---|
-| _credentials_ | Defines the credentials to access AWS. | `object` | **none** | **YES** |
-| _period_ | Defines the global output level **in seconds**. **Valid Periods:** `60, 120, 180, 300` | `number` | 60 | **YES** |
-| _statistics_ | Define the statistcs for which data should be collected. **Valid Statistics:** `SampleCount, Average, Sum, Minimum, Maximum` | `array` | `["SampleCount", "Average", "Sum", "Minimum", "Maximum"]` | **YES** |
-| _metricsList_ | Defines metrics to collect from AWS. Here you should only configure the `metricsPerRegion` which is an object organized by AWS region. Inside each region you should set a list of metrics object to collect. Each metric object supports a `Namespace`, `MetricName` and `Dimensions`. Please check the AWS documentation ([AWS Metric Reference](http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Metric.html) and [Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference](http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CW_Support_For_AWS.html)) and the [Examples](#examples) section to get more information about the metrics object. | `object` | **none** | **YES** |
-| _signals_ | Defines the proccess signals for which collector should be stopped. Any valid NodeJS signal can be added. | `array` | `["SIGTERM", "SIGINT", "SIGABRT", "SIGUSR2"]` | **YES** |
-
-**Bunyan**
-
-| Option | Description | Type | Default | Required |
-|:---|:---|:---|:---|:---|
-| _name_ | Defines the logger name. | `string` | **none** | **YES** |
-| _level_ | Defines the global output level. | `string` | **none** | **NO** |
-| _streams_ | Define the logger streams. By default, when the value is an empty array, logger will output to `proccess.stdout`. | `array` | `[]` | **YES** |
-
-> **NOTE:** We had only documented some bunyan config fields here but you can set all the supported configs by Bunyan.
-
-To get more information please read the [Bunyan documentation](https://github.com/trentm/node-bunyan).
-
-**StatfulClient**
-
-To get help and information about this specific client please read the [Statful Client NodeJS documentation](https://github.com/statful/statful-client-nodejs).
-
## Authors
[Mindera - Software Craft](https://github.com/Mindera)