{"id":8147,"date":"2024-09-09T09:16:55","date_gmt":"2024-09-09T03:46:55","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8147"},"modified":"2024-09-09T09:16:59","modified_gmt":"2024-09-09T03:46:59","slug":"elk-stack-configuring-logging","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/","title":{"rendered":"ELK Stack Configuring Logging."},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction:<\/strong><\/h2>\n\n\n\n<p>The ELK Stack (Elasticsearch, Logstash, and Kibana) is the world\u2019s most popular open-source log analysis platform. ELK is quickly overtaking existing proprietary solutions and becoming companies\u2019 top choice for log analysis and management solutions.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Elasticsearch: Stores and indexes transformed data from Logstash.<\/li>\n\n\n\n<li>Logstash: Collect logs and event data. It also parses and transforms data and sends it to Elasticsearch.<\/li>\n\n\n\n<li>Kibana: A visualization tool that runs alongside Elasticsearch to allow users to analyze data and build powerful reports.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Configuring and using ELK Stack :<\/strong><\/h2>\n\n\n\n<p><strong>Installation<\/strong> (Debian-package):<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">curl -fsSL https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch |sudo gpg --dearmor -o \/usr\/share\/keyrings\/elastic.gpg&lt;br&gt;2. echo \"deb [signed-by=\/usr\/share\/keyrings\/elastic.gpg]\nhttps:\/\/artifacts.elastic.co\/packages\/7.x\/apt stable main\" | sudo tee -a \/etc\/apt\/sources.list.d\/elastic-7.x.list\nsudo apt update\nsudo apt install elasticsearch<\/pre>\n\n\n\n<p><strong>Configurations<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li> Elasticsearch is now installed and ready to be configured. Use your preferred text editor to edit Elastic Search&#8217;s main configuration file,&nbsp;<code>elasticsearch.yml<\/code><\/li>\n\n\n\n<li>The&nbsp;<code>elasticsearch.yml<\/code>&nbsp;file provides configuration options for your cluster, node, paths, memory, network, discovery, and gateway. Most of these options are preconfigured in the file but you can change them according to your needs.<\/li>\n\n\n\n<li>Elasticsearch listens for traffic from everywhere on the port&nbsp;<code>9200<\/code>.<\/li>\n\n\n\n<li>Start the Elasticsearch service with&nbsp;<code>systemctl<\/code>.<\/li>\n<\/ul>\n\n\n\n<p><strong>Installing and Configuring the Kibana Dashboard<\/strong> : <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>We should install Kibana only after installing Elasticsearch.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"plain\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"1\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt install kibana\nsudo systemctl enable kibana\nsudo systemctl start kibana<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Kibana is configured only to listen on localhost, we must set up a&nbsp;reverse proxy&nbsp;to allow external access by configuring the web server Apache\/Nginx.<\/li>\n\n\n\n<li>use the&nbsp;<code>openssl<\/code>&nbsp;command to create an administrative Kibana user which you\u2019ll use to access the Kibana web interface. As an example, we will name this account&nbsp;<code><mark>kibanaadmin<\/mark><\/code>.<\/li>\n\n\n\n<li>The below command will create the administrative Kibana user and password, and store them in the&nbsp;htpasswd.users&nbsp;file to access the Kibana dashboard (nginx webserver authentication access)<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">echo \"kibanaadmin:&lt;code&gt;openssl passwd -apr1&lt;\/code&gt;\" | sudo tee -a \/etc\/nginx\/htpasswd.users<\/pre>\n\n\n\n<p><strong>Installing and Configuring Logstash<\/strong> :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Logstash allows you more flexibility to collect data from different sources, transform it into a common format, and export it to another database.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo apt install logstash<\/pre>\n\n\n\n<p>Create a configuration file called&nbsp;<code>logstash-input.conf<\/code> under \/etc\/logstash\/conf.d path.<\/p>\n\n\n\n<p>Insert the following&nbsp;<code>input<\/code>&nbsp;configuration. This specifies a&nbsp;<code>beats<\/code>&nbsp;input that will listen on TCP port&nbsp;<code>5044<\/code>.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">input {\n  beats {\n    port =&gt; 5044\n  }\n}<\/pre>\n\n\n\n<p>Next, create a configuration file called&nbsp;<code>elasticsearch-output.conf<\/code> under \/etc\/logstash\/conf.d path enter the below commands.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">output {\n  if [@metadata][pipeline] {\n\telasticsearch {\n  \thosts =&gt; [\"localhost:9200\"]\n  \tmanage_template =&gt; false\n  \tindex =&gt; \"%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}\"\n  \tpipeline =&gt; \"%{[@metadata][pipeline]}\"\n\t}\n  } else {\n\telasticsearch {\n  \thosts =&gt; [\"localhost:9200\"]\n  \tmanage_template =&gt; false\n  \tindex =&gt; \"%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}\"\n\t}\n  }\n}<\/pre>\n\n\n\n<p>Test your Logstash configuration with this command :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo -u logstash \/usr\/share\/logstash\/bin\/logstash --path.settings \/etc\/logstash -t<\/pre>\n\n\n\n<p>Then restart the logstash services.<\/p>\n\n\n\n<p><strong>Configuring Filebeat :<\/strong><\/p>\n\n\n\n<p>The Filebeat configuration file is located on \/etc\/filebeat\/filebeat.yml.<br>Filebeat will not need to send any data directly to Elasticsearch, so let\u2019s disable that output. To do so, find the output.elasticsearch section and comment out.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The functionality of Filebeat can be extended with&nbsp;Filebeat<a href=\"https:\/\/www.elastic.co\/guide\/en\/beats\/filebeat\/7.6\/filebeat-modules.html\" target=\"_blank\" rel=\"noreferrer noopener\"> <\/a>modules. In this documentation we will use the&nbsp;system&nbsp;module, which collects and parses logs created by the system logging service of common Linux distributions.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"plain\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"1\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo filebeat modules enable system\nsudo filebeat modules list<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Filebeat is configured to use default paths for the syslog and authorization logs. In the case of this tutorial, you do not need to change anything in the configuration. You can see the parameters of the module in the&nbsp;<code>\/etc\/filebeat\/modules.d\/system.yml<\/code>&nbsp;configuration file.<\/li>\n\n\n\n<li>Next, load the index template into Elasticsearch. An&nbsp;Elasticsearch index&nbsp;is a collection of documents that have similar characteristics.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo filebeat setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=[\"localhost:9200\"]'<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Filebeat comes packaged with sample Kibana dashboards that allow you to visualize Filebeat data in Kibana. Before you can use the dashboards, you need to create the index pattern and load the dashboards into Kibana.<\/li>\n\n\n\n<li>Filebeat connects to Elasticsearch to check version information. To load dashboards when Logstash is enabled, you need to disable the Logstash output and enable Elasticsearch output.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sudo filebeat setup -E output.logstash.enabled=false -E output.elasticsearch.hosts=['localhost:9200'] -E setup.kibana.host=localhost:5601<\/pre>\n\n\n\n<p>Now you can start and enable the filebeat.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Exploring Kibana Dashboards<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In a web browser, go to the DNS or public IP address of your Elastic Stack server.<\/li>\n\n\n\n<li>Click the&nbsp;<strong>Discover<\/strong>&nbsp;link in the left-hand navigation bar (you may have to click the the&nbsp;<strong>Expand<\/strong>&nbsp;icon at the very bottom left to see the navigation menu items). On the&nbsp;<strong>Discover<\/strong>&nbsp;page, select the predefined&nbsp;<strong>filebeat-<\/strong>* index pattern to see Filebeat data. By default, this will show you all of the log data over the last 15 minutes. You will see a histogram with log events, and some log messages below.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"755\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png\" alt=\"\" class=\"wp-image-8149\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-300x221.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-768x566.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-407x300.png 407w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image.png 1080w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>Use the left-hand panel to navigate to the&nbsp;<strong>Dashboard<\/strong>&nbsp;page and search for the&nbsp;<strong>Filebeat System<\/strong>&nbsp;dashboards. Once there, you can select the sample dashboards that come with Filebeat\u2019s&nbsp;<code>system<\/code>&nbsp;module.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"761\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1-1024x761.png\" alt=\"\" class=\"wp-image-8150\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1-1024x761.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1-300x223.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1-768x571.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1-404x300.png 404w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: The ELK Stack (Elasticsearch, Logstash, and Kibana) is the world\u2019s most popular open-source log analysis platform. ELK is quickly overtaking existing proprietary solutions and becoming companies\u2019 top choice for log analysis and management solutions. Configuring and using ELK Stack : Installation (Debian-package): Configurations: Installing and Configuring the Kibana Dashboard&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">ELK Stack Configuring Logging.<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":509,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-8147","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction: The ELK Stack (Elasticsearch, Logstash, and Kibana) is the world\u2019s most popular open-source log analysis platform. ELK is quickly overtaking existing proprietary solutions and becoming companies\u2019 top choice for log analysis and management solutions. Configuring and using ELK Stack : Installation (Debian-package): Configurations: Installing and Configuring the Kibana Dashboard&hellip; Continue Reading ELK Stack Configuring Logging.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-09T03:46:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-09T03:46:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png\" \/>\n<meta name=\"author\" content=\"ajith kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ajith kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/\"},\"author\":{\"name\":\"ajith kumar\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/6ab408ebbf9dfadd98efe97ac6a1628c\"},\"headline\":\"ELK Stack Configuring Logging.\",\"datePublished\":\"2024-09-09T03:46:55+00:00\",\"dateModified\":\"2024-09-09T03:46:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/\"},\"wordCount\":699,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/image-1024x755.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/image-1024x755.png\",\"datePublished\":\"2024-09-09T03:46:55+00:00\",\"dateModified\":\"2024-09-09T03:46:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/image.png\",\"width\":1080,\"height\":796},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/elk-stack-configuring-logging\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ELK Stack Configuring Logging.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/6ab408ebbf9dfadd98efe97ac6a1628c\",\"name\":\"ajith kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"caption\":\"ajith kumar\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/ajithkumar\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction: The ELK Stack (Elasticsearch, Logstash, and Kibana) is the world\u2019s most popular open-source log analysis platform. ELK is quickly overtaking existing proprietary solutions and becoming companies\u2019 top choice for log analysis and management solutions. Configuring and using ELK Stack : Installation (Debian-package): Configurations: Installing and Configuring the Kibana Dashboard&hellip; Continue Reading ELK Stack Configuring Logging.","og_url":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-09-09T03:46:55+00:00","article_modified_time":"2024-09-09T03:46:59+00:00","og_image":[{"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png","type":"","width":"","height":""}],"author":"ajith kumar","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"ajith kumar","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/"},"author":{"name":"ajith kumar","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/6ab408ebbf9dfadd98efe97ac6a1628c"},"headline":"ELK Stack Configuring Logging.","datePublished":"2024-09-09T03:46:55+00:00","dateModified":"2024-09-09T03:46:59+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/"},"wordCount":699,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/","url":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image-1024x755.png","datePublished":"2024-09-09T03:46:55+00:00","dateModified":"2024-09-09T03:46:59+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2024\/08\/image.png","width":1080,"height":796},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/elk-stack-configuring-logging\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"ELK Stack Configuring Logging."}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/6ab408ebbf9dfadd98efe97ac6a1628c","name":"ajith kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","caption":"ajith kumar"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/ajithkumar\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-27p","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8147","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/509"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8147"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8147\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8147"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8147"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}