Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markdown headings #10

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Authors ordered by first contribution:
- Toby Corbin (https://github.com/tobespc)
- Matt Colegate (https://github.com/mattcolegate)
- Steve Kehlet (https://github.com/skehlet)
- Honza Javorek (https://github.com/honzajavorek)
- Jeremy Jackson (https://github.com/jeremy-j-ackso)
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ also includes additional functionality for users of Datadog and Telegraf. See th
* `memory.system.used` the total amount of RAM in use on the system in bytes.
* `memory.system.total` the total amount of RAM available on the system in bytes.

####Event Loop
#### Event Loop

* `eventloop.latency.min` the shortest sampled latency for processing an event
* `eventloop.latency.max` the longest sampled latency for processing an event
* `eventloop.latency.avg` the mean sampled latency for processing an event

####Garbage Collection
#### Garbage Collection

**Gauges**

Expand All @@ -69,33 +69,33 @@ also includes additional functionality for users of Datadog and Telegraf. See th

* `gc.duration` the duration of the GC cycle in milliseconds.

####HTTP Requests
#### HTTP Requests

**Timers**

* `http` the time taken for the HTTP request to be responded to in ms.

####Socket.io
#### Socket.io

**Timers**

* `socketio.broadcast.<event>` the time taken for the broadcast to all clients of the named socketio event.
* `socketio.emit.<event>` the time taken for the emit to a single client of the named socketio event.
* `socketio.receive.<event>` the time taken for a received named socketio event to be handled.

####MySQL Queries
#### MySQL Queries

**Timers**

* `mysql` the time taken for the given MySQL query to be responded to in ms.

####MongoDB Queries
#### MongoDB Queries

**Timers**

* `mongo` the time taken for the given MongoDB query to be responded to in ms.

####Leveldown Queries
#### Leveldown Queries

**Timers**

Expand All @@ -104,31 +104,31 @@ also includes additional functionality for users of Datadog and Telegraf. See th
* `levedown.del` the time taken for the Leveldown `del` to be responded to in ms.
* `levedown.batch` the time taken for the Leveldown `batch` to be run in ms.

####Redis Queries
#### Redis Queries

**Timers**

* `redis.<cmd>` the time taken for the given Redis command to be responded to in ms.

####Memcached Operations
#### Memcached Operations

**Timers**

* `memcached.<method>` the time taken for the given Memcached method to be responded to in ms.

####PostgreSQL Queries
#### PostgreSQL Queries

**Timers**

* `postgres` the time taken for the given PostgresSQL query to be responded to in ms.

####MQTT Messaging
#### MQTT Messaging

**Timers**

* `mqtt.<method>.<topic>` the time taken for a MQTT message to handled on a given topic in ms.

####MQLight Messaging
#### MQLight Messaging

**Timers**

Expand Down