aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-os-chef/sdc-elasticsearch/chef-repo/cookbooks/sdc-elasticsearch/recipes/ES_6_kibana_dashboard_virtualization.rb
blob: a3b15073a1698d9bb5dcfd3fd0df620bde921193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
cookbook_file "/usr/share/elasticsearch/config/kibana_dashboard_virtualization.json" do
   source "kibana_dashboard_virtualization.json"
   owner "elasticsearch"
   group "elasticsearch"
   mode "0755"
end



ruby_block "check_ElasticSearch_Cluster_Health" do
    block do
      #tricky way to load this Chef::Mixin::ShellOut utilities
      Chef::Resource::RubyBlock.send(:include, Chef::Mixin::ShellOut)
      #curl_command = "http://#{node['ipaddress']}:9200/_cluster/health?pretty=true"
      curl_command = "http://localhost:9200/_cluster/health?pretty=true"
      resp = Net::HTTP.get_response URI.parse(curl_command)
      stat = JSON.parse(resp.read_body)['status']

      case stat
         when "green"
            printf("\033[32m%s\n\033[0m", "  ElasticSearch Cluster status is green.")
         when "yellow"
            printf("\033[33m%s\n\033[0m", "  ElasticSearch Cluster status is yellow...")
         when "red"
            printf("\033[31m%s\n\033[0m", "  ElasticSearch Cluster status is red!")
      end
   end
   retries 10
   retry_delay 2
end


bash "create Kibana dashboard" do
    code <<-EOH
        for file in /root/chef-solo/cookbooks/sdc-elasticsearch/files/default/dashboard_*.json; do 
            name=`basename $file .json | awk -F"_" '{print $2}'` 
            echo "Loading dashboard $name:" 
            curl -XPUT http://localhost:9200/.kibana/dashboard/$name -d @$file || exit 1 
            echo 
        done 
    EOH
end


bash "create Kibana visualization" do
    code <<-EOH
        for file in /root/chef-solo/cookbooks/sdc-elasticsearch/files/default/visualization_*.json; do 
            name=`basename $file .json | awk -F"_" '{print $2}'` 
            echo "Loading visualization $name:" 
            curl -XPUT http://localhost:9200/.kibana/visualization/$name -d @$file || exit 1 
            echo 
        done 
    EOH
end