{ "zabbix_export": { "version": "6.4", "template_groups": [ { "uuid": "cf12023e2c3542409d7152bdbb8dcd2a", "name": "Nextcloud Installation" }, { "uuid": "a571c0d144b14fd4a87a9d9b2aa9fcd6", "name": "Templates/Applications" } ], "templates": [ { "uuid": "86702e8bc514434e8c914d50c206cb94", "template": "Apache", "name": "Apache", "description": "Get metrics from mod_status module using HTTP agent.\nhttps://httpd.apache.org/docs/current/mod/mod_status.html\n\nYou can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384764-discussion-thread-for-official-zabbix-template-apache\n\nTemplate tooling version used: 0.42", "groups": [ { "name": "Nextcloud Installation" }, { "name": "Templates/Applications" } ], "items": [ { "uuid": "b9fe6f0bbe174e9f81af84a3bc0b0e7c", "name": "Apache: Total bytes", "type": "DEPENDENT", "key": "apache.bytes", "delay": "0", "history": "7d", "value_type": "FLOAT", "units": "B", "description": "Total bytes served", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$[\"Total kBytes\"]" ] }, { "type": "MULTIPLIER", "parameters": [ "1024" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "network" } ] }, { "uuid": "b36010be10874cf188eeacc81f2c366f", "name": "Apache: Bytes per second", "type": "DEPENDENT", "key": "apache.bytes.rate", "delay": "0", "history": "7d", "value_type": "FLOAT", "units": "Bps", "description": "Calculated as change rate for 'Total bytes' stat.\nBytesPerSec is not used, as it counts average since last Apache server start.", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$[\"Total kBytes\"]" ] }, { "type": "MULTIPLIER", "parameters": [ "1024" ] }, { "type": "CHANGE_PER_SECOND", "parameters": [ "" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "network" } ] }, { "uuid": "e61be8ad92004100aca55fcedd2a3807", "name": "Apache: Get status", "type": "HTTP_AGENT", "key": "apache.get_status", "history": "1h", "trends": "0", "value_type": "TEXT", "description": "Getting data from a machine-readable version of the Apache status page.\nhttps://httpd.apache.org/docs/current/mod/mod_status.html", "preprocessing": [ { "type": "JAVASCRIPT", "parameters": [ "// Convert Apache status to JSON\nvar lines = value.split('\\n');\nvar output = {},\n workers = {\n '_': 0, 'S': 0, 'R': 0, 'W': 0,\n 'K': 0, 'D': 0, 'C': 0, 'L': 0,\n 'G': 0, 'I': 0, '.': 0\n };\n\n// Get all \"Key: Value\" pairs as an object\nfor (var i = 0; i < lines.length; i++) {\n var line = lines[i].match(/([A-z0-9 ]+): (.*)/);\n\n if (line !== null) {\n output[line[1]] = isNaN(line[2]) ? line[2] : Number(line[2]);\n }\n}\n\n// Multiversion metrics\noutput.ServerUptimeSeconds = output.ServerUptimeSeconds || output.Uptime;\noutput.ServerVersion = output.ServerVersion || output.Server;\n\n// Parse \"Scoreboard\" to get worker count.\nif (typeof output.Scoreboard === 'string') {\n for (var i = 0; i < output.Scoreboard.length; i++) {\n var char = output.Scoreboard[i];\n\n workers[char]++;\n }\n}\n\n// Add worker data to the output\noutput.Workers = {\n waiting: workers['_'], starting: workers['S'], reading: workers['R'],\n sending: workers['W'], keepalive: workers['K'], dnslookup: workers['D'],\n closing: workers['C'], logging: workers['L'], finishing: workers['G'],\n cleanup: workers['I'], slot: workers['.']\n};\n\n// Return JSON string\nreturn JSON.stringify(output);" ] } ], "url": "{$APACHE.STATUS.SCHEME}://{HOST.CONN}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}", "retrieve_mode": "BOTH", "tags": [ { "tag": "component", "value": "raw" } ], "triggers": [ { "uuid": "db396445cc5042f89f31dc12cb99c32e", "expression": "nodata(/Apache/apache.get_status,30m)=1", "name": "Apache: Failed to fetch status page", "event_name": "Apache: Failed to fetch status page (or no data for 30m)", "priority": "WARNING", "description": "Zabbix has not received data for items for the last 30 minutes.", "manual_close": "YES", "dependencies": [ { "name": "Apache: Service is down", "expression": "last(/Apache/net.tcp.service[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"])=0" } ], "tags": [ { "tag": "scope", "value": "availability" } ] } ] }, { "uuid": "5fb5101de70a43fab50d55f418462255", "name": "Apache: Total requests", "type": "DEPENDENT", "key": "apache.requests", "delay": "0", "history": "7d", "description": "A total number of accesses", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$[\"Total Accesses\"]" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "network" } ] }, { "uuid": "ee15f4958040459da53251cc3561ed39", "name": "Apache: Requests per second", "type": "DEPENDENT", "key": "apache.requests.rate", "delay": "0", "history": "7d", "value_type": "FLOAT", "description": "Calculated as change rate for 'Total requests' stat.\nReqPerSec is not used, as it counts average since last Apache server start.", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$[\"Total Accesses\"]" ] }, { "type": "CHANGE_PER_SECOND", "parameters": [ "" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "network" } ] }, { "uuid": "3dd8ba505d584b028c7ac08d8b959eb3", "name": "Apache: Uptime", "type": "DEPENDENT", "key": "apache.uptime", "delay": "0", "history": "7d", "units": "uptime", "description": "Service uptime in seconds", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ServerUptimeSeconds" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ], "triggers": [ { "uuid": "76cfa6ebf39f4c8fbd8fde9e0f36d3ed", "expression": "last(/Apache/apache.uptime)<10m", "name": "Apache: has been restarted", "event_name": "Apache: has been restarted (uptime < 10m)", "priority": "INFO", "description": "Uptime is less than 10 minutes.", "manual_close": "YES", "tags": [ { "tag": "scope", "value": "notice" } ] } ] }, { "uuid": "fe0de2eb1478482f99b38c13bd20564c", "name": "Apache: Version", "type": "DEPENDENT", "key": "apache.version", "delay": "0", "history": "7d", "trends": "0", "value_type": "CHAR", "description": "Service version", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ServerVersion" ] }, { "type": "DISCARD_UNCHANGED_HEARTBEAT", "parameters": [ "1d" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ], "triggers": [ { "uuid": "5296d69af0704d0e8a07398f0b4c9685", "expression": "last(/Apache/apache.version,#1)<>last(/Apache/apache.version,#2) and length(last(/Apache/apache.version))>0", "name": "Apache: Version has changed", "event_name": "Apache: Version has changed (new version: {ITEM.VALUE})", "priority": "INFO", "description": "Apache version has changed. Ack to close.", "manual_close": "YES", "tags": [ { "tag": "scope", "value": "notice" } ] } ] }, { "uuid": "f74ffb92e30e48958b5b82f7dfbe5147", "name": "Apache: Workers idle cleanup", "type": "DEPENDENT", "key": "apache.workers.cleanup", "delay": "0", "history": "7d", "description": "Number of workers in cleanup state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.cleanup" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "d664bee9a330480bbaee7273b871a8d3", "name": "Apache: Workers closing connection", "type": "DEPENDENT", "key": "apache.workers.closing", "delay": "0", "history": "7d", "description": "Number of workers in closing state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.closing" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "a6fb3444585749be998ec840cd8e4511", "name": "Apache: Workers DNS lookup", "type": "DEPENDENT", "key": "apache.workers.dnslookup", "delay": "0", "history": "7d", "description": "Number of workers in dnslookup state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.dnslookup" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "fcf771f2a9b64a81a37db679f0494ed3", "name": "Apache: Workers finishing", "type": "DEPENDENT", "key": "apache.workers.finishing", "delay": "0", "history": "7d", "description": "Number of workers in finishing state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.finishing" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "cb81a6a77395444283bc5e065fcbfc2e", "name": "Apache: Workers keepalive (read)", "type": "DEPENDENT", "key": "apache.workers.keepalive", "delay": "0", "history": "7d", "description": "Number of workers in keepalive state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.keepalive" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "7fc0002a279b4541af569a03c1aca2ac", "name": "Apache: Workers logging", "type": "DEPENDENT", "key": "apache.workers.logging", "delay": "0", "history": "7d", "description": "Number of workers in logging state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.logging" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "78b0bd7d8bec49549fc003d460af9177", "name": "Apache: Workers reading request", "type": "DEPENDENT", "key": "apache.workers.reading", "delay": "0", "history": "7d", "description": "Number of workers in reading state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.reading" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "379ac66397b94463ad17b24fbd20c615", "name": "Apache: Workers sending reply", "type": "DEPENDENT", "key": "apache.workers.sending", "delay": "0", "history": "7d", "description": "Number of workers in sending state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.sending" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "1c90055e02a244fc8d18e73b23daa0f1", "name": "Apache: Workers slot with no current process", "type": "DEPENDENT", "key": "apache.workers.slot", "delay": "0", "history": "7d", "description": "Number of slots with no current process", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.slot" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "ae21ea113e8840349aff81ab582d92b4", "name": "Apache: Workers starting up", "type": "DEPENDENT", "key": "apache.workers.starting", "delay": "0", "history": "7d", "description": "Number of workers in starting state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.starting" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "be1a05a6eab84b64ac4d51c966ea91e8", "name": "Apache: Workers waiting for connection", "type": "DEPENDENT", "key": "apache.workers.waiting", "delay": "0", "history": "7d", "description": "Number of workers in waiting state", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Workers.waiting" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "1752b9bcf7b34abbaf105f5261638271", "name": "Apache: Total workers busy", "type": "DEPENDENT", "key": "apache.workers_total.busy", "delay": "0", "history": "7d", "description": "Total number of busy worker threads/processes", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.BusyWorkers" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "b1b1c86a12964ae2813c63481e464ec7", "name": "Apache: Total workers idle", "type": "DEPENDENT", "key": "apache.workers_total.idle", "delay": "0", "history": "7d", "description": "Total number of idle worker threads/processes", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.IdleWorkers" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] }, { "uuid": "5039d11bc3964d6e9928a0a46dd0b402", "name": "Apache: Service response time", "type": "SIMPLE", "key": "net.tcp.service.perf[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"]", "history": "7d", "value_type": "FLOAT", "units": "s", "tags": [ { "tag": "component", "value": "application" }, { "tag": "component", "value": "health" } ], "triggers": [ { "uuid": "ffbb564032c7462eb0bb9b4c2f700559", "expression": "min(/Apache/net.tcp.service.perf[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"],5m)>{$APACHE.RESPONSE_TIME.MAX.WARN}", "name": "Apache: Service response time is too high", "event_name": "Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)", "priority": "WARNING", "manual_close": "YES", "dependencies": [ { "name": "Apache: Service is down", "expression": "last(/Apache/net.tcp.service[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"])=0" } ], "tags": [ { "tag": "scope", "value": "performance" } ] } ] }, { "uuid": "fb65918695094026838e2b9e4ca00402", "name": "Apache: Service ping", "type": "SIMPLE", "key": "net.tcp.service[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"]", "history": "7d", "valuemap": { "name": "Service state" }, "preprocessing": [ { "type": "DISCARD_UNCHANGED_HEARTBEAT", "parameters": [ "10m" ] } ], "tags": [ { "tag": "component", "value": "application" }, { "tag": "component", "value": "health" } ], "triggers": [ { "uuid": "afe2fde35d054333adc8369a0f9af778", "expression": "last(/Apache/net.tcp.service[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"])=0", "name": "Apache: Service is down", "priority": "AVERAGE", "manual_close": "YES", "tags": [ { "tag": "scope", "value": "availability" } ] } ] } ], "discovery_rules": [ { "uuid": "eee8abd3174d426092e8bca9b3ba982e", "name": "Event MPM discovery", "type": "DEPENDENT", "key": "apache.mpm.event.discovery", "delay": "0", "description": "Additional metrics if event MPM is used\nhttps://httpd.apache.org/docs/current/mod/event.html", "item_prototypes": [ { "uuid": "f52700379f9a4ee8b378a2eb9caea070", "name": "Apache: Bytes per request", "type": "DEPENDENT", "key": "apache.bytes[per_request{#SINGLETON}]", "delay": "0", "history": "7d", "value_type": "FLOAT", "units": "B", "description": "Average number of client requests per second", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.BytesPerReq" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "connection" } ] }, { "uuid": "062d7c941f0c468d8b63fa76ae0610f6", "name": "Apache: Connections async closing", "type": "DEPENDENT", "key": "apache.connections[async_closing{#SINGLETON}]", "delay": "0", "history": "7d", "description": "Number of async connections in closing state (only applicable to event MPM)", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ConnsAsyncClosing" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "connection" } ] }, { "uuid": "6cb8b255ad8343a48e622912bc298366", "name": "Apache: Connections async keep alive", "type": "DEPENDENT", "key": "apache.connections[async_keep_alive{#SINGLETON}]", "delay": "0", "history": "7d", "description": "Number of async connections in keep-alive state (only applicable to event MPM)", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ConnsAsyncKeepAlive" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "connection" } ] }, { "uuid": "997b3452aac24ad6afbad775d649c727", "name": "Apache: Connections async writing", "type": "DEPENDENT", "key": "apache.connections[async_writing{#SINGLETON}]", "delay": "0", "history": "7d", "description": "Number of async connections in writing state (only applicable to event MPM)", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ConnsAsyncWriting" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "connection" } ] }, { "uuid": "31cb044eed904ca19150921fe36f3285", "name": "Apache: Connections total", "type": "DEPENDENT", "key": "apache.connections[total{#SINGLETON}]", "delay": "0", "history": "7d", "description": "Number of total connections", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.ConnsTotal" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "connection" } ] }, { "uuid": "34555340f3ad4b878504df188f54a9c9", "name": "Apache: Number of async processes", "type": "DEPENDENT", "key": "apache.process[num{#SINGLETON}]", "delay": "0", "history": "7d", "description": "Number of async processes", "preprocessing": [ { "type": "JSONPATH", "parameters": [ "$.Processes" ] } ], "master_item": { "key": "apache.get_status" }, "tags": [ { "tag": "component", "value": "system" } ] } ], "graph_prototypes": [ { "uuid": "066b53ed2244414ca3090498eb035c27", "name": "Apache: Current async connections{#SINGLETON}", "graph_items": [ { "color": "1A7C11", "item": { "host": "Apache", "key": "apache.connections[async_closing{#SINGLETON}]" } }, { "sortorder": "1", "color": "2774A4", "item": { "host": "Apache", "key": "apache.connections[async_keep_alive{#SINGLETON}]" } }, { "sortorder": "2", "color": "F63100", "item": { "host": "Apache", "key": "apache.connections[async_writing{#SINGLETON}]" } }, { "sortorder": "3", "drawtype": "BOLD_LINE", "color": "A54F10", "item": { "host": "Apache", "key": "apache.connections[total{#SINGLETON}]" } } ] }, { "uuid": "dbaa0c2468cc40fca977fb382d19cb78", "name": "Apache: Current async processes{#SINGLETON}", "graph_items": [ { "drawtype": "GRADIENT_LINE", "color": "1A7C11", "item": { "host": "Apache", "key": "apache.process[num{#SINGLETON}]" } } ] } ], "master_item": { "key": "apache.get_status" }, "preprocessing": [ { "type": "JAVASCRIPT", "parameters": [ "return JSON.stringify(JSON.parse(value).ServerMPM === 'event'\n ? [{'{#SINGLETON}': ''}] : []);" ] }, { "type": "DISCARD_UNCHANGED_HEARTBEAT", "parameters": [ "3h" ] } ] } ], "tags": [ { "tag": "class", "value": "software" }, { "tag": "target", "value": "apache" } ], "macros": [ { "macro": "{$APACHE.RESPONSE_TIME.MAX.WARN}", "value": "10", "description": "Maximum Apache response time in seconds for trigger expression" }, { "macro": "{$APACHE.STATUS.PATH}", "value": "server-status?auto", "description": "The URL path" }, { "macro": "{$APACHE.STATUS.PORT}", "value": "81", "description": "The port of Apache status page" }, { "macro": "{$APACHE.STATUS.SCHEME}", "value": "http", "description": "Request scheme which may be http or https" } ], "dashboards": [ { "uuid": "a328c9e713424465a8e1adec7322b0dc", "name": "Web Server", "display_period": "60", "pages": [ { "widgets": [ { "type": "graph", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Requests per second" } } ] }, { "type": "graph", "y": "5", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Bytes per second" } } ] }, { "type": "graph", "y": "10", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Service response time" } } ] }, { "type": "graph", "x": "12", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Workers total" } } ] }, { "type": "graph", "x": "12", "y": "5", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Worker states" } } ] }, { "type": "graph", "x": "12", "y": "10", "width": "12", "height": "5", "fields": [ { "type": "GRAPH", "name": "graphid", "value": { "host": "Apache", "name": "Apache: Service ping" } } ] } ] } ] } ], "valuemaps": [ { "uuid": "a5d1f911fb264bd4bc087ea582626d7f", "name": "Service state", "mappings": [ { "value": "0", "newvalue": "Down" }, { "value": "1", "newvalue": "Up" } ] } ] } ], "graphs": [ { "uuid": "be2cc04cb0044b7bb4b57295477a0d59", "name": "Apache: Bytes per second", "graph_items": [ { "color": "1A7C11", "calc_fnc": "ALL", "item": { "host": "Apache", "key": "apache.bytes.rate" } } ] }, { "uuid": "a3998992f7504a12826e3c4d592836b5", "name": "Apache: Requests per second", "graph_items": [ { "drawtype": "GRADIENT_LINE", "color": "1A7C11", "item": { "host": "Apache", "key": "apache.requests.rate" } } ] }, { "uuid": "ef7cd463999a4b33af49fa3261cd6bf3", "name": "Apache: Service ping", "graph_items": [ { "color": "1A7C11", "calc_fnc": "ALL", "item": { "host": "Apache", "key": "net.tcp.service[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"]" } } ] }, { "uuid": "b1ed1612dc72482f92ce41468499e6a8", "name": "Apache: Service response time", "graph_items": [ { "color": "1A7C11", "calc_fnc": "ALL", "item": { "host": "Apache", "key": "net.tcp.service.perf[http,\"{HOST.CONN}\",\"{$APACHE.STATUS.PORT}\"]" } } ] }, { "uuid": "1629062b5cd74b67af9a60226a79f8f1", "name": "Apache: Worker states", "graph_items": [ { "color": "1A7C11", "item": { "host": "Apache", "key": "apache.workers.dnslookup" } }, { "sortorder": "1", "color": "2774A4", "item": { "host": "Apache", "key": "apache.workers.cleanup" } }, { "sortorder": "2", "color": "F63100", "item": { "host": "Apache", "key": "apache.workers.logging" } }, { "sortorder": "3", "color": "A54F10", "item": { "host": "Apache", "key": "apache.workers.reading" } }, { "sortorder": "4", "color": "FC6EA3", "item": { "host": "Apache", "key": "apache.workers.sending" } }, { "sortorder": "5", "color": "6C59DC", "item": { "host": "Apache", "key": "apache.workers.starting" } }, { "sortorder": "6", "color": "AC8C14", "item": { "host": "Apache", "key": "apache.workers.closing" } }, { "sortorder": "7", "color": "611F27", "item": { "host": "Apache", "key": "apache.workers.finishing" } }, { "sortorder": "8", "color": "F230E0", "item": { "host": "Apache", "key": "apache.workers.keepalive" } }, { "sortorder": "9", "color": "FFAD40", "item": { "host": "Apache", "key": "apache.workers.slot" } }, { "sortorder": "10", "color": "40CDFF", "item": { "host": "Apache", "key": "apache.workers.waiting" } } ] }, { "uuid": "78e59f1b5eb747019f92921ac5ef48b0", "name": "Apache: Workers total", "type": "STACKED", "graph_items": [ { "color": "1A7C11", "item": { "host": "Apache", "key": "apache.workers_total.busy" } }, { "sortorder": "1", "color": "2774A4", "item": { "host": "Apache", "key": "apache.workers_total.idle" } } ] } ] } }