From 87ca562b32a63ba4e761b32093cac811a968bca6 Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Fri, 29 Jun 2018 15:02:49 +0200 Subject: [PATCH 1/2] docs: fix markdown headings --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b1cfef8..9ea2ba1 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,13 @@ The connector sends the following data values to StatsD from Node Application Me * `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** @@ -65,13 +65,13 @@ The connector sends the following data values to StatsD from Node Application Me * `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** @@ -79,19 +79,19 @@ The connector sends the following data values to StatsD from Node Application Me * `socketio.emit.` the time taken for the emit to a single client of the named socketio event. * `socketio.receive.` 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** @@ -100,31 +100,31 @@ The connector sends the following data values to StatsD from Node Application Me * `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.` the time taken for the given Redis command to be responded to in ms. -####Memcached Operations +#### Memcached Operations **Timers** * `memcached.` 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..` the time taken for a MQTT message to handled on a given topic in ms. -####MQLight Messaging +#### MQLight Messaging **Timers** From efab28aae10ee225e3823acaed0baa3713aaf59b Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Wed, 26 Aug 2020 16:51:38 +0200 Subject: [PATCH 2/2] update AUTHORS.md (agree with CLA) --- AUTHORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS.md b/AUTHORS.md index 319a7b6..ceb1c5b 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -4,4 +4,5 @@ Authors ordered by first contribution: - Chris Bailey (https://github.com/seabaylea) - Toby Corbin (https://github.com/tobespc) - Matt Colegate (https://github.com/mattcolegate) - - Steve Kehlet (https://github.com/skehlet) \ No newline at end of file + - Steve Kehlet (https://github.com/skehlet) + - Honza Javorek (https://github.com/honzajavorek)