-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate
executable file
·189 lines (160 loc) · 6.79 KB
/
generate
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/env bash
red=`tput setaf 1`
green=`tput setaf 2`
yellow=`tput setaf 3`
blue=`tput setaf 4`
reset=`tput sgr0`
elastic_host="localhost:9200"
kibana_host="localhost:5601"
user="elastic"
pass="changeme"
user_pass="${user}:${pass}"
filebeat_version=8.6.0
metricbeat_version=8.6.0
usage() {
echo "Commands:"
echo "custom_index"
echo "metrics"
echo "logs"
exit 1
}
task_custom_index (){
export INDEXER="custom-index"
npm start
}
task_logs (){
filebeat="filebeat-${filebeat_version}"
tar_directory="${filebeat}-darwin-x86_64"
tar_file="${tar_directory}.tar.gz"
tar_url="https://artifacts.elastic.co/downloads/beats/filebeat/${tar_file}"
cwd=$(pwd)
DIR="$filebeat"
######################################################################################################################
# Check if Filebeat has been installed. If not, download and extract
######################################################################################################################
mkdir -p ~/Beats
cd ~/Beats
echo "${yellow}Checking Filebeat${reset}"
if [ ! -d "$DIR" ]; then
echo "${blue}Downloading Filebeat...${reset}"
curl -L -O "$tar_url"
tar xzvf "$tar_file"
mkdir "$DIR" && tar xzvf "$tar_file" -C "$DIR" --strip-components 1
rm -f "$tar_file"
rm -rf "$tar_directory"
fi
echo "${green}OK${reset}"
######################################################################################################################
# Check if Kibana has been set for Filebeat. If not, set it up.
######################################################################################################################
echo "${yellow}Checking Kibana${reset}"
ilm=$(curl -X GET -s -u "$user_pass" "${elastic_host}/_ilm/policy/filebeat" | jq ".status") # Returns "status" only for 404
if [ "${ilm}" != "null" ]; then
cd "$DIR"
echo "${blue}Setting up Kibana...${reset}"
./filebeat setup -E "output.elasticsearch.hosts=['${elastic_host}']" \
-E "output.elasticsearch.username=${user}" \
-E "output.elasticsearch.password=${pass}" \
-E "setup.kibana.host=${kibana_host}" \
-E "setup.kibana.username=${user}" \
-E "setup.kibana.password=${pass}" -e
fi
echo "${green}OK${reset}"
######################################################################################################################
# Check if Data Stream for Filebeat has been created. If not, create.
######################################################################################################################
echo "${yellow}Checking Data Stream${reset}"
data_stream_url="${elastic_host}/_data_stream/${filebeat}"
data_stream=$(curl -X GET -s -u "$user_pass" $data_stream_url | jq ".status")
if [ "${data_stream}" != "null" ]; then
echo "${blue}Creating Data Stream...${reset}"
curl -X PUT -s -u "$user_pass" "${elastic_host}/_data_stream/${filebeat}" > /dev/null
fi
echo "${green}OK${reset}"
######################################################################################################################
# Generate and push data.
######################################################################################################################
echo "${green}Generating Data${reset}"
cd "$cwd"
export INDEXER="logs"
export FILEBEAT_VERSION=$filebeat_version
npm start
}
task_metrics (){
metricbeat="metricbeat-${metricbeat_version}"
tar_directory="${metricbeat}-darwin-x86_64"
tar_file="${tar_directory}.tar.gz"
tar_url="https://artifacts.elastic.co/downloads/beats/metricbeat/${tar_file}"
cwd=$(pwd)
DIR="$metricbeat"
######################################################################################################################
# Check if Metricbeat has been installed. If not, download and extract
######################################################################################################################
mkdir -p ~/Beats
cd ~/Beats
echo "${yellow}Checking Metricbeat${reset}"
if [ ! -d "$DIR" ]; then
echo "${blue}Downloading Metricbeat...${reset}"
curl -L -O "$tar_url"
tar xzvf "$tar_file"
mkdir "$DIR" && tar xzvf "$tar_file" -C "$DIR" --strip-components 1
rm -f "$tar_file"
rm -rf "$tar_directory"
fi
echo "${green}OK${reset}"
######################################################################################################################
# Check if Kibana has been set for Metricbeat. If not, set it up.
######################################################################################################################
echo "${yellow}Checking Kibana${reset}"
ilm=$(curl -X GET -s -u "$user_pass" "${elastic_host}/_ilm/policy/metricbeat" | jq ".status") # Returns "status" only for 404
if [ "${ilm}" != "null" ]; then
cd "$DIR"
echo "${blue}Setting up Kibana...${reset}"
./metricbeat setup -E "output.elasticsearch.hosts=['${elastic_host}']" \
-E "output.elasticsearch.username=${user}" \
-E "output.elasticsearch.password=${pass}" \
-E "setup.kibana.host=${kibana_host}" \
-E "setup.kibana.username=${user}" \
-E "setup.kibana.password=${pass}" -e
fi
echo "${green}OK${reset}"
######################################################################################################################
# Check if Data Stream for Metricbeat has been created. If not, create.
######################################################################################################################
echo "${yellow}Checking Data Stream${reset}"
data_stream_url="${elastic_host}/_data_stream/${metricbeat}"
data_stream=$(curl -X GET -s -u "$user_pass" $data_stream_url | jq ".status")
if [ "${data_stream}" != "null" ]; then
echo "${blue}Creating Data Stream...${reset}"
curl -X PUT -s -u "$user_pass" "${elastic_host}/_data_stream/${metricbeat}" > /dev/null
fi
echo "${green}OK${reset}"
######################################################################################################################
# Generate and push data.
######################################################################################################################
echo "${green}Generating Data${reset}"
cd "$cwd"
export INDEXER="metrics"
export METRICBEAT_VERSION=$metricbeat_version
npm start
}
main() {
CMD=${1:-}
shift || true
curl -i -s -u "$user_pass" "$elastic_host" > /dev/null;
if [ "$?" = "7" ]; then
echo "${red}Elastic is not running${reset}";
exit 0
fi
curl -i -s -u "$user_pass" "$kibana_host" > /dev/null;
if [ "$?" = "7" ]; then
echo "${red}Kibana is not running${reset}";
exit 0
fi
if type "task_${CMD}" &> /dev/null; then
"task_${CMD}" "$@"
else
usage
fi
}
main "$@"