From 87d2a7cf96c4633c991796bfbfc1bd15baf556ae Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Mon, 25 Jun 2018 20:13:23 -0700 Subject: [PATCH] Updated Types of Monitoring (markdown) --- Types-of-Monitoring.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Types-of-Monitoring.md b/Types-of-Monitoring.md index 5bf3846..2888018 100644 --- a/Types-of-Monitoring.md +++ b/Types-of-Monitoring.md @@ -1,5 +1,8 @@ # HTTP Endpoints +You can monitor your application by using a simple HTTP GET to the endpoint to return back a response and status code. Normally you want a 200 status code on an HTTP request. # HTTP Endpoints with Custom POST +For more advanced monitoring you can add a data as a HTTP POST request. This is useful for automatically submitting JSON, or making sure your signup form is working correctly. -# TCP Services \ No newline at end of file +# TCP Services +For other services that don't use HTTP, you can monitor any type of service by using the PORT of the service. If you're Ethereum Blockchain server is running on 8545, you can use TCP to monitor your server. \ No newline at end of file