Background
FireMon’s Immediate Insight product is a powerful real-time IT data analytics solution. It provides excellent data discovery, search, & analysis capabilities. Furthermore search results can be saved to Immediate Insight Pinboards for dynamic reporting. Immediate Insight is particularly well suited to monitoring and analysis of unstructured data, & unknown issues which have in the past been difficult to find. As a complement to these capabilities, customers may be interested in producing more traditional security and operations dashboards centered around known metrics. Immediate Insight’s architecture (built on top of Elasticsearch) allows use of third party tools, for example open source tool Kibana, for easy dashboarding of both structured and unstructured data metrics made available by Immediate Insight data enrichment.
The following use case paper outlines a procedure to connect Kibana to Immediate Insight, and produce a simple example dashboard (for complete documentation on Kibana please consult https://www.elastic.co/guide/en/kibana/current/index.html ). It is assumed for the purposes of these instructions that Immediate Insight is already installed on another VM, if you have not yet installed Immediate Insight, please contact FireMon for documentation and assistance.
(Please note that Kibana is not a FireMon product, and FireMon LLC provides no official warrantee or support of the Kibana software nor its interoperability with FireMon’s Immediate Insight product)
Step 1 – Prepare Immediate Insight for use with Kibana
By default, the Ubuntu firewall settings on your Immediate Insight virtual appliance block external access to port 9200, which is required by Kibana to connect to the Immediate Insight Elasticsearch instance. The easiest way to overcome this is to clear the firewall rules (procedure for that is shown below, however in a production environment is it recommended to explicitly adjust the firewall rules based on your own environment to allow external access only where needed)
ssh <ip-address-of-immediate-insight>
login (default password for user insight is WhatsHappeningNow)
(Note: if you later need to revert to the original Immediate Insight firewall settings, use the command; sudo firewall enable)
You will need to know the Immediate Insight search indexes that you wish to Dashboard with in Kibana. The default search index is the ‘main-stream’ repository, however you may have configured others that you wish to use. From the CLI type the command ‘add-user –l’ to see if other repositories exist (make note of them). For example, below we notice the repository gregprivate is available in addition to main.
![ImIn-add-user]()
Step 2 – Install Kibana and modify its configuration file to point to Immediate Insight
You’ll first need to install Kibana (we recommend Kibana 4.1.4 which is compatible with the current version of Immediate Insight’s Elastic Search). Although it may be possible to install Kibana on the same VM instance as Immediate Insight, we strongly recommend that you install Kibana on a separate VM or Server to avoid conflicts. Instructions below are to install Kibana on Ubuntu Linux (we tested with Ubuntu 14.04.2), although Kibana can also be installed on Windows, Mac, or other Linux distributions.
Download Kibana 4 to your Ubuntu home directory with the following command:
$ cd ~; wget https://download.elasticsearch.co/kibana/kibana/kibana-4.1.4-linux-x64.tar.gz
Extract Kibana archive with tar:
$ tar xvf kibana-*.tar.gz
Open the Kibana configuration file for editing:
$ sudo nano ~/kibana-4*/config/kibana.yml
Edit the host field, changing it to the IP address where you have Kibana installed, also edit the elasticsearch_url field, changing the localhost part to that IP address of your Immediate Insight (example shown below), then save the file:
![Kibana-config]()
Create a /opt/kibana directory with the following command:
$ sudo mkdir -p /opt/kibana
Next copy the Kibana files into your newly-created directory:
$ sudo cp -R ~/kibana-4*/* /opt/kibana/
Kibana can now be started
To start Kibana manually
$ ./kibana
However it is preferable to start Kibana as a service so that it stay persistent after reboot
Download a Kibana init script with this command (one line):
$ cd /etc/init.d && sudo wget https://gist.githubusercontent.com/thisismitch/8b15ac909aed214ad04a/raw/bce61d85643c2dcdfbc2728c55a41dab444dca20/kibana4
Now enable the Kibana service, and start it:
$ sudo chmod +x /etc/init.d/kibana4
$ sudo update-rc.d kibana4 defaults 96 9
$ sudo service kibana4 start
Step 3 – Configure Kibana to connect to the Immediate Insight Index
Access the Kibana web interface;
http://<ip-address-kibana>:5601
Click the Settings tab. By default it will show the Index name ‘logstash-*’, you need to change this to the Immediate Insight index name – most likely you should start with main-stream (unless you know your data is in another repository). After entering ‘main-stream*’ for the Index name, click the Time-Field name pull down and select ‘rcvTime’ – then click ‘Create’
![Config-index-pattern]()
Under Indices, you will now see main-stream*, select it (on the right you’ll note varies metric fields available from Immediate Insight). Click the green star logo to make main-stream* your default index.
![Main-stream]()
(Optional) – if you have an additional Immediate Insight index (aka repository) that you wish to be able to report on, click the Add New bottom and repeat the process (following along from our earlier example this could be done for gregprivate*)
Step 4 – Configure Kibana Discovery of Immediate Insight data
Click the Discover link, assuming there is data coming into Immediate Insight’s main-stream repository, you should see data events below. Here you also chose Time Filter and Refresh Interval, because Immediate Insight already provides excellent real-time monitoring capabilities (and to reduce unnecessary performance overhead), we suggest starting with a longer Kibana Time Filter such as 24 hours and a Refresh Interval of 15 minutes. (Note: Kibana queries place some overhead on Immediate Insight)
Note: you won’t be able to use Kibana to view data older than the Data TTL available from the Immediate Insight index.
![Kibana-discover]()
Step 5 – Configure Kibana Visualizations from Immediate Insight data
Although Kibana offers many different ways to create graphs of different formats, the easiest way for Immediate Insight is to find a metric Field, that interests you, click on the Field on the left of the page to expand it, then click the Visualize link below the Field.
![Selected-fields]()
You can accept the default graph formats, or edited them as offered. Next Click Apply, then click the Save Visualization Icon, give it an appropriate Title, then click Save.
![Log-severity]()
Repeat the process to create other Visualizations which you may want to put on Dashboards. Note that you can create Visualizations from different Indices (aka repositories), and if you wish these can later be mixed on the same Dashboard, or split across multiple Dashboards.
Step 6 – Create Kibana Dashboards
Your previously saved Visualizations are available to put on Dashboards. Click Dashboards, click the + icon to add Visualizations, select the ones you want, give the Dashboard a name, then click the Save Dashboard icon.
![Kibana-dashboard]()
You can now click the Load Saved Dashboard icon to view your Dashboard. Note that you can optionally change the time period of further edit the Dashboard as needed.
![Kibana-dashboard-graph]()
Kibana is capable of producing many different styles and variety of Visualization and Dashboards, we have provided but a simple example here to get you started. Full instruction on configuration of Kibana is beyond the scope of this document – but we hope this introduction gives you an idea of what could be possible using the Immediate Insight data.
The post How to make Kibana dashboards using Immediate Insight collected data appeared first on FireMon.