@@ -14,8 +14,16 @@ The IBM Db2 Event Store backend implements 2 urls:
1414
1515*  An [ IBM Db2 Event Store Enterprise Edition cluster] ( https://www.ibm.com/us-en/marketplace/db2-event-store ) 
1616
17- ## Installation of Graphana  within an IBM Db2 Event Cluster  
17+ ## Installation of Grafana  within an IBM Db2 Event Cluster  
1818
19+ In an enterprise configuration, the IBM Db2 Event Store is installed on 3 nodes. One of those node is going to be arbitrary referenced as MASTER1_IP.
20+ 
21+ *  SSH to the Master 1 node
22+ ``` bash 
23+ ssh root@${MASTER1_IP} 
24+ ``` 
25+ 
26+ *  Install Grafana on that node
1927``` bash 
2028sudo yum install -y wget
2129sudo wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.0.0-1.x86_64.rpm
@@ -24,11 +32,15 @@ sudo rpm -Uvh grafana-5.0.0-1.x86_64.rpm
2432sudo service grafana-server start
2533``` 
2634
27- ## Install the Grafana Plugin within an IBM Db2 Event Cluster  
28- mkdir -p /usr/local/var/lib/grafana/plugins/db2-event-store
29- cd /usr/local/var/lib/grafana/plugins/db2-event-store
30- wget ...
31- cp /usr/local/var/lib/grafana/plugins/db2-event-store/db2-event-store-grafana.tar .
35+ *  Validate that Grafana correctly comes up in a Web Browser
36+ http://${MASTER1_IP}:3000/login [ admin/admin] 
37+ 
38+ *  Download the archive from the GIT repo, unzip it, and place it in your home directory on {MASTER1_IP}
39+ ``` bash 
40+ wget https://github.com/IBMProjectEventStore/db2eventstore-grafana/files/2019003/db2-event-store-grafana.tar.zip
41+ ``` 
42+ 
43+ ## Install the IBM Db2 Event Store plugin for Grafana  
3244
3345``` bash 
3446GRAFANA=/var/lib/grafana
@@ -40,6 +52,6 @@ sudo tar -zxvf db2-event-store-grafana.tar
4052sudo service grafana-server restart
4153``` 
4254
43- ## Bring up  the Graphana  console 
55+ ## Add the IBM Db2 Event Store Data Source in  the Grafana  console 
4456
45- ## Establish  a dashboard 
57+ ## Create  a dashboard 
0 commit comments