webMethods Integration server and Kibana
Steps on how to configure connectivity between Kibana and webMethods
- Install Kibana and Elasticsearch.
- Configure Kibana to connect to Elasticsearch.
- Configure webMethods to send logs to Elasticsearch.
- Open Kibana and navigate to the “Management” tab.
- Click on the “Index Patterns” tab.
- Click on the “Create Index Pattern” button.
- Enter a name for the index pattern and select the “Logstash” index type.
- Click on the “Create” button.
- Click on the “Discover” tab.
- You should now be able to see the logs from webMethods in Kibana.
Here are the steps in more detail:
- Install Kibana and Elasticsearch.
You can download Kibana and Elasticsearch from the following websites:
- Kibana: Kibana: Explore, Visualize, Discover Data | Elastic
- Elasticsearch: Elasticsearch: The Official Distributed Search & Analytics Engine | Elastic
Once you have downloaded the software, follow the instructions to install it.
- Configure Kibana to connect to Elasticsearch.
Once Kibana is installed, you need to configure it to connect to Elasticsearch. To do this, open the kibana.yml
file and find the following section:
Code snippetelasticsearch: hosts: ["localhost:9200"]
Use code with caution. Learn more
content_copy
Change the hosts
value to the IP address or hostname of your Elasticsearch server.
- Configure webMethods to send logs to Elasticsearch.
In webMethods, you need to configure the logging framework to send logs to Elasticsearch. To do this, open the following file:
Code snippet<WebMethods installation directory>\config\logging\logging.xml
Use code with caution. Learn more
content_copy
Find the following section:
Change the host
and port
values to the IP address or hostname of your Elasticsearch server. Change the index
value to the name of the index that you created in step 1.
- Open Kibana and navigate to the “Management” tab.
In Kibana, open the “Management” tab and click on the “Index Patterns” tab.
- Click on the “Create Index Pattern” button.
Enter a name for the index pattern and select the “Logstash” index type.
- Click on the “Create” button.
- Click on the “Discover” tab.
You should now be able to see the logs from webMethods in Kibana.