opstat-plugins 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/.gitlab-ci.yml +17 -0
- data/LICENSE +675 -0
- data/lib/app/models/apache2.rb +192 -0
- data/lib/app/models/bsdnet/bytes_in_out.rb +54 -0
- data/lib/app/models/bsdnet/current_entries.rb +34 -0
- data/lib/app/models/bsdnet.rb +12 -0
- data/lib/app/models/cpu.rb +86 -0
- data/lib/app/models/disk.rb +51 -0
- data/lib/app/models/disk_io.rb +53 -0
- data/lib/app/models/facts.rb +30 -0
- data/lib/app/models/fpm.rb +138 -0
- data/lib/app/models/haproxy.rb +57 -0
- data/lib/app/models/jvm.rb +51 -0
- data/lib/app/models/load.rb +99 -0
- data/lib/app/models/memory.rb +55 -0
- data/lib/app/models/nagios.rb +51 -0
- data/lib/app/models/network.rb +58 -0
- data/lib/app/models/oracle_fras_sizes.rb +41 -0
- data/lib/app/models/oracle_sessions.rb +43 -0
- data/lib/app/models/oracle_tablespaces_sizes.rb +51 -0
- data/lib/app/models/temper.rb +51 -0
- data/lib/app/models/webobjects.rb +83 -0
- data/lib/app/models/xen.rb +99 -0
- data/lib/data/hp_pdu.yml +191 -0
- data/lib/logging.rb +29 -0
- data/lib/opstat-plugins.rb +44 -0
- data/lib/parsers/apache2.rb +19 -0
- data/lib/parsers/bsdnet.rb +29 -0
- data/lib/parsers/cpu.rb +42 -0
- data/lib/parsers/disk.rb +49 -0
- data/lib/parsers/facts.rb +12 -0
- data/lib/parsers/fpm.rb +31 -0
- data/lib/parsers/freeswitch_fifos.rb +63 -0
- data/lib/parsers/haproxy.rb +34 -0
- data/lib/parsers/haproxy_tables.rb +25 -0
- data/lib/parsers/hp_pdu.rb +36 -0
- data/lib/parsers/jvm.rb +22 -0
- data/lib/parsers/load.rb +20 -0
- data/lib/parsers/memory.rb +29 -0
- data/lib/parsers/nagios.rb +39 -0
- data/lib/parsers/network.rb +37 -0
- data/lib/parsers/oracle_fras_sizes.rb +25 -0
- data/lib/parsers/oracle_sessions.rb +20 -0
- data/lib/parsers/oracle_tablespaces_sizes.rb +22 -0
- data/lib/parsers/temper.rb +17 -0
- data/lib/parsers/webobjects.rb +33 -0
- data/lib/parsers/xen.rb +39 -0
- data/lib/plugins/apache2.rb +76 -0
- data/lib/plugins/bsdnet.rb +13 -0
- data/lib/plugins/cpu.rb +13 -0
- data/lib/plugins/custom_sql_statement.rb +24 -0
- data/lib/plugins/disk.rb +31 -0
- data/lib/plugins/facts.rb +30 -0
- data/lib/plugins/fpm.rb +33 -0
- data/lib/plugins/freeswitch_fifos.rb +27 -0
- data/lib/plugins/haproxy.rb +24 -0
- data/lib/plugins/haproxy_tables.rb +28 -0
- data/lib/plugins/hp_pdu.rb +28 -0
- data/lib/plugins/jvm.rb +23 -0
- data/lib/plugins/load.rb +20 -0
- data/lib/plugins/memory.rb +18 -0
- data/lib/plugins/nagios.rb +39 -0
- data/lib/plugins/network.rb +21 -0
- data/lib/plugins/oracle_fras_sizes.rb +48 -0
- data/lib/plugins/oracle_sessions.rb +47 -0
- data/lib/plugins/oracle_tablespaces_sizes.rb +59 -0
- data/lib/plugins/temper.rb +21 -0
- data/lib/plugins/webobjects.rb +42 -0
- data/lib/plugins/xen.rb +22 -0
- data/opstat-plugins.gemspec +20 -0
- data/spec/cpu_spec.rb +39 -0
- data/spec/disk_io_spec.rb +31 -0
- data/spec/disk_spec.rb +31 -0
- data/spec/fixtures/parser_cpu_16_core.txt +24 -0
- data/spec/fixtures/parser_cpu_16_core_corrupted.txt +24 -0
- data/spec/fixtures/parser_cpu_single_core.txt +10 -0
- data/spec/fixtures/parser_cpu_single_core_corrupted.txt +9 -0
- data/spec/fixtures/parser_disk_3_mounts.txt +9 -0
- data/spec/fixtures/parser_disk_corrupted.txt +9 -0
- data/spec/fixtures/parser_disk_io.txt +2 -0
- data/spec/fixtures/parser_disk_io_corrupted.txt +2 -0
- data/spec/fixtures/parser_haproxy_correct.txt +2 -0
- data/spec/fixtures/parser_haproxy_corrupted.txt +2 -0
- data/spec/fixtures/parser_haproxy_many_frontend_many_backend.txt +6 -0
- data/spec/fixtures/parser_haproxy_single_frontend_single_backend_with_single_svname.txt +5 -0
- data/spec/fixtures/parser_load.txt +1 -0
- data/spec/fixtures/parser_load_corrupted.txt +2 -0
- data/spec/fixtures/parser_memory.txt +43 -0
- data/spec/fixtures/parser_memory_corrupted.txt +43 -0
- data/spec/fixtures/parser_network.txt +5 -0
- data/spec/fixtures/parser_network_corrupted.txt +5 -0
- data/spec/fixtures/parser_webobjects_many_apps_many_instances.result.yml +590 -0
- data/spec/fixtures/parser_webobjects_many_apps_many_instances.txt +2 -0
- data/spec/fixtures/parser_webobjects_one_app_many_instances.result.yml +305 -0
- data/spec/fixtures/parser_webobjects_one_app_many_instances.txt +395 -0
- data/spec/haproxy_spec.rb +68 -0
- data/spec/load_spec.rb +21 -0
- data/spec/memory_spec.rb +21 -0
- data/spec/network_spec.rb +21 -0
- data/spec/spec_helper.rb +102 -0
- data/spec/webobjects_spec.rb +28 -0
- metadata +189 -0
@@ -0,0 +1,2 @@
|
|
1
|
+
[{"name": "ifirma", "id": "101", "host": "ifirmaapp01", "port": "2101", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "102", "host": "ifirmaapp01", "port": "2102", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "103", "host": "ifirmaapp01", "port": "2103", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "104", "host": "ifirmaapp01", "port": "2104", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "111", "host": "ifirmaapp02", "port": "2111", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "112", "host": "ifirmaapp02", "port": "2112", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "113", "host": "ifirmaapp02", "port": "2113", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "114", "host": "ifirmaapp02", "port": "2114", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "121", "host": "ifirmaapp03", "port": "2121", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "122", "host": "ifirmaapp03", "port": "2122", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "123", "host": "ifirmaapp03", "port": "2123", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "124", "host": "ifirmaapp03", "port": "2124", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "131", "host": "ifirmaapp04", "port": "2131", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "132", "host": "ifirmaapp04", "port": "2132", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "133", "host": "ifirmaapp04", "port": "2133", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "134", "host": "ifirmaapp04", "port": "2134", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "141", "host": "ifirmaapp05", "port": "2141", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "142", "host": "ifirmaapp05", "port": "2142", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "143", "host": "ifirmaapp05", "port": "2143", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "144", "host": "ifirmaapp05", "port": "2144", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "151", "host": "ifirmaapp06", "port": "2151", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "152", "host": "ifirmaapp06", "port": "2152", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "153", "host": "ifirmaapp06", "port": "2153", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "154", "host": "ifirmaapp06", "port": "2154", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "161", "host": "ifirmaapp07", "port": "2161", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "162", "host": "ifirmaapp07", "port": "2162", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "163", "host": "ifirmaapp07", "port": "2163", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "164", "host": "ifirmaapp07", "port": "2164", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "201", "host": "ifirmaapp01", "port": "2201", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "331111", "activeSessions": "104", "averageIdlePeriod": "0.602", "avgTransactionTime": "0.05","autoRecover": "true"}, {"name": "ifirma", "id": "202", "host": "ifirmaapp01", "port": "2202", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "356468", "activeSessions": "162", "averageIdlePeriod": "0.6", "avgTransactionTime": "0.046","autoRecover": "true"}, {"name": "ifirma", "id": "203", "host": "ifirmaapp01", "port": "2203", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "204", "host": "ifirmaapp01", "port": "2204", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "211", "host": "ifirmaapp02", "port": "2211", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "403779", "activeSessions": "167", "averageIdlePeriod": "0.541", "avgTransactionTime": "0.039","autoRecover": "true"}, {"name": "ifirma", "id": "212", "host": "ifirmaapp02", "port": "2212", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "341086", "activeSessions": "153", "averageIdlePeriod": "0.569", "avgTransactionTime": "0.044","autoRecover": "true"}, {"name": "ifirma", "id": "213", "host": "ifirmaapp02", "port": "2213", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "214", "host": "ifirmaapp02", "port": "2214", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "221", "host": "ifirmaapp03", "port": "2221", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "311936", "activeSessions": "172", "averageIdlePeriod": "0.617", "avgTransactionTime": "0.049","autoRecover": "true"}, {"name": "ifirma", "id": "222", "host": "ifirmaapp03", "port": "2222", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "556180", "activeSessions": "150", "averageIdlePeriod": "0.66", "avgTransactionTime": "0.037","autoRecover": "true"}, {"name": "ifirma", "id": "223", "host": "ifirmaapp03", "port": "2223", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "224", "host": "ifirmaapp03", "port": "2224", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "231", "host": "ifirmaapp04", "port": "2231", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "855089", "activeSessions": "153", "averageIdlePeriod": "0.756", "avgTransactionTime": "0.044","autoRecover": "true"}, {"name": "ifirma", "id": "232", "host": "ifirmaapp04", "port": "2232", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "1010924", "activeSessions": "163", "averageIdlePeriod": "0.71", "avgTransactionTime": "0.038","autoRecover": "true"}, {"name": "ifirma", "id": "233", "host": "ifirmaapp04", "port": "2233", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "234", "host": "ifirmaapp04", "port": "2234", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "241", "host": "ifirmaapp05", "port": "2241", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "983630", "activeSessions": "147", "averageIdlePeriod": "0.664", "avgTransactionTime": "0.036","autoRecover": "true"}, {"name": "ifirma", "id": "242", "host": "ifirmaapp05", "port": "2242", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "28314", "activeSessions": "162", "averageIdlePeriod": "0.596", "avgTransactionTime": "0.072","autoRecover": "true"}, {"name": "ifirma", "id": "243", "host": "ifirmaapp05", "port": "2243", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "244", "host": "ifirmaapp05", "port": "2244", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "251", "host": "ifirmaapp06", "port": "2251", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "351796", "activeSessions": "165", "averageIdlePeriod": "0.558", "avgTransactionTime": "0.04","autoRecover": "true"}, {"name": "ifirma", "id": "252", "host": "ifirmaapp06", "port": "2252", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "287528", "activeSessions": "121", "averageIdlePeriod": "0.613", "avgTransactionTime": "0.048","autoRecover": "true"}, {"name": "ifirma", "id": "253", "host": "ifirmaapp06", "port": "2253", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "254", "host": "ifirmaapp06", "port": "2254", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "261", "host": "ifirmaapp07", "port": "2261", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "518810", "activeSessions": "190", "averageIdlePeriod": "0.901", "avgTransactionTime": "0.049","autoRecover": "true"}, {"name": "ifirma", "id": "262", "host": "ifirmaapp07", "port": "2262", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "597894", "activeSessions": "127", "averageIdlePeriod": "0.791", "avgTransactionTime": "0.04","autoRecover": "true"}, {"name": "ifirma", "id": "263", "host": "ifirmaapp07", "port": "2263", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "264", "host": "ifirmaapp07", "port": "2264", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "171", "host": "ifirmaapp08", "port": "2171", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "172", "host": "ifirmaapp08", "port": "2172", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "173", "host": "ifirmaapp08", "port": "2173", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "174", "host": "ifirmaapp08", "port": "2174", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "271", "host": "ifirmaapp08", "port": "2271", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "349186", "activeSessions": "117", "averageIdlePeriod": "0.601", "avgTransactionTime": "0.04","autoRecover": "true"}, {"name": "ifirma", "id": "272", "host": "ifirmaapp08", "port": "2272", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "358909", "activeSessions": "182", "averageIdlePeriod": "0.563", "avgTransactionTime": "0.041","autoRecover": "true"}, {"name": "ifirma", "id": "273", "host": "ifirmaapp08", "port": "2273", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma", "id": "274", "host": "ifirmaapp08", "port": "2274", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "iadmin", "id": "111", "host": "ifirmawoapps01", "port": "2111", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "214552", "activeSessions": "92", "averageIdlePeriod": "5.216", "avgTransactionTime": "0.048","autoRecover": "true"}, {"name": "iadmin", "id": "212", "host": "ifirmawoapps01", "port": "2212", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma-demo", "id": "121", "host": "ifirmawoapps01", "port": "2121", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "153463", "activeSessions": "1", "averageIdlePeriod": "7.282", "avgTransactionTime": "0.003","autoRecover": "true"}, {"name": "ifirma-demo", "id": "122", "host": "ifirmawoapps01", "port": "2122", "state": "ALIVE", "deaths": "1", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "154273", "activeSessions": "3", "averageIdlePeriod": "7.245", "avgTransactionTime": "0.003","autoRecover": "true"}, {"name": "ifirma-demo", "id": "221", "host": "ifirmawoapps01", "port": "2221", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ifirma-demo", "id": "222", "host": "ifirmawoapps01", "port": "2222", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ceidg", "id": "101", "host": "ifirmawoapps01", "port": "2101", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ceidg", "id": "102", "host": "ifirmawoapps01", "port": "2102", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ceidg", "id": "103", "host": "ifirmawoapps01", "port": "2103", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "ceidg", "id": "201", "host": "ifirmawoapps01", "port": "2201", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "162540", "activeSessions": "21", "averageIdlePeriod": "6.854", "avgTransactionTime": "0.001","autoRecover": "true"}, {"name": "ceidg", "id": "202", "host": "ifirmawoapps01", "port": "2202", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "162598", "activeSessions": "17", "averageIdlePeriod": "6.851", "avgTransactionTime": "0.001","autoRecover": "true"}, {"name": "ceidg", "id": "203", "host": "ifirmawoapps01", "port": "2203", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "162423", "activeSessions": "22", "averageIdlePeriod": "6.858", "avgTransactionTime": "0.001","autoRecover": "true"}, {"name": "PitRoczny2011", "id": "103", "host": "ifirmawoapps02", "port": "2003", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": true, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "3788", "activeSessions": "964", "averageIdlePeriod": "7.432", "avgTransactionTime": "0.038","autoRecover": "true"}, {"name": "mceidg", "id": "102", "host": "pomocniczy01", "port": "2012", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "mceidg", "id": "201", "host": "pomocniczy01", "port": "2013", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "mceidg", "id": "202", "host": "pomocniczy01", "port": "2014", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2012", "id": "104", "host": "ifirmawoapps02", "port": "2004", "state": "ALIVE", "deaths": "3", "refusingNewSessions": false, "scheduled": true, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "3789", "activeSessions": "965", "averageIdlePeriod": "7.42", "avgTransactionTime": "0.048","autoRecover": "true"}, {"name": "PitRoczny2013", "id": "202", "host": "ifirmawoapps02", "port": "2102", "state": "ALIVE", "deaths": "20", "refusingNewSessions": false, "scheduled": true, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "3796", "activeSessions": "3319", "averageIdlePeriod": "7.466", "avgTransactionTime": "0.039","autoRecover": "true"}, {"name": "PitRoczny2014", "id": "105", "host": "ifirmawoapps02", "port": "2005", "state": "ALIVE", "deaths": "20", "refusingNewSessions": false, "scheduled": true, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "3792", "activeSessions": "3315", "averageIdlePeriod": "7.454", "avgTransactionTime": "0.047","autoRecover": "true"}, {"name": "AllegroLimit", "id": "301", "host": "ifirmawoapps01", "port": "2301", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "147434", "activeSessions": "481", "averageIdlePeriod": "7.454", "avgTransactionTime": "0.103","autoRecover": "true"}, {"name": "PitRoczny2015", "id": "106", "host": "ifirmawoapps02", "port": "2006", "state": "ALIVE", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "242689", "activeSessions": "81", "averageIdlePeriod": "7.469", "avgTransactionTime": "0.045","autoRecover": "false"}, {"name": "PitRoczny2016", "id": "107", "host": "ifirmawoapps02", "port": "2007", "state": "ALIVE", "deaths": "1", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "248205", "activeSessions": "1", "averageIdlePeriod": "7.391", "avgTransactionTime": "0.021","autoRecover": "true"}, {"name": "PitRoczny2017", "id": "101", "host": "ifirmawoapps02", "port": "2002", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "102", "host": "ifirmawoapps02", "port": "2008", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "103", "host": "ifirmawoapps02", "port": "2009", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "111", "host": "ifirmawoapps02", "port": "2010", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "112", "host": "ifirmawoapps02", "port": "2011", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "113", "host": "ifirmawoapps02", "port": "2012", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "201", "host": "ifirmawoapps02", "port": "2013", "state": "ALIVE", "deaths": "2", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "277516", "activeSessions": "14", "averageIdlePeriod": "6.616", "avgTransactionTime": "0.032","autoRecover": "true"}, {"name": "PitRoczny2017", "id": "202", "host": "ifirmawoapps02", "port": "2014", "state": "ALIVE", "deaths": "2", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "278016", "activeSessions": "11", "averageIdlePeriod": "6.604", "avgTransactionTime": "0.033","autoRecover": "true"}, {"name": "PitRoczny2017", "id": "203", "host": "ifirmawoapps02", "port": "2015", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "211", "host": "ifirmawoapps02", "port": "2016", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "212", "host": "ifirmawoapps02", "port": "2017", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}, {"name": "PitRoczny2017", "id": "213", "host": "ifirmawoapps02", "port": "2018", "state": "DEAD", "deaths": "0", "refusingNewSessions": false, "scheduled": false, "schedulingHourlyStartTime": 3, "schedulingDailyStartTime": 3, "schedulingWeeklyStartTime": 3, "schedulingType": "DAILY", "schedulingStartDay": 1, "schedulingInterval": 12, "transactions": "0", "activeSessions": "0", "averageIdlePeriod": "0", "avgTransactionTime": "0","autoRecover": "false"}]
|
2
|
+
|
@@ -0,0 +1,305 @@
|
|
1
|
+
---
|
2
|
+
- name: ifirma
|
3
|
+
instance_id: '201'
|
4
|
+
host: ifirmaapp01
|
5
|
+
port: '2201'
|
6
|
+
state: ALIVE
|
7
|
+
deaths: '0'
|
8
|
+
refusingNewSessions: false
|
9
|
+
scheduled: false
|
10
|
+
schedulingHourlyStartTime: 3
|
11
|
+
schedulingDailyStartTime: 3
|
12
|
+
schedulingWeeklyStartTime: 3
|
13
|
+
schedulingType: DAILY
|
14
|
+
schedulingStartDay: 1
|
15
|
+
schedulingInterval: 12
|
16
|
+
transactions: '331111'
|
17
|
+
activeSessions: '104'
|
18
|
+
averageIdlePeriod: '0.602'
|
19
|
+
avgTransactionTime: '0.05'
|
20
|
+
autoRecover: 'true'
|
21
|
+
- name: ifirma
|
22
|
+
instance_id: '202'
|
23
|
+
host: ifirmaapp01
|
24
|
+
port: '2202'
|
25
|
+
state: ALIVE
|
26
|
+
deaths: '0'
|
27
|
+
refusingNewSessions: false
|
28
|
+
scheduled: false
|
29
|
+
schedulingHourlyStartTime: 3
|
30
|
+
schedulingDailyStartTime: 3
|
31
|
+
schedulingWeeklyStartTime: 3
|
32
|
+
schedulingType: DAILY
|
33
|
+
schedulingStartDay: 1
|
34
|
+
schedulingInterval: 12
|
35
|
+
transactions: '356468'
|
36
|
+
activeSessions: '162'
|
37
|
+
averageIdlePeriod: '0.6'
|
38
|
+
avgTransactionTime: '0.046'
|
39
|
+
autoRecover: 'true'
|
40
|
+
- name: ifirma
|
41
|
+
instance_id: '211'
|
42
|
+
host: ifirmaapp02
|
43
|
+
port: '2211'
|
44
|
+
state: ALIVE
|
45
|
+
deaths: '0'
|
46
|
+
refusingNewSessions: false
|
47
|
+
scheduled: false
|
48
|
+
schedulingHourlyStartTime: 3
|
49
|
+
schedulingDailyStartTime: 3
|
50
|
+
schedulingWeeklyStartTime: 3
|
51
|
+
schedulingType: DAILY
|
52
|
+
schedulingStartDay: 1
|
53
|
+
schedulingInterval: 12
|
54
|
+
transactions: '403779'
|
55
|
+
activeSessions: '167'
|
56
|
+
averageIdlePeriod: '0.541'
|
57
|
+
avgTransactionTime: '0.039'
|
58
|
+
autoRecover: 'true'
|
59
|
+
- name: ifirma
|
60
|
+
instance_id: '212'
|
61
|
+
host: ifirmaapp02
|
62
|
+
port: '2212'
|
63
|
+
state: ALIVE
|
64
|
+
deaths: '0'
|
65
|
+
refusingNewSessions: false
|
66
|
+
scheduled: false
|
67
|
+
schedulingHourlyStartTime: 3
|
68
|
+
schedulingDailyStartTime: 3
|
69
|
+
schedulingWeeklyStartTime: 3
|
70
|
+
schedulingType: DAILY
|
71
|
+
schedulingStartDay: 1
|
72
|
+
schedulingInterval: 12
|
73
|
+
transactions: '341086'
|
74
|
+
activeSessions: '153'
|
75
|
+
averageIdlePeriod: '0.569'
|
76
|
+
avgTransactionTime: '0.044'
|
77
|
+
autoRecover: 'true'
|
78
|
+
- name: ifirma
|
79
|
+
instance_id: '221'
|
80
|
+
host: ifirmaapp03
|
81
|
+
port: '2221'
|
82
|
+
state: ALIVE
|
83
|
+
deaths: '0'
|
84
|
+
refusingNewSessions: false
|
85
|
+
scheduled: false
|
86
|
+
schedulingHourlyStartTime: 3
|
87
|
+
schedulingDailyStartTime: 3
|
88
|
+
schedulingWeeklyStartTime: 3
|
89
|
+
schedulingType: DAILY
|
90
|
+
schedulingStartDay: 1
|
91
|
+
schedulingInterval: 12
|
92
|
+
transactions: '311936'
|
93
|
+
activeSessions: '172'
|
94
|
+
averageIdlePeriod: '0.617'
|
95
|
+
avgTransactionTime: '0.049'
|
96
|
+
autoRecover: 'true'
|
97
|
+
- name: ifirma
|
98
|
+
instance_id: '222'
|
99
|
+
host: ifirmaapp03
|
100
|
+
port: '2222'
|
101
|
+
state: ALIVE
|
102
|
+
deaths: '0'
|
103
|
+
refusingNewSessions: false
|
104
|
+
scheduled: false
|
105
|
+
schedulingHourlyStartTime: 3
|
106
|
+
schedulingDailyStartTime: 3
|
107
|
+
schedulingWeeklyStartTime: 3
|
108
|
+
schedulingType: DAILY
|
109
|
+
schedulingStartDay: 1
|
110
|
+
schedulingInterval: 12
|
111
|
+
transactions: '556180'
|
112
|
+
activeSessions: '150'
|
113
|
+
averageIdlePeriod: '0.66'
|
114
|
+
avgTransactionTime: '0.037'
|
115
|
+
autoRecover: 'true'
|
116
|
+
- name: ifirma
|
117
|
+
instance_id: '231'
|
118
|
+
host: ifirmaapp04
|
119
|
+
port: '2231'
|
120
|
+
state: ALIVE
|
121
|
+
deaths: '0'
|
122
|
+
refusingNewSessions: false
|
123
|
+
scheduled: false
|
124
|
+
schedulingHourlyStartTime: 3
|
125
|
+
schedulingDailyStartTime: 3
|
126
|
+
schedulingWeeklyStartTime: 3
|
127
|
+
schedulingType: DAILY
|
128
|
+
schedulingStartDay: 1
|
129
|
+
schedulingInterval: 12
|
130
|
+
transactions: '855089'
|
131
|
+
activeSessions: '153'
|
132
|
+
averageIdlePeriod: '0.756'
|
133
|
+
avgTransactionTime: '0.044'
|
134
|
+
autoRecover: 'true'
|
135
|
+
- name: ifirma
|
136
|
+
instance_id: '232'
|
137
|
+
host: ifirmaapp04
|
138
|
+
port: '2232'
|
139
|
+
state: ALIVE
|
140
|
+
deaths: '0'
|
141
|
+
refusingNewSessions: false
|
142
|
+
scheduled: false
|
143
|
+
schedulingHourlyStartTime: 3
|
144
|
+
schedulingDailyStartTime: 3
|
145
|
+
schedulingWeeklyStartTime: 3
|
146
|
+
schedulingType: DAILY
|
147
|
+
schedulingStartDay: 1
|
148
|
+
schedulingInterval: 12
|
149
|
+
transactions: '1010924'
|
150
|
+
activeSessions: '163'
|
151
|
+
averageIdlePeriod: '0.71'
|
152
|
+
avgTransactionTime: '0.038'
|
153
|
+
autoRecover: 'true'
|
154
|
+
- name: ifirma
|
155
|
+
instance_id: '241'
|
156
|
+
host: ifirmaapp05
|
157
|
+
port: '2241'
|
158
|
+
state: ALIVE
|
159
|
+
deaths: '0'
|
160
|
+
refusingNewSessions: false
|
161
|
+
scheduled: false
|
162
|
+
schedulingHourlyStartTime: 3
|
163
|
+
schedulingDailyStartTime: 3
|
164
|
+
schedulingWeeklyStartTime: 3
|
165
|
+
schedulingType: DAILY
|
166
|
+
schedulingStartDay: 1
|
167
|
+
schedulingInterval: 12
|
168
|
+
transactions: '983630'
|
169
|
+
activeSessions: '147'
|
170
|
+
averageIdlePeriod: '0.664'
|
171
|
+
avgTransactionTime: '0.036'
|
172
|
+
autoRecover: 'true'
|
173
|
+
- name: ifirma
|
174
|
+
instance_id: '242'
|
175
|
+
host: ifirmaapp05
|
176
|
+
port: '2242'
|
177
|
+
state: ALIVE
|
178
|
+
deaths: '0'
|
179
|
+
refusingNewSessions: false
|
180
|
+
scheduled: false
|
181
|
+
schedulingHourlyStartTime: 3
|
182
|
+
schedulingDailyStartTime: 3
|
183
|
+
schedulingWeeklyStartTime: 3
|
184
|
+
schedulingType: DAILY
|
185
|
+
schedulingStartDay: 1
|
186
|
+
schedulingInterval: 12
|
187
|
+
transactions: '28314'
|
188
|
+
activeSessions: '162'
|
189
|
+
averageIdlePeriod: '0.596'
|
190
|
+
avgTransactionTime: '0.072'
|
191
|
+
autoRecover: 'true'
|
192
|
+
- name: ifirma
|
193
|
+
instance_id: '251'
|
194
|
+
host: ifirmaapp06
|
195
|
+
port: '2251'
|
196
|
+
state: ALIVE
|
197
|
+
deaths: '0'
|
198
|
+
refusingNewSessions: false
|
199
|
+
scheduled: false
|
200
|
+
schedulingHourlyStartTime: 3
|
201
|
+
schedulingDailyStartTime: 3
|
202
|
+
schedulingWeeklyStartTime: 3
|
203
|
+
schedulingType: DAILY
|
204
|
+
schedulingStartDay: 1
|
205
|
+
schedulingInterval: 12
|
206
|
+
transactions: '351796'
|
207
|
+
activeSessions: '165'
|
208
|
+
averageIdlePeriod: '0.558'
|
209
|
+
avgTransactionTime: '0.04'
|
210
|
+
autoRecover: 'true'
|
211
|
+
- name: ifirma
|
212
|
+
instance_id: '252'
|
213
|
+
host: ifirmaapp06
|
214
|
+
port: '2252'
|
215
|
+
state: ALIVE
|
216
|
+
deaths: '0'
|
217
|
+
refusingNewSessions: false
|
218
|
+
scheduled: false
|
219
|
+
schedulingHourlyStartTime: 3
|
220
|
+
schedulingDailyStartTime: 3
|
221
|
+
schedulingWeeklyStartTime: 3
|
222
|
+
schedulingType: DAILY
|
223
|
+
schedulingStartDay: 1
|
224
|
+
schedulingInterval: 12
|
225
|
+
transactions: '287528'
|
226
|
+
activeSessions: '121'
|
227
|
+
averageIdlePeriod: '0.613'
|
228
|
+
avgTransactionTime: '0.048'
|
229
|
+
autoRecover: 'true'
|
230
|
+
- name: ifirma
|
231
|
+
instance_id: '261'
|
232
|
+
host: ifirmaapp07
|
233
|
+
port: '2261'
|
234
|
+
state: ALIVE
|
235
|
+
deaths: '0'
|
236
|
+
refusingNewSessions: false
|
237
|
+
scheduled: false
|
238
|
+
schedulingHourlyStartTime: 3
|
239
|
+
schedulingDailyStartTime: 3
|
240
|
+
schedulingWeeklyStartTime: 3
|
241
|
+
schedulingType: DAILY
|
242
|
+
schedulingStartDay: 1
|
243
|
+
schedulingInterval: 12
|
244
|
+
transactions: '518810'
|
245
|
+
activeSessions: '190'
|
246
|
+
averageIdlePeriod: '0.901'
|
247
|
+
avgTransactionTime: '0.049'
|
248
|
+
autoRecover: 'true'
|
249
|
+
- name: ifirma
|
250
|
+
instance_id: '262'
|
251
|
+
host: ifirmaapp07
|
252
|
+
port: '2262'
|
253
|
+
state: ALIVE
|
254
|
+
deaths: '0'
|
255
|
+
refusingNewSessions: false
|
256
|
+
scheduled: false
|
257
|
+
schedulingHourlyStartTime: 3
|
258
|
+
schedulingDailyStartTime: 3
|
259
|
+
schedulingWeeklyStartTime: 3
|
260
|
+
schedulingType: DAILY
|
261
|
+
schedulingStartDay: 1
|
262
|
+
schedulingInterval: 12
|
263
|
+
transactions: '597894'
|
264
|
+
activeSessions: '127'
|
265
|
+
averageIdlePeriod: '0.791'
|
266
|
+
avgTransactionTime: '0.04'
|
267
|
+
autoRecover: 'true'
|
268
|
+
- name: ifirma
|
269
|
+
instance_id: '271'
|
270
|
+
host: ifirmaapp08
|
271
|
+
port: '2271'
|
272
|
+
state: ALIVE
|
273
|
+
deaths: '0'
|
274
|
+
refusingNewSessions: false
|
275
|
+
scheduled: false
|
276
|
+
schedulingHourlyStartTime: 3
|
277
|
+
schedulingDailyStartTime: 3
|
278
|
+
schedulingWeeklyStartTime: 3
|
279
|
+
schedulingType: DAILY
|
280
|
+
schedulingStartDay: 1
|
281
|
+
schedulingInterval: 12
|
282
|
+
transactions: '349186'
|
283
|
+
activeSessions: '117'
|
284
|
+
averageIdlePeriod: '0.601'
|
285
|
+
avgTransactionTime: '0.04'
|
286
|
+
autoRecover: 'true'
|
287
|
+
- name: ifirma
|
288
|
+
instance_id: '272'
|
289
|
+
host: ifirmaapp08
|
290
|
+
port: '2272'
|
291
|
+
state: ALIVE
|
292
|
+
deaths: '0'
|
293
|
+
refusingNewSessions: false
|
294
|
+
scheduled: false
|
295
|
+
schedulingHourlyStartTime: 3
|
296
|
+
schedulingDailyStartTime: 3
|
297
|
+
schedulingWeeklyStartTime: 3
|
298
|
+
schedulingType: DAILY
|
299
|
+
schedulingStartDay: 1
|
300
|
+
schedulingInterval: 12
|
301
|
+
transactions: '358909'
|
302
|
+
activeSessions: '182'
|
303
|
+
averageIdlePeriod: '0.563'
|
304
|
+
avgTransactionTime: '0.041'
|
305
|
+
autoRecover: 'true'
|