Class: Morpheus::Cli::HealthCommand
- Inherits:
-
Object
- Object
- Morpheus::Cli::HealthCommand
- Includes:
- CliCommand, LogsHelper
- Defined in:
- lib/morpheus/cli/commands/health_command.rb
Instance Attribute Summary
Attributes included from CliCommand
Instance Method Summary collapse
- #acknowledge_alarms(args) ⇒ Object
- #alarms(args) ⇒ Object
- #connect(opts) ⇒ Object
- #export_logs(args) ⇒ Object
- #get(args) ⇒ Object
- #get_alarm(args) ⇒ Object
- #handle(args) ⇒ Object
- #logs(args) ⇒ Object
- #unacknowledge_alarms(args) ⇒ Object
Methods included from LogsHelper
#clusters_interface, #containers_interface, #format_log_level, #format_log_records, #format_log_table, included, #instances_interface, #logs_interface, #servers_interface
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Instance Method Details
#acknowledge_alarms(args) ⇒ Object
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 801 def acknowledge_alarms(args) = {} params = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[alarm] [options]") opts.on('-a', '--all', "Acknowledge all open alarms. This can be used instead of passing specific alarms.") do params['all'] = true end (opts, , [:payload, :options, :json, :dry_run, :remote]) opts. = "Acknowledge health alarm(s).\n[alarm] is required. Alarm ID, supports multiple arguments." end optparse.parse!(args) if params['all'] # updating all if args.count > 0 raise_command_error "wrong number of arguments, --all option expects 0 and got (#{args.count}) #{args}\n#{optparse}" end else # updating 1-N ids if args.count < 0 raise_command_error "wrong number of arguments, expected 1-N and got (#{args.count}) #{args}\n#{optparse}" end params['ids'] = args.collect {|arg| arg } end connect() begin # validate ids if params['ids'] parsed_id_list = [] params['ids'].each do |alarm_id| alarm = find_health_alarm_by_name_or_id(alarm_id) if alarm.nil? # print_red_alert "Alarm not found by id #{args[0]}" return 1 end parsed_id_list << alarm['id'] end params['ids'] = parsed_id_list.uniq end # construct payload = [:options] ? [:options].reject {|k,v| k.is_a?(Symbol) } : {} payload = nil if [:payload] payload = [:payload] payload.deep_merge!() unless .empty? else payload = {} # allow arbitrary -O options payload.deep_merge!() unless .empty? end id_list = params['ids'] || [] confirm_msg = params['all'] ? "Are you sure you want to acknowledge all open alarms?" : "Are you sure you want to acknowledge the #{id_list.size == 1 ? 'alarm' : 'alarms'} #{anded_list(id_list)}?" unless [:yes] || Morpheus::Cli::OptionTypes.confirm(confirm_msg) return 9, "aborted command" end @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.acknowledge_alarms(params, payload) return end json_response = @health_interface.acknowledge_alarms(params, payload) render_result = render_with_format(json_response, ) exit_code = 0 # json_response['success'] == true ? 0 : 1 return exit_code if render_result if params['all'] print_green_success "Acknowledged all alarms" else print_green_success "Acknowledged #{id_list.size == 1 ? 'alarm' : 'alarms'} #{anded_list(id_list)}" end return exit_code rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#alarms(args) ⇒ Object
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 668 def alarms(args) = {} params = {} start_date, end_date = nil, nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() opts.on('--category VALUE', String, "Filter by Alarm Category. datastore, computeZone, computeServer, etc.") do |val| params['alarmCategory'] = params['alarmCategory'] ? [params['alarmCategory'], val].flatten : val end opts.on('--status VALUE', String, "Filter by status. warning, error") do |val| params['status'] = params['status'] ? [params['status'], val].flatten : val end opts.on('--acknowledged', '--acknowledged', "Filter by acknowledged. By default only open alarms are returned.") do params['alarmStatus'] = 'acknowledged' end opts.on('--start TIMESTAMP','--start TIMESTAMP', "Start timestamp. Default is 24 hours ago.") do |val| start_date = parse_time(val) #.utc.iso8601 end opts.on('--end TIMESTAMP','--end TIMESTAMP', "End timestamp. Default is now.") do |val| end_date = parse_time(val) #.utc.iso8601 end (opts, , [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "List health alarms." end optparse.parse!(args) if args.count != 0 raise_command_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args}\n#{optparse}" end connect() begin params['startDate'] = start_date.utc.iso8601 if start_date params['endDate'] = end_date.utc.iso8601 if end_date params.merge!(()) @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.list_alarms(params) return 0 end json_response = @health_interface.list_alarms(params) render_result = render_with_format(json_response, , 'alarms') return 0 if render_result alarms = json_response['alarms'] title = "Morpheus Health Alarms" subtitles = [] # if params['category'] # subtitles << "Category: #{params['category']}" # end if params['status'] subtitles << "Status: #{params['status']}" end if params['alarmStatus'] == 'acknowledged' subtitles << "(Acknowledged)" end if params['startDate'] subtitles << "Start Date: #{params['startDate']}" end if params['endDate'] subtitles << "End Date: #{params['endDate']}" end subtitles += parse_list_subtitles() print_h1 title, subtitles if alarms.empty? print cyan,"No alarms found.",reset,"\n" else alarm_columns = [ {"ID" => lambda {|alarm| alarm['id'] } }, {"STATUS" => lambda {|alarm| format_health_status(alarm['status']) } }, {"RESOURCE" => lambda {|alarm| alarm['resourceName'] || alarm['refName'] } }, {"INFO" => lambda {|alarm| alarm['name'] } }, {"START DATE" => lambda {|alarm| format_local_dt(alarm['startDate']) } }, {"DURATION" => lambda {|alarm| format_duration(alarm['startDate'], alarm['acknoDate'] || Time.now) } }, ] if [:include_fields] columns = [:include_fields] end print as_pretty_table(alarms, alarm_columns, ) print_results_pagination(json_response) end print reset,"\n" return 0 rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#connect(opts) ⇒ Object
9 10 11 12 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 9 def connect(opts) @api_client = establish_remote_appliance_connection(opts) @health_interface = @api_client.health end |
#export_logs(args) ⇒ Object
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 576 def export_logs(args) params = {} = {} outfile = nil do_overwrite = false do_mkdir = false optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[file]") opts.on('--level VALUE', String, "Log Level. DEBUG,INFO,WARN,ERROR") do |val| params['level'] = params['level'] ? [params['level'], val].flatten : [val] end opts.on('--start TIMESTAMP','--start TIMESTAMP', "Start date timestamp in standard iso8601 format. Default is 24 hours ago.") do |val| params['startDate'] = val # parse_time(val).utc.iso8601 end opts.on('--end TIMESTAMP','--end TIMESTAMP', "End date timestamp in standard iso8601 format. Default is now.") do |val| params['endDate'] = val # parse_time(val).utc.iso8601 end opts.on( '-f', '--force', "Overwrite existing [file] if it exists." ) do do_overwrite = true # do_mkdir = true end opts.on( '-p', '--mkdir', "Create missing directories for [file] if they do not exist." ) do do_mkdir = true end (opts, , [:list, :query, :dry_run, :remote]) opts. = "Export morpheus appliance log." + "\n" + "[file] is required. This is local destination for the downloaded file. Example: morpheus.log" end optparse.parse!(args) verify_args!(args:args, optparse:optparse, count: 1) connect() params['level'] = params['level'].collect {|it| it.to_s.upcase }.join('|') if params['level'] # api works with INFO|WARN params.merge!(()) outfile = args[0] outfile = File.(outfile) if Dir.exist?(outfile) raise_command_error("[file] is invalid. It is the name of an existing directory: #{outfile}", args, optparse) end destination_dir = File.dirname(outfile) if !Dir.exist?(destination_dir) if do_mkdir print cyan,"Creating local directory #{destination_dir}",reset,"\n" FileUtils.mkdir_p(destination_dir) else raise_command_error("[file] is invalid. Directory not found: #{destination_dir}", args, optparse) end end if File.exist?(outfile) if do_overwrite # uhh need to be careful wih the passed filepath here.. # don't delete, just overwrite. # File.delete(outfile) else raise_command_error("[file] is invalid. File already exists: #{outfile}\nUse -f to overwrite the existing file.", args, optparse) end end @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.export_logs(outfile, params) return 0 end if ![:quiet] print cyan + "Downloading file #{outfile} ... " end http_response, bad_body = @health_interface.export_logs(outfile, params) # FileUtils.chmod(0600, outfile) success = http_response.code.to_i == 200 if success if ![:quiet] print green + "SUCCESS" + reset + " (" + format_bytes(http_response["Content-Length"].to_i).to_s + ")" + "\n" end # todo: parse default outfile from http_response["Content-Type"] return 0 else if ![:quiet] print red + "ERROR" + reset + " HTTP #{http_response.code}" + "\n" end # F it, just remove a bad result if File.exist?(outfile) && File.file?(outfile) Morpheus::Logging::DarkPrinter.puts "Deleting bad file download: #{outfile}" if Morpheus::Logging.debug? File.delete(outfile) end if [:debug] puts_error http_response.inspect end return 1, "download failed" end end |
#get(args) ⇒ Object
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 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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 18 def get(args) = {} params = {} live_health = false optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[-a] [options]") opts.on('-a', '--all', "Display all details: CPU, Memory, Database, etc." ) do [:details] = true [:show_cpu] = true [:show_threads] = true [:show_memory] = true [:show_database] = true [:show_elastic] = true [:show_queue] = true end opts.on('--details', '--details', "Display all details: CPU, Memory, Database, etc." ) do [:details] = true [:show_cpu] = true [:show_memory] = true [:show_database] = true [:show_elastic] = true [:show_queue] = true end opts.add_hidden_option('--details') # prefer -a, --all opts.on('--cpu', "Display CPU details" ) do [:show_cpu] = true end opts.on('--threads', "Display Thread details" ) do [:show_threads] = true end opts.on('--memory', "Display Memory details" ) do [:show_memory] = true end opts.on('--database', "Display Database details" ) do [:show_database] = true end opts.on('--elastic', "Display Elasticsearch details" ) do [:show_elastic] = true end opts.on('--queue', "Display Queue (Rabbit) details" ) do [:show_queue] = true end opts.on('--queues', "Display Queue (Rabbit) details" ) do [:show_queue] = true end opts.on('--rabbit', "Display Queue (Rabbit) details" ) do [:show_queue] = true end opts.add_hidden_option('--queues') opts.add_hidden_option('--rabbit') opts.on('--live', "Fetch Live Health Data. By default the last cached health data is returned. This also retrieves all elastic indices." ) do live_health = true end (opts, , [:query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "Get appliance health information." + "\n" + "By default, only the health status and levels are displayed." + "\n" + "Display more details with the options --cpu, --database, --memory, etc." + "\n" + "Display all details with the -a option." end optparse.parse!(args) if args.count != 0 raise_command_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args}\n#{optparse}" end connect() begin @health_interface.setopts() if [:dry_run] print_dry_run(live_health ? @health_interface.dry.live(params) : @health_interface.dry.get(params)) return 0 end json_response = live_health ? @health_interface.live(params) : @health_interface.get(params) render_result = render_with_format(json_response, , 'health') exit_code = json_response['success'] == true ? 0 : 1 return exit_code if render_result health = json_response['health'] subtitles = [] if [:details] subtitles << "Details" end if live_health subtitles << "(Live)" end print_h1 "Morpheus Health", subtitles, # thin print below here .merge!({thin:true}) if health.nil? print yellow,"No health data returned.",reset,"\n" return 1 end if health['elastic'] && health['elastic']['noticeMessage'].to_s != "" print cyan,health['elastic']['noticeMessage'],reset,"\n" print "\n" end #print_h2 "Health Summary", options print cyan health_summary_columns = { "Overall" => lambda {|it| format_health_status(it['cpu']['status']) rescue '' }, "CPU" => lambda {|it| format_health_status(it['cpu']['status']) rescue '' }, "Memory" => lambda {|it| format_health_status(it['memory']['status']) rescue '' }, "Database" => lambda {|it| format_health_status(it['database']['status']) rescue '' }, "Elastic" => lambda {|it| format_health_status(it['elastic']['status']) rescue '' }, "Queue" => lambda {|it| format_health_status(it['rabbit']['status']) rescue '' }, } print as_pretty_table(health, health_summary_columns, ) print "\n" # flash warnings if health['cpu'] && health['cpu']['status'] != 'ok' && health['cpu']['statusMessage'] status_color = health['cpu']['status'] == 'error' ? red : yellow print status_color,health['cpu']['statusMessage'],reset,"\n" end if health['memory'] && health['memory']['status'] != 'ok' && health['memory']['statusMessage'] status_color = health['memory']['status'] == 'error' ? red : yellow print status_color,health['memory']['statusMessage'],reset,"\n" end if health['database'] && health['database']['status'] != 'ok' && health['database']['statusMessage'] status_color = health['database']['status'] == 'error' ? red : yellow print status_color,health['database']['statusMessage'],reset,"\n" end # if health['elastic'] && health['elastic']['noticeMessage'].to_s != "" # print cyan,health['elastic']['noticeMessage'],reset,"\n" # end if health['elastic'] && health['elastic']['status'] != 'ok' && health['elastic']['statusMessage'] status_color = health['elastic']['status'] == 'error' ? red : yellow print status_color,health['elastic']['statusMessage'],reset,"\n" end if health['rabbit'] && health['rabbit']['status'] != 'ok' && health['rabbit']['statusMessage'] status_color = health['rabbit']['status'] == 'error' ? red : yellow print status_color,health['rabbit']['statusMessage'],reset,"\n" end print_h2 "Health Levels", print cyan health_levels_columns = { "Morpheus CPU" => lambda {|it| format_percent(it['cpu']['cpuLoad'].to_f, 0) rescue '' }, "System CPU" => lambda {|it| format_percent(it['cpu']['cpuTotalLoad'].to_f, 0) rescue '' }, "Morpheus Memory" => lambda {|it| format_percent(it['memory']['memoryPercent'].to_f * 100, 0) rescue '' }, "System Memory" => lambda {|it| format_percent(it['memory']['systemMemoryPercent'].to_f * 100, 0) rescue '' }, "Used Swap" => lambda {|it| format_percent(it['memory']['swapPercent'].to_f * 100, 0) rescue '' }, } print as_pretty_table(health, health_levels_columns, ) # print "\n" if [:show_cpu] # CPU if health['cpu'].nil? print yellow,"No cpu health information returned.",reset,"\n" else print_h2 "CPU", print cyan cpu_columns = { "Processor Count" => lambda {|it| it['processorCount'] rescue '' }, "Process Time" => lambda {|it| format_human_duration(it['processTime'].to_f / 1000) rescue '' }, "Morpheus CPU" => lambda {|it| (it['cpuLoad'].to_f.round(2).to_s + '%') rescue '' }, "System CPU" => lambda {|it| (it['cpuTotalLoad'].to_f.round(2).to_s + '%') rescue '' }, "System Load" => lambda {|it| (it['systemLoad'].to_f.round(3)) rescue '' }, } #print as_pretty_table(health['cpu'], cpu_columns, options) print_description_list(cpu_columns, health['cpu'], ) end end # Threads () if [:show_threads] print_h2 "Threads", if health['threads'].nil? print yellow,"No thread information returned.",reset,"\n\n" else print cyan thread_summary_columns = { "Thread Count" => lambda {|it| it['totalThreads'].size rescue '' }, "Busy Threads" => lambda {|it| it['busyThreads'].size rescue '' }, "Running Threads" => lambda {|it| it['runningThreads'].size rescue '' }, "Blocked Threads" => lambda {|it| it['blockedThreads'].size rescue '' }, } print_description_list(thread_summary_columns, health['threads'], ) thread_columns = [ {"Name".upcase => lambda {|it| it['name']} }, {"Status".upcase => lambda {|it| # hrmm status_string = (it['status'] || it['state']).to_s.downcase status_color = cyan # if status_string.include?('waiting') # status_color = yellow # end "#{status_color}#{status_string.upcase}#{cyan}" } }, # {"CPU Time" => lambda {|it| it['cpuTime'].to_s } }, # {"CPU Time" => lambda {|it| format_human_duration(it['cpuTime'].to_f / 1000) rescue '' } }, {"CPU Percent" => lambda {|it| it['cpuPercent'].to_i.to_s + '%' } } ] if health['threads']['busyThreads'] && health['threads']['busyThreads'].size > 0 print_h2 "Busy Threads" print cyan print as_pretty_table(health['threads']['busyThreads'], thread_columns, ) end if health['threads']['runningThreads'] && health['threads']['runningThreads'].size > 0 print_h2 "Running Threads" print cyan print as_pretty_table(health['threads']['runningThreads'], thread_columns, ) end if health['threads']['blockedThreads'] && health['threads']['blockedThreads'].size > 0 print_h2 "Blocked Threads" print cyan print as_pretty_table(health['threads']['blockedThreads'], thread_columns, ) end end end # Memory if [:show_memory] if health['memory'].nil? print yellow,"No memory health information returned.",reset,"\n" else print_h2 "Memory", print cyan memory_columns = { "Morpheus Memory" => lambda {|it| format_bytes_short(it['totalMemory']) rescue '' }, "Morpheus Used Memory" => lambda {|it| format_bytes_short(it['usedMemory']) rescue '' }, "Morpheus Free Memory" => lambda {|it| format_bytes_short(it['freeMemory']) rescue '' }, "Morpheus Memory Usage" => lambda {|it| format_percent(it['memoryPercent'].to_f * 100) rescue '' }, "System Memory" => lambda {|it| format_bytes_short(it['systemMemory']) rescue '' }, "System Used Memory" => lambda {|it| format_bytes_short(it['committedMemory']) rescue '' }, "System Free Memory" => lambda {|it| format_bytes_short(it['systemFreeMemory']) rescue '' }, "System Memory Usage" => lambda {|it| format_percent(it['systemMemoryPercent'].to_f * 100) rescue '' }, "System Swap" => lambda {|it| format_bytes_short(it['systemSwap']) rescue '' }, "Free Swap" => lambda {|it| format_bytes_short(it['systemFreeSwap']) rescue '' }, #"Used Swap" => lambda {|it| format_percent(it['swapPercent'].to_f * 100) rescue '' } # "System Load" => lambda {|it| (it['systemLoad'].to_f(3)) rescue '' }, } #print as_pretty_table(health['memory'], memory_columns, options) print_description_list(memory_columns, health['memory'], ) end end # Database (mysql) if [:show_database] if health['database'].nil? print yellow,"No database health information returned.",reset,"\n" else print_h2 "Database", print cyan database_columns = { "Lifetime Connections" => lambda {|it| it['stats']['Connections'] rescue '' }, "Aborted Connections" => lambda {|it| it['stats']['Aborted_connects'] rescue '' }, "Max Used Connections" => lambda {|it| it['stats']['Max_used_connections'] rescue '' }, "Max Connections" => lambda {|it| it['maxConnections'] rescue '' }, "Threads Running" => lambda {|it| it['stats']['Threads_running'] rescue '' }, "Threads Connected" => lambda {|it| it['stats']['Threads_connected'] rescue '' }, "Slow Queries" => lambda {|it| it['stats']['Slow_queries'] rescue '' }, "Temp Tables" => lambda {|it| it['stats']['Created_tmp_disk_tables'] rescue '' }, "Handler Read First" => lambda {|it| it['stats']['Handler_read_first'] rescue '' }, "Buffer Pool Free" => lambda {|it| it['stats']['Innodb_buffer_pool_wait_free'] rescue '' }, "Open Tables" => lambda {|it| it['stats']['Open_tables'] rescue '' }, "Table Scans" => lambda {|it| it['stats']['Select_scan'] rescue '' }, "Full Joins" => lambda {|it| it['stats']['Select_full_join'] rescue '' }, "Key Read Requests" => lambda {|it| it['stats']['Key_read_requests'] rescue '' }, "Key Reads" => lambda {|it| it['stats']['Key_reads'] rescue '' }, "Engine Waits" => lambda {|it| it['stats']['Innodb_log_waits'] rescue '' }, "Lock Waits" => lambda {|it| it['stats']['Table_locks_waited'] rescue '' }, "Handler Read Rnd" => lambda {|it| it['stats']['Handler_read_rnd'] rescue '' }, "Engine IO Writes" => lambda {|it| it['stats']['Innodb_data_writes'] rescue '' }, "Engine IO Reads" => lambda {|it| it['stats']['Innodb_data_reads'] rescue '' }, "Engine IO Double Writes" => lambda {|it| it['stats']['Innodb_dblwr_writes'] rescue '' }, "Engine Log Writes" => lambda {|it| it['stats']['Innodb_log_writes'] rescue '' }, "Engine Memory" => lambda {|it| format_bytes_short(it['innodbStats']['largeMemory']) rescue '' }, "Dictionary Memory" => lambda {|it| format_bytes_short(it['innodbStats']['dictionaryMemory']) rescue '' }, "Buffer Pool Size" => lambda {|it| it['innodbStats']['bufferPoolSize'] rescue '' }, "Free Buffers" => lambda {|it| it['innodbStats']['freeBuffers'] rescue '' }, "Database Pages" => lambda {|it| it['innodbStats']['databasePages'] rescue '' }, "Old Pages" => lambda {|it| it['innodbStats']['oldPages'] rescue '' }, "Dirty Page Percent" => lambda {|it| format_percent(it['innodbStats']['dirtyPagePercent'] ? it['innodbStats']['dirtyPagePercent'] : '') rescue '' }, "Max Dirty Pages" => lambda {|it| format_percent(it['innodbStats']['maxDirtyPagePercent'].to_f) rescue '' }, "Pending Reads" => lambda {|it| format_number(it['innodbStats']['pendingReads']) rescue '' }, "Insert Rate" => lambda {|it| format_rate(it['innodbStats']['insertsPerSecond'].to_f) rescue '' }, "Update Rate" => lambda {|it| format_rate(it['innodbStats']['updatesPerSecond'].to_f) rescue '' }, "Delete Rate" => lambda {|it| format_rate(it['innodbStats']['deletesPerSecond'].to_f) rescue '' }, "Read Rate" => lambda {|it| format_rate(it['innodbStats']['readsPerSecond']) rescue '' }, "Buffer Hit Rate" => lambda {|it| format_percent(it['innodbStats']['bufferHitRate'].to_f * 100) rescue '' }, "Read Write Ratio" => lambda {|it| rw_ratio = "" begin total_writes = (it['stats']['Com_update'].to_i) + (it['stats']['Com_insert'].to_i) + (it['stats']['Com_delete'].to_f) total_reads = (it['stats']['Com_select'].to_i) if total_writes > 0 rw_ratio = (total_reads.to_f / total_writes.to_f).round(2).to_s end rescue => ex puts ex end rw_ratio }, "Uptime" => lambda {|it| (it['stats']['Uptime'] ? format_human_duration(it['stats']['Uptime'].to_i) : '') rescue '' }, } print_description_list(database_columns, health['database'], ) #print as_pretty_table(health['database'], database_columns, options) end end # Elasticsearch if [:show_elastic] if health['elastic'].nil? print yellow,"No elastic health information returned.",reset,"\n\n" else print_h2 "Elastic", print cyan elastic_columns = { "Status" => 'status', # "Status" => lambda {|it| format_health_status(it['status']) rescue '' }, # "Status" => lambda {|it| # begin # if it['statusMessage'].to_s != "" # format_health_status(it['status']).to_s + " - " + it['statusMessage'] # else # format_health_status(it['status']) # end # rescue => ex # '' # end # }, "Cluster" => lambda {|it| it['stats']['clusterName'] rescue '' }, "Node Count" => lambda {|it| it['stats']['nodeTotal'] rescue '' }, "Data Nodes" => lambda {|it| it['stats']['nodeData'] rescue '' }, "Shards" => lambda {|it| it['stats']['shards'] rescue '' }, "Primary Shards" => lambda {|it| it['stats']['primary'] rescue '' }, "Relocating Shards" => lambda {|it| it['stats']['relocating'] rescue '' }, "Initializing" => lambda {|it| it['stats']['initializing'] rescue '' }, "Unassigned" => lambda {|it| it['stats']['unassigned'] rescue '' }, "Pending Tasks" => lambda {|it| it['stats']['pendingTasks'] rescue '' }, "Active Shards" => lambda {|it| it['stats']['activePercent'] rescue '' }, } print_description_list(elastic_columns, health['elastic'], ) #print as_pretty_table(health['elastic'], elastic_columns, options) elastic_nodes_columns = [ {"NODE" => lambda {|it| it['name'] } }, {"MASTER" => lambda {|it| it['master'] == '*' } }, {"LOCATION" => lambda {|it| it['ip'] } }, {"RAM" => lambda {|it| it['ramPercent'] } }, {"HEAP" => lambda {|it| it['heapPercent'] } }, {"CPU USAGE" => lambda {|it| it['cpuCount'] } }, {"1M LOAD" => lambda {|it| it['loadOne'] } }, {"5M LOAD" => lambda {|it| it['loadFive'] } }, {"15M LOAD" => lambda {|it| it['loadFifteen'] } } ] print_h2 "Elastic Nodes" if health['elastic']['nodes'].nil? || health['elastic']['nodes'].empty? print yellow,"No nodes found.",reset,"\n\n" else print as_pretty_table(health['elastic']['nodes'], elastic_nodes_columns, ) end elastic_indices_columns = [ {"Health".upcase => lambda {|it| format_index_health(it['health']) } }, {"Index".upcase => lambda {|it| it['index']} }, {"Status".upcase => lambda {|it| it['status'] } }, {"Primary".upcase => lambda {|it| it['primary'] } }, {"Replicas".upcase => lambda {|it| it['replicas'] } }, {"Doc Count".upcase => lambda {|it| format_number(it['count']) } }, {"Primary Size".upcase => lambda {|it| it['primarySize'] } }, {"Total Size".upcase => lambda {|it| it['totalSize'] } }, ] # when the api returns indices, it will include badIndices, so don't show both. if health['elastic']['indices'] && health['elastic']['indices'].size > 0 print_h2 "Elastic Indices" if health['elastic']['indices'].nil? || health['elastic']['indices'].empty? print yellow,"No indices found.",reset,"\n\n" else print cyan print as_pretty_table(health['elastic']['indices'], elastic_indices_columns, ) end else print_h2 "Bad Elastic Indices" if health['elastic']['badIndices'].nil? || health['elastic']['badIndices'].empty? # print cyan,"No bad indices found.",reset,"\n\n" else print cyan print as_pretty_table(health['elastic']['badIndices'], elastic_indices_columns, ) end end end end # Queues (rabbit) if [:show_queue] print_h2 "Queue (Rabbit)", if health['rabbit'].nil? print yellow,"No rabbit queue health information returned.",reset,"\n\n" else print cyan rabbit_summary_columns = { "Status" => lambda {|it| begin if it['statusMessage'].to_s != "" format_health_status(it['status']).to_s + " - " + it['statusMessage'] else format_health_status(it['status']) end rescue => ex '' end }, "Queues" => lambda {|it| it['queues'].size rescue '' }, "Busy Queues" => lambda {|it| it['busyQueues'].size rescue '' }, "Error Queues" => lambda {|it| it['errorQueues'].size rescue '' } } print_description_list(rabbit_summary_columns, health['rabbit'], ) #print as_pretty_table(health['rabbit'], rabbit_summary_columns, options) print_h2 "Queues" queue_columns = [ {"Status".upcase => lambda {|it| # hrmm status_string = it['status'].to_s.downcase # || 'green' if status_string == 'warning' "#{yellow}WARNING#{cyan}" elsif status_string == 'error' "#{red}ERROR#{cyan}" elsif status_string == 'ok' "#{green}OK#{cyan}" else # hrmm it['status'] end } }, {"Name".upcase => lambda {|it| it['name']} }, {"Count".upcase => lambda {|it| format_number(it['count']) } } ] if health['rabbit'].nil? || health['rabbit']['queues'].nil? || health['rabbit']['queues'].empty? print yellow,"No queues found.",reset,"\n\n" else print cyan print as_pretty_table(health['rabbit']['queues'], queue_columns, ) end if health['rabbit'].nil? || health['rabbit']['busyQueues'].nil? || health['rabbit']['busyQueues'].empty? # print cyan,"No busy queues found.",reset,"\n" else print_h2 "Busy Queues" print cyan print as_pretty_table(health['rabbit']['busyQueues'], queue_columns, ) end if health['rabbit'].nil? || health['rabbit']['errorQueues'].nil? || health['rabbit']['errorQueues'].empty? # print cyan,"No error queues found.",reset,"\n" else print_h2 "Error Queues" print cyan print as_pretty_table(health['rabbit']['errorQueues'], queue_columns, ) end end end print "\n" return 0 rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#get_alarm(args) ⇒ Object
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 754 def get_alarm(args) = {} params = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[id]") (opts, , [:query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "Get details about a health alarm.\n[id] is required. Health Alarm ID" end optparse.parse!(args) if args.count != 1 raise_command_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args}\n#{optparse}" end connect() @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.get_alarm(args[0], params) return 0 end json_response = @health_interface.get_alarm(args[0], params) render_result = render_with_format(json_response, , 'alarm') return 0 if render_result if json_response['alarm'].nil? print_red_alert "Alarm not found by id #{args[0]}" return 1 end print_h1 "Alarm Details" print cyan alarm_columns = [ {"ID" => lambda {|alarm| alarm['id'] } }, {"Status" => lambda {|alarm| format_health_status(alarm['status']) } }, {"Resource" => lambda {|alarm| alarm['resourceName'] || alarm['refName'] } }, {"Info" => lambda {|alarm| alarm['name'] } }, {"Active" => lambda {|alarm| format_boolean(alarm['active']) } }, {"Start Date" => lambda {|alarm| format_local_dt(alarm['startDate']) } }, {"Duration" => lambda {|alarm| format_duration(alarm['startDate'], alarm['acknowledgedDate'] || Time.now) } }, {"Acknowledged Date" => lambda {|alarm| format_local_dt(alarm['acknowledgedDate']) } }, {"Acknowledged" => lambda {|alarm| format_boolean(alarm['acknowledged']) } } ] print_description_list(alarm_columns, json_response['alarm']) print reset,"\n" return 0 end |
#handle(args) ⇒ Object
14 15 16 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 14 def handle(args) handle_subcommand(args) end |
#logs(args) ⇒ Object
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 504 def logs(args) = {} params = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() opts.on('--level VALUE', String, "Log Level. DEBUG,INFO,WARN,ERROR") do |val| params['level'] = params['level'] ? [params['level'], val].flatten : [val] end opts.on('--start TIMESTAMP','--start TIMESTAMP', "Start date timestamp in standard iso8601 format. Default is 24 hours ago.") do |val| params['startDate'] = val # parse_time(val).utc.iso8601 end opts.on('--end TIMESTAMP','--end TIMESTAMP', "End date timestamp in standard iso8601 format. Default is now.") do |val| params['endDate'] = val # parse_time(val).utc.iso8601 end opts.on('-t', '--table', "Format output as a table.") do [:table] = true end opts.on('-a', '--all', "Display all details: entire message." ) do [:details] = true end (opts, , [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "List health logs. These are the logs of the morpheus appliance itself." end optparse.parse!(args) if args.count > 0 [:phrase] = args.join(" ") end connect() begin # params['startDate'] = start_date.utc.iso8601 if start_date # params['endDate'] = end_date.utc.iso8601 if end_date # params['startMs'] = (start_date.to_i * 1000) if start_date # params['endMs'] = (end_date.to_i * 1000) if end_date params['level'] = params['level'].collect {|it| it.to_s.upcase }.join('|') if params['level'] # api works with INFO|WARN params.merge!(()) @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.logs(params) return 0 end json_response = @health_interface.logs(params) render_result = json_response['logs'] ? render_with_format(json_response, , 'logs') : render_with_format(json_response, , 'data') return 0 if render_result logs = json_response['data'] || json_response['logs'] title = "Morpheus Health Logs" subtitles = [] if params['level'] subtitles << "Level: #{[params['level']].flatten.join(',')}" end if params['startDate'] subtitles << "Start: #{params['startDate']}" end if params['endDate'] subtitles << "End: #{params['endDate']}" end subtitles += parse_list_subtitles() print_h1 title, subtitles if logs.empty? print "#{cyan}No logs found.#{reset}\n" else print format_log_records(logs, , false) print_results_pagination(json_response) end print reset,"\n" return 0 rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#unacknowledge_alarms(args) ⇒ Object
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 |
# File 'lib/morpheus/cli/commands/health_command.rb', line 880 def unacknowledge_alarms(args) = {} params = {acknowledged:false} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[alarm] [options]") # opts.on('-a', '--all', "Acknowledge all open alarms. This can be used instead of passing specific alarms.") do # params['all'] = true # end (opts, , [:payload, :options, :json, :dry_run, :remote]) opts. = "Unacknowledge health alarm(s).\n[alarm] is required. Alarm ID, supports multiple arguments." end optparse.parse!(args) if params['all'] # updating all if args.count > 0 raise_command_error "wrong number of arguments, --all option expects 0 and got (#{args.count}) #{args}\n#{optparse}" end else # updating 1-N ids if args.count < 0 raise_command_error "wrong number of arguments, expected 1-N and got (#{args.count}) #{args}\n#{optparse}" end params['ids'] = args.collect {|arg| arg } end connect() begin # validate ids if params['ids'] parsed_id_list = [] params['ids'].each do |alarm_id| alarm = find_health_alarm_by_name_or_id(alarm_id) if alarm.nil? # print_red_alert "Alarm not found by id #{args[0]}" return 1 end parsed_id_list << alarm['id'] end params['ids'] = parsed_id_list.uniq end # construct payload = [:options] ? [:options].reject {|k,v| k.is_a?(Symbol) } : {} payload = nil if [:payload] payload = [:payload] payload.deep_merge!() unless .empty? else payload = {} # allow arbitrary -O options payload.deep_merge!() unless .empty? end id_list = params['ids'] || [] confirm_msg = params['all'] ? "Are you sure you want to unacknowledge all alarms?" : "Are you sure you want to unacknowledge the #{id_list.size == 1 ? 'alarm' : 'alarms'} #{anded_list(id_list)}?" unless [:yes] || Morpheus::Cli::OptionTypes.confirm(confirm_msg) return 9, "aborted command" end @health_interface.setopts() if [:dry_run] print_dry_run @health_interface.dry.acknowledge_alarms(params, payload) return end json_response = @health_interface.acknowledge_alarms(params, payload) render_result = render_with_format(json_response, ) exit_code = 0 # json_response['success'] == true ? 0 : 1 return exit_code if render_result if params['all'] print_green_success "Acknowledged all alarms" else print_green_success "Acknowledged #{id_list.size == 1 ? 'alarm' : 'alarms'} #{anded_list(id_list)}" end return exit_code rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |