This is the second article in a series where I plan to go over on how to avoid 24×7 support in your organization, be sure to read the first post where I talk about what you should be logging in the first place.
Let’s recap the logging pipeline first:
In this article we are going to go through the Elastic Search and Kibana part.
UPDATE: The article originally was a walk-through for AWS Elastic Search 2.3, since AWS started supporting 5.1 after 1 week of my posting this article, I have updated the post to use 5.1 as well.
Choose your evil
There are three options that you have if you want Elastic search on AWS:
- Get an EC2, install on your own, Elastic.co has written a simple and comprehensive article on this, so I am not going to repeat.
- Get a third party managed Elastic search as a service, again Elastic.co is pretty good for that, Compose is another competitor.
- Get the AWS elastic search as a service.
There is a reason why I said choose your evil as none of these options are perfect, let me go through a few pro’s and con’s of these approaches:
ES on EC2 Instance | Managed ES | ES Service from AWS |
---|---|---|
Complete control on the install, whatever version / plugin you want | Less control, however lesser worries, companies dedicated to providing this service will do a good job at it as it is their bread and butter | Limited control, only versions that AWS supports (1.5, 2.3 & 5.1 at the time of writing this article), plugins are limited to the following currently (for version 5.1):
No dynamic scripting support |
Least expensive from the infrastructure point of view, most expensive in terms of the expertise that you need to maintain this | Most expensive, whatever you get is generally worry free, you only worry about the predictable bill at the end of the month | Medium expensive however, not by much, you get stuff like infrastructure portability by simply clicking to increase cluster size, basic configurations done right from the beginning, good metrics available from the get go to analyze health, automated backups (this is gold) |
You can have it on a private IP, basically connect through VPC, hence the connection is fastest | Generally connection is through internet | AWS at the time of writing this article did not support a VPC endpoint for the ES service, this means you go through the internet gateway, the connection however is good as AWS handles requests entering its domain well via the gateway. You can restrict access via whitelisting IP’s if you use auto-scaling, you should still be able to do that if you use a NAT service, comment below if you want more details on how to do this |
Ideal only for advanced use cases where core application logic resides in elastic search and you want custom capabilities | Ideal for non-AWS hosted solutions, or for companies with very limited DevOps capabilties | Ideal for non-critical path workloads like logging/analytics etc |
Setting up AWS’s Elastic Search as a Service
Defining domain name & ES version
Give your ES a domain name, I recommend giving environment-appName-purpose, choose your ES version here, choose the latest version (5.1 at the time of writing this article), 1.5 has some known issues, don’t choose that.
Cluster sizing
Instance count defines the number of VM’s you want your ES to be sharded across, provide at least two in production environments to provide enough redundancy. I will be creating a micro node with no dedicated master for this article.
Instance type Choosing your instance type requires some thought and I wrote a dedicated post for that here, for elastic search, I recommend choosing the I series instances as they come with instance storage which is the fastest, for this demo I will choose the free tier eligible t2.small one (minimum & free-tier eligible for version 5.1).
Enabling dedicated master, dedicated masters in ES are basically nodes which hold no data by themselves however perform admin tasks such as deciding which nodes hold which shards, creating or deleting indexes etc, to learn more about master nodes, here is the documentation by the elastic search team. Choose at least 3 master nodes for maximum stability and avoiding the split-brain problem.
Enable zone awareness distributes your instances across different availability zones, this ensures protection from any AWS outage that might occur. You need even number of data nodes in order to enable this. I will talk about setting up replicas later in this article.
Storage Configuration defines the amount of storage memory (hard-disk) that your instances will have, for production I recommend instance storage (with replication enabled only as that’s volatile) as its the fastest by far and keeps your ES nodes healthy. However, if you choose an instance type which does not have an instance storage option, you can choose EBS as shown below (t2 instances do not have instance storage).
Automated snapshots This creates auto backups of your cluster as a backup on a daily basis and stores it for 14 days (at no extra charge). Choose a time when your traffic is lowest, AWS says no downtime however the cluster slows down heavily when this backup is happening.
Url based access control this is controlled by the badly named rest.action.multi.allow_explicit_index heading. Keep this true by default unless you have that specific requirement, read this ES documention for further know-how on this one.
Field data size limiting (indices.fielddata.cache.size) for anything but log storage, you should leave this unbounded, however, as we are in fact talking about using ES to store logs here, set this to 40 (percent), this makes sure older log data fielddata cache is evicted so that your node keeps stable.
Setting up access policy Here we will define the security for your node. Unfortunately as I wrote in the comparison table before AWS yet did not give VPC access to your nodes, in production environment I recommend setting up a NAT gateway and authorizing access from that. For this article though see the screenshots where I set up access from a specific instance that I have created for demo purposes.
In the next screen you get to review your settings, after you have done the latter, click on the Confirm and Create button, we’ll learn how to setup replica’s before we move to the next section.
Setting up ES replica’s via AWS API
In production environments you would want to set up replication to prevent any loss of data in case any one (or multiple nodes) go down, expect this to happen for whatever reason (too much load, bad ES configuration, AWS issues etc). To setup replication, you can use the ES REST API.
Name of indexes must be in lower case
PUT eventlogs_2017_01
{
"settings" : {
"index" : {
"number_of_shards" : 4,
"number_of_replicas" : 2
}
}
}
Here is a fiddler example:
PUT https://search-mytestdomain-53fhvuzblj3d75brpnxxx.us-west-2.es.amazonaws.com/eventlogs_2017_01 HTTP/1.1
User-Agent: Fiddler
content-type: application/json
Host: search-mytestdomain-53fhvuzblj3d75brpnxxx.us-west-2.es.amazonaws.com
Content-Length: 140
{
"settings" : {
"index" : {
"number_of_shards" : 4,
"number_of_replicas" : 2
}
}
}
for our test micro instance, these shards and replicas are a bit much for it to handle, so just for demo purposes, we’ll fire this instead:
PUT eventlogs_2017_01
{
"settings" : {
"index" : {
"number_of_shards" : 1,
"number_of_replicas" : 0
}
}
}
An index is basically a placeholder for a particular type of data (application event logs, exceptions, server events) and is split into multiple shards. Shards have a maintenance overhead, so its important to have the correct number of shards in the system to parellelize and distribute data efficiently while minimizing the number of shards required in order to avoid unnecessary overheads. I recommend putting 4 shards in a day (a shard for roughly every 6 hours of evenly distributed data).
For the purpose of logging, it is imperative that you have rotating
time-based indexes, basically creating an index per time-frame, start
by creating an index for a month and go to daily indexes if your log
data size is huge.
Having smaller indexes makes your queries faster, deletions of older log data simple and fast, at the same time it keeps your servers from going out of memory when searching through huge chunks of log data which is forever adding up. Configuring daily indices will be part of a future article where I will talk about building a log data pipeline, for now you can manually create these indexes, or since indexes can be created in an idempotent way, simply change the index name every day from where your data is being inserted into ES (see writing data to the ES cluster below).
Check out the Elastic Search service FAQ’s at AWS site here.
Writing data to the ES cluster
Elastic search clients are available in various programming languages, you can find a list of official clients at the Elastic search site here.
For any other purpose other than putting logs into ES, using the clients is non-optional, however, specifically for the logs use case I recommend not putting stuff directly into ES, Kinesis firehose is a good option to use in this case, I’ll talk about that in detail in a future article.
Let’s create some dummy data into the index that we created above, so that we have something to look at when we go into the next section where we search and build graphs on these logs:
- Download the dummy log file that I created.
- Send a post to the elastic bulk REST API as below:
POST https://search-mytestdomain-53fhvuzblj3d75brpnxxx.us-west-2.es.amazonaws.com/_bulk HTTP/1.1
User-Agent: Fiddler
content-type: application/json
the file contents here downloaded from step 1>
For Elastic search 2.3 (not needed for 5.1), modify the Kibana 4 (5.1 will have Kibana 5) index to modify the max result window (workaround for this ES bug):
PUT .kibana-4/_settings
{
"index" : {
"number_of_replicas" : 0,
"max_result_window" : 2147483647
}
}
The above setting may take upto 10 minutes to reflect.
Looking at your logs (Micro Intro to Kibana)
Kibana is a data visualization tool, currently at version 5, with Kibana you can create custom dashboards visualizing logs in charts, tabular formats or even simple counter widgets. Let’s build a basic dashboard to get started.
Step 1
Find the Kibana URL at the AWS console’s Elastic Search service like in the screenshot below:
Step 2
Configure Kibana, put in the index name that we created before, when you have time-based indexes as I wrote earlier you can also put in a pattern for the index here.
Step 3
Go to the discover tab, you should see something like this (if you see no results found, change the time range from top-right corner to 1 year, our test data was added in the past):
For ES 2.3 and Kibana 4: If you see an error on this screen, just wait for around 10 minutes and try again, its due to the ES bug I had mentioned earlier which we fixed with Step 3 of creating dummy data.
Step 4
Create a visualization, each visualization is a widget which can then be added to a dashboard later, in this case let’s create a simple pie chart depicting the source of logs by server’s IP address:
Step 5
Choose new search, searches can be saved on the basis of which different visualizations can be created such as pie/line charts/tabular data
Click on the save button at the top bar as shown in the image, put in a title and click save.
Step 6
Go to the dashboard tab, click on the Add button at the top bar and then add your visualization and save the dashboard, see image for details.
Don’t forget to save this dashboard (top bar button).
That’s it! I’ll let you experiment with creating more dashboards, the data that I have provided can be used to create a good demo to convince the approvers for using ElasticSearch :-).
Summary
In this blog post, we learned how to:
- Choose ES deployment type
- Create a ES cluster using AWS elastic search service and doing some basic settings
- Use Kibana 5 at a basic level
Following are left in order to conclude on how to stop 24×7 support to your application :-), let me know by commenting below if there is anything specific you want me to talk about first:
- Log data pipeline (you don’t want to put stuff directly into ES)
- SNS integration with Pagerduty / emails for real-time alerts which rings your phone
- Backup monitoring to monitor Elastic search to build a fool proof auto-alert system
And of course, follow this blog/subscribe to email alerts (top of sidebar or below comments in mobile) so that you know when any of these posts come about.