Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Elastic Stack

You're reading from   Mastering Elastic Stack Dive into data analysis with a pursuit of mastering ELK Stack on real-world scenarios.

Arrow left icon
Product type Paperback
Published in Feb 2017
Publisher Packt
ISBN-13 9781786460011
Length 526 pages
Edition 1st Edition
Arrow right icon
Authors (2):
Arrow left icon
Ravi Kumar Gupta Ravi Kumar Gupta
Author Profile Icon Ravi Kumar Gupta
Ravi Kumar Gupta
Yuvraj Gupta Yuvraj Gupta
Author Profile Icon Yuvraj Gupta
Yuvraj Gupta
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Elastic Stack Overview FREE CHAPTER 2. Stepping into Elasticsearch 3. Exploring Logstash and Its Plugins 4. Kibana Interface 5. Using Beats 6. Elastic Stack in Action 7. Customizing Elastic Stack 8. Elasticsearch APIs 9. X-Pack: Security and Monitoring 10. X-Pack: Alerting, Graph, and Reporting 11. Best Practices 12. Case Study-Meetup

Monitoring APIs


In this section, we will have a look at the various APIs currently exposed in Logstash to retrieve runtime metric information.

By default, API binds to 127.0.0.1 and picks up the first available port in the range of 9600-9700. But if another instance of Logstash is running, let's say at port 9600 , then you would need to specify the new port on which Logstash will run using following command:

bin/logstash --http.port 9602

You can get basic information when Logstash runs by opening http://localhost:9600 in your browser or run the following command from the command line:

curl -X GET http://localhost:9600?pretty

The response of the preceding command is as follows:

    {
       "host": "ubuntu",
       "version": "5.1.1",
       "http_address": "127.0.0.1:9600"
       "id" : "6d32ec3e-700b-48eb-bbc3-6a48b2b00f9e",
       "name" : "ubuntu",
       "build_date" : "2016-12-06T13:17:53+00:00",
       "build_sha" : "aa36c4f4b702c6d379e5a97c22627933bca04f68...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime