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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
# File 'lib/fluent/diagtool/diagutils.rb', line 88
def run_diagtool()
@conf[:time] = @time_format
@conf[:workdir] = @conf[:basedir] + '/' + @time_format
@conf[:outdir] = @conf[:workdir] + '/output'
FileUtils.mkdir_p(@conf[:workdir])
FileUtils.mkdir_p(@conf[:outdir])
diaglog = @conf[:workdir] + '/diagtool.output'
@masklog = './mask_' + @time_format + '.json'
@logger = Logger.new(STDOUT, formatter: proc {|severity, datetime, progname, msg|
"#{datetime}: [Diagtool] [#{severity}] #{msg}\n"
})
@logger_file = Logger.new(diaglog, formatter: proc {|severity, datetime, progname, msg|
"#{datetime}: [Diagtool] [#{severity}] #{msg}\n"
})
diaglogger_info("Parsing command options...")
diaglogger_info(" Option : Output directory = #{@conf[:basedir]}")
diaglogger_info(" Option : Mask = #{@conf[:mask]}")
diaglogger_info(" Option : Word list = #{@conf[:words]}")
diaglogger_info(" Option : Hash Seed = #{@conf[:seed]}")
loglevel = 'WARN'
diaglogger_info("Initializing parameters...")
c = CollectUtils.new(@conf, loglevel)
c_env = c.export_env()
diaglogger_info("[Collect] Loading the environment parameters...")
diaglogger_info("[Collect] operating system = #{c_env[:os]}")
diaglogger_info("[Collect] kernel version = #{c_env[:kernel]}")
diaglogger_info("[Collect] #{@conf[:package_name]} conf path = #{c_env[:tdconf_path]}")
diaglogger_info("[Collect] #{@conf[:package_name]} conf file = #{c_env[:tdconf]}")
diaglogger_info("[Collect] #{@conf[:package_name]} log path = #{c_env[:tdlog_path]}")
diaglogger_info("[Collect] #{@conf[:package_name]} log = #{c_env[:tdlog]}")
m = MaskUtils.new(@conf, loglevel)
v = ValidUtils.new(loglevel)
diaglogger_info("[Collect] Collecting log files of #{@conf[:package_name]}...")
case @type
when 'fluentd'
tdlog = c.collect_tdlog()
diaglogger_info("[Collect] log files of #{@conf[:package_name]} are stored in #{tdlog}")
when 'fleuntbit'
if tdlog.empty?
diaglogger_info("FluentBit logs are redirected to the standard output interface ")
tdlog = ''
else
tdlog = c.collect_tdlog()
diaglogger_info("[Collect] log files of #{@conf[:package_name]} are stored in #{tdlog}")
end
end
diaglogger_info("[Collect] Collecting config file of #{@conf[:package_name]}...")
tdconf = c.collect_tdconf()
diaglogger_info("[Collect] config file is stored in #{tdconf}")
diaglogger_info("[Collect] Collecting #{@conf[:package_name]} gem information...")
tdgem = c.collect_tdgems()
diaglogger_info("[Collect] #{@conf[:package_name]} gem information is stored in #{tdgem}")
gem_info = c.collect_manually_installed_gems(tdgem)
diaglogger_info("[Collect] #{@conf[:package_name]} gem information (bundled by default) is stored in #{gem_info[:bundled]}")
diaglogger_info("[Collect] #{@conf[:package_name]} manually installed gem information is stored in #{gem_info[:local]}")
local_gems = File.read(gem_info[:local]).lines(chomp: true)
unless local_gems == [""]
diaglogger_info("[Collect] #{@conf[:package_name]} manually installed gems:")
local_gems.each do |gem|
diaglogger_info("[Collect] * #{gem}")
end
end
diaglogger_info("[Collect] Collecting config file of OS log...")
oslog = c.collect_oslog()
if @conf[:mask] == 'yes'
diaglogger_info("[Mask] Masking OS log file : #{oslog}...")
oslog = m.mask_tdlog(oslog, clean = true)
end
diaglogger_info("[Collect] config file is stored in #{oslog}")
diaglogger_info("[Collect] Collecting date/time information...")
if system('which chronyc > /dev/null 2>&1')
ntp = c.collect_cmd_output(command="chronyc sources")
diaglogger_info("[Collect] date/time information is stored in #{ntp}")
elsif system('which ntpq > /dev/null 2>&1')
ntp = c.collect_cmd_output(command="ntpq -p")
diaglogger_info("[Collect] date/time information is stored in #{ntp}")
else
diaglogger_warn("[Collect] chrony/ntp does not exist. skip collectig date/time information")
end
@cmd_list.each { |cmd|
diaglogger_info("[Collect] Collecting command output : command = #{cmd}")
if system(cmd + '> /dev/null 2>&1')
out = c.collect_cmd_output(cmd)
if @conf[:mask] == 'yes'
diaglogger_info("[Mask] Masking command output file : #{out}...")
out = m.mask_tdlog(out, clean = true)
end
diaglogger_info("[Collect] Collecting command output #{cmd.split[0]} stored in #{out}")
end
}
diaglogger_info("[Collect] Collecting sysctl information...")
sysctl = c.collect_cmd_output("sysctl -a")
diaglogger_info("[Collect] sysctl information is stored in #{sysctl}")
diaglogger_info("[Valid] Validating sysctl information...")
ret, sysctl = v.valid_sysctl(sysctl)
list = sysctl.keys
list.each do |k|
if sysctl[k]['result'] == 'correct'
diaglogger_info("[Valid] Sysctl: #{k} => #{sysctl[k]['value']} is correct (recommendation is #{sysctl[k]['recommend']})")
elsif sysctl[k]['result'] == 'incorrect'
diaglogger_warn("[Valid] Sysctl: #{k} => #{sysctl[k]['value']} is incorrect (recommendation is #{sysctl[k]['recommend']})")
end
end
diaglogger_info("[Collect] Collecting ulimit information...")
ulimit = c.collect_cmd_output(cmd="sh -c 'ulimit -n'")
diaglogger_info("[Collect] ulimit information is stored in #{ulimit}")
diaglogger_info("[Valid] Validating ulimit information...")
ret, rec, val = v.valid_ulimit(ulimit)
if ret == true
diaglogger_info("[Valid] ulimit => #{val} is correct (recommendation is >#{rec})")
else
diaglogger_warn("[Valid] ulimit => #{val} is incorrect (recommendation is >#{rec})")
end
if @conf[:mask] == 'yes'
tdconf.each { | file |
diaglogger_info("[Mask] Masking #{@conf[:package_name]} config file : #{file}...")
m.mask_tdlog(file, clean = true)
}
end
if @conf[:mask] == 'yes'
if tdlog != nil
tdlog.each { | file |
diaglogger_info("[Mask] Masking #{@conf[:package_name]} log file : #{file}...")
filename = file.split("/")[-1]
if filename.include?(".gz")
m.mask_tdlog_gz(file, clean = true)
elsif
m.mask_tdlog(file, clean = true)
end
}
end
end
if @conf[:mask] == 'yes'
diaglogger_info("[Mask] Export mask log file : #{@masklog}")
m.export_masklog(@masklog)
end
tar_file = c.compress_output()
diaglogger_info("[Collect] Generate tar file #{tar_file}")
end
|