diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
commit | b46aad6df449445a9fc4aa7b32bd40005438e3f7 (patch) | |
tree | 751aa858ca01f35de800164516b298887382919d /admin/netsnmp-perl | |
parent | Initial commit. (diff) | |
download | haproxy-upstream/2.9.5.tar.xz haproxy-upstream/2.9.5.zip |
Adding upstream version 2.9.5.upstream/2.9.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'admin/netsnmp-perl')
-rw-r--r-- | admin/netsnmp-perl/README | 111 | ||||
-rw-r--r-- | admin/netsnmp-perl/cacti_data_query_haproxy_backends.xml | 750 | ||||
-rw-r--r-- | admin/netsnmp-perl/cacti_data_query_haproxy_frontends.xml | 750 | ||||
-rw-r--r-- | admin/netsnmp-perl/haproxy.pl | 249 | ||||
-rw-r--r-- | admin/netsnmp-perl/haproxy_backend.xml | 83 | ||||
-rw-r--r-- | admin/netsnmp-perl/haproxy_frontend.xml | 83 | ||||
-rw-r--r-- | admin/netsnmp-perl/haproxy_socket.xml | 90 |
7 files changed, 2116 insertions, 0 deletions
diff --git a/admin/netsnmp-perl/README b/admin/netsnmp-perl/README new file mode 100644 index 0000000..f44eb5b --- /dev/null +++ b/admin/netsnmp-perl/README @@ -0,0 +1,111 @@ +SNMP support for HAProxy +Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl> + +Root OID: 1.3.6.1.4.1.29385.106 + +Files: + - README: this file + - haproxy.pl: Net-SNMP embedded perl module + - haproxy_backend.xml: Cacti snmp-query definition for backends + - haproxy_frontend.xml: Cacti snmp-query definition for frontends + +Install: + cp haproxy.pl /etc/snmp/ + grep -q "disablePerl false" /etc/snmp/snmpd.conf || echo "disablePerl false" >> /etc/snmp/snmpd.conf + echo "perl do '/etc/snmp/haproxy.pl';" >> /etc/snmp/snmpd.conf + +Supported commands: + - GET (snmpget, snmpbulkget): quite fast. + - GETNEXT (snmpwalk, snmpbulkwalk): not so fast as requires to transfer + and parse a lot of data during each step. Always use "get" instead of "walk" + if that's possible. + +Supported OIDs: + - 1.3.6.1.4.1.29385.106.1: get a variable from stats + Usage: 1.3.6.1.4.1.29385.106.1.$type.$field.$iid.$sid + + - type is one of: + 0) frontend + 1) backend + 2) server + + - field is one of: + 0..32) CSV format variable + 10001) index + 10002) unique name + + - iid is a proxy id + + - sid is a service id (sid): 0 for frontends and backends, >= 1 for servers + + - 1.3.6.1.4.1.29385.106.2: get a variable from info + Usage: 1.3.6.1.4.1.29385.106.2.$req.$varnr + + - req is one of: + 0) get variable name + 1) gat variable value + +Examples: + +- Get a list of frontends (type: 0) with status (field: 17): +$ snmpbulkwalk -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.1.0.17 +SNMPv2-SMI::enterprises.29385.106.1.0.17.1.0 = STRING: "OPEN" +SNMPv2-SMI::enterprises.29385.106.1.0.17.47.0 = STRING: "OPEN" + +- Get a list of backends (type: 1) with index (field: 10001): +$ snmpbulkwalk -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.1.1.10001 +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1.0 = STRING: "1.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1100.0 = STRING: "1100.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1101.0 = STRING: "1101.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1200.0 = STRING: "1200.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1201.0 = STRING: "1201.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1300.0 = STRING: "1300.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1400.0 = STRING: "1400.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1401.0 = STRING: "1401.0" +SNMPv2-SMI::enterprises.29385.106.1.1.10001.1500.0 = STRING: "1500.0" +(...) + +- Get a list of servers (type: 2) with unique name (field: 10002): +$ snmpbulkwalk -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.1.2.10002 +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1100.1001 = STRING: "backend1/s2" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1100.1002 = STRING: "backend1/s5" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1100.1003 = STRING: "backend1/s6" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1100.1012 = STRING: "backend1/s7" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1101.1001 = STRING: "backend2/s9" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1101.1002 = STRING: "backend2/s10" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1101.1003 = STRING: "backend2/s11" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1101.1012 = STRING: "backend2/s12" +SNMPv2-SMI::enterprises.29385.106.1.2.10002.1200.1001 = STRING: "backend3/s8" +(...) + +- Get a list of servers (type: 2) with weight (field: 18) in proxy 4300: +$ snmpbulkwalk -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.1.2.18.4300 +SNMPv2-SMI::enterprises.29385.106.1.2.18.4300.1001 = STRING: "40" +SNMPv2-SMI::enterprises.29385.106.1.2.18.4300.1002 = STRING: "25" +SNMPv2-SMI::enterprises.29385.106.1.2.18.4300.1003 = STRING: "40" +SNMPv2-SMI::enterprises.29385.106.1.2.18.4300.1012 = STRING: "80" + +- Get total sessions count (field: 7) in frontend (type: 1), sid.iid: 47.0 (proxy #47): +snmpget -c public -v2c 192.168.0.1 enterprises.29385.106.1.0.7.47.0 +SNMPv2-SMI::enterprises.29385.106.1.0.7.47.0 = STRING: "1014019" + +- Get a list of available variables (req: 0): +$ snmpbulkwalk -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.2.0 +SNMPv2-SMI::enterprises.29385.106.2.0.0 = STRING: "Name" +SNMPv2-SMI::enterprises.29385.106.2.0.1 = STRING: "Version" +SNMPv2-SMI::enterprises.29385.106.2.0.2 = STRING: "Release_date" +SNMPv2-SMI::enterprises.29385.106.2.0.3 = STRING: "Nbproc" +SNMPv2-SMI::enterprises.29385.106.2.0.4 = STRING: "Process_num" +SNMPv2-SMI::enterprises.29385.106.2.0.5 = STRING: "Pid" +SNMPv2-SMI::enterprises.29385.106.2.0.6 = STRING: "Uptime" +SNMPv2-SMI::enterprises.29385.106.2.0.7 = STRING: "Uptime_sec" +SNMPv2-SMI::enterprises.29385.106.2.0.8 = STRING: "Memmax_MB" +SNMPv2-SMI::enterprises.29385.106.2.0.9 = STRING: "Ulimit-n" +SNMPv2-SMI::enterprises.29385.106.2.0.10 = STRING: "Maxsock" +SNMPv2-SMI::enterprises.29385.106.2.0.11 = STRING: "Maxconn" +SNMPv2-SMI::enterprises.29385.106.2.0.12 = STRING: "CurrConns" + +- Get a variable (req: 1), varnr: 7 (Uptime_sec): +$ snmpget -c public -v2c 192.168.0.1 1.3.6.1.4.1.29385.106.2.1.7 +SNMPv2-SMI::enterprises.29385.106.2.1.7 = STRING: "18761" + diff --git a/admin/netsnmp-perl/cacti_data_query_haproxy_backends.xml b/admin/netsnmp-perl/cacti_data_query_haproxy_backends.xml new file mode 100644 index 0000000..9c4ea38 --- /dev/null +++ b/admin/netsnmp-perl/cacti_data_query_haproxy_backends.xml @@ -0,0 +1,750 @@ +<cacti> + <hash_040013d1dd43e3e5cee941860ea277826c4fe2> + <name>HaProxy Backends</name> + <description></description> + <xml_path><path_cacti>/resource/snmp_queries/haproxy_backend.xml</xml_path> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <graphs> + <hash_1100134d2954fa52f51ed186916f2cf624a8b9> + <name>HAProxy Backend Sessions</name> + <graph_template_id>hash_000013cdbf9accfcd57d9e0a7c97896313ddee</graph_template_id> + <rrd> + <item_000> + <snmp_field_name>beSTot</snmp_field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <data_template_rrd_id>hash_080013230e04055a4228154123e74c6586d435</data_template_rrd_id> + </item_000> + <item_001> + <snmp_field_name>beEResp</snmp_field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <data_template_rrd_id>hash_080013088549c8d7e8cdc80f19bae4d78dc296</data_template_rrd_id> + </item_001> + </rrd> + <sv_graph> + <hash_12001368ff8a0bfc447cb94d02e0d17cc3e252> + <field_name>ResponseErrors</field_name> + <sequence>1</sequence> + <text>ResponseErrors</text> + </hash_12001368ff8a0bfc447cb94d02e0d17cc3e252> + <hash_120013c2e81996ac5a70f67fa4a07e95eea035> + <field_name>TotalSessions</field_name> + <sequence>1</sequence> + <text>TotalSessions</text> + </hash_120013c2e81996ac5a70f67fa4a07e95eea035> + </sv_graph> + <sv_data_source> + <hash_130013169b7ea71d2aa3a8abaece19de7feeff> + <field_name>ResponseErrors</field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <sequence>1</sequence> + <text>ResponseErrors</text> + </hash_130013169b7ea71d2aa3a8abaece19de7feeff> + <hash_130013a61ea1bb051f2162ba635c815324678d> + <field_name>TotalSessions</field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <sequence>1</sequence> + <text>TotalSessions</text> + </hash_130013a61ea1bb051f2162ba635c815324678d> + </sv_data_source> + </hash_1100134d2954fa52f51ed186916f2cf624a8b9> + <hash_110013abc35ade0aae030d90f817dfd91486f4> + <name>HAProxy Backend Traffic</name> + <graph_template_id>hash_000013b6d238ff2532fcc19ab498043c7c65c2</graph_template_id> + <rrd> + <item_000> + <snmp_field_name>beBOut</snmp_field_name> + <data_template_id>hash_010013a63ddba34026d2c07d73c0ef2ae64b54</data_template_id> + <data_template_rrd_id>hash_0800136c0e4debeb9b084231d858faabd82f8f</data_template_rrd_id> + </item_000> + <item_001> + <snmp_field_name>beBIn</snmp_field_name> + <data_template_id>hash_010013a63ddba34026d2c07d73c0ef2ae64b54</data_template_id> + <data_template_rrd_id>hash_0800132f5283f17a7cde63137189d4d3ea7e4e</data_template_rrd_id> + </item_001> + </rrd> + <sv_graph> + <hash_1200133ba4a6c8aacf161f3e2411afd7053b8d> + <field_name>BytesIn</field_name> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_1200133ba4a6c8aacf161f3e2411afd7053b8d> + <hash_1200130f8f674b52f6ea2e09608b505abfb3a1> + <field_name>BytesOut</field_name> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_1200130f8f674b52f6ea2e09608b505abfb3a1> + </sv_graph> + <sv_data_source> + <hash_130013d9fb3064081d77e553c5ce732f15c909> + <field_name>BytesIn</field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_130013d9fb3064081d77e553c5ce732f15c909> + <hash_1300134fc96e4392a7a86d05fda31c2d5d334c> + <field_name>BytesOut</field_name> + <data_template_id>hash_010013fa4d4fff334b60e9064e89082173fe34</data_template_id> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_1300134fc96e4392a7a86d05fda31c2d5d334c> + <hash_130013a7aad3557880ac197539a1d658f5d5da> + <field_name>BytesIn</field_name> + <data_template_id>hash_010013a63ddba34026d2c07d73c0ef2ae64b54</data_template_id> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_130013a7aad3557880ac197539a1d658f5d5da> + <hash_130013acb469b673f6adbaa21ad5c634c3683f> + <field_name>BytesOut</field_name> + <data_template_id>hash_010013a63ddba34026d2c07d73c0ef2ae64b54</data_template_id> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_130013acb469b673f6adbaa21ad5c634c3683f> + </sv_data_source> + </hash_110013abc35ade0aae030d90f817dfd91486f4> + </graphs> + </hash_040013d1dd43e3e5cee941860ea277826c4fe2> + <hash_030013bf566c869ac6443b0c75d1c32b5a350e> + <name>Get SNMP Data (Indexed)</name> + <type_id>3</type_id> + <input_string></input_string> + <fields> + <hash_070013617cdc8a230615e59f06f361ef6e7728> + <name>SNMP IP Address</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>hostname</type_code> + <input_output>in</input_output> + <data_name>management_ip</data_name> + </hash_070013617cdc8a230615e59f06f361ef6e7728> + <hash_070013acb449d1451e8a2a655c2c99d31142c7> + <name>SNMP Community</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_community</type_code> + <input_output>in</input_output> + <data_name>snmp_community</data_name> + </hash_070013acb449d1451e8a2a655c2c99d31142c7> + <hash_070013f4facc5e2ca7ebee621f09bc6d9fc792> + <name>SNMP Username (v3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls>on</allow_nulls> + <type_code>snmp_username</type_code> + <input_output>in</input_output> + <data_name>snmp_username</data_name> + </hash_070013f4facc5e2ca7ebee621f09bc6d9fc792> + <hash_0700131cc1493a6781af2c478fa4de971531cf> + <name>SNMP Password (v3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls>on</allow_nulls> + <type_code>snmp_password</type_code> + <input_output>in</input_output> + <data_name>snmp_password</data_name> + </hash_0700131cc1493a6781af2c478fa4de971531cf> + <hash_070013b5c23f246559df38662c255f4aa21d6b> + <name>SNMP Version (1, 2, or 3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_version</type_code> + <input_output>in</input_output> + <data_name>snmp_version</data_name> + </hash_070013b5c23f246559df38662c255f4aa21d6b> + <hash_0700136027a919c7c7731fbe095b6f53ab127b> + <name>Index Type</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>index_type</type_code> + <input_output>in</input_output> + <data_name>index_type</data_name> + </hash_0700136027a919c7c7731fbe095b6f53ab127b> + <hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f> + <name>Index Value</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>index_value</type_code> + <input_output>in</input_output> + <data_name>index_value</data_name> + </hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f> + <hash_070013e6deda7be0f391399c5130e7c4a48b28> + <name>Output Type ID</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>output_type</type_code> + <input_output>in</input_output> + <data_name>output_type</data_name> + </hash_070013e6deda7be0f391399c5130e7c4a48b28> + <hash_070013c1f36ee60c3dc98945556d57f26e475b> + <name>SNMP Port</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_port</type_code> + <input_output>in</input_output> + <data_name>snmp_port</data_name> + </hash_070013c1f36ee60c3dc98945556d57f26e475b> + </fields> + </hash_030013bf566c869ac6443b0c75d1c32b5a350e> + <hash_000013cdbf9accfcd57d9e0a7c97896313ddee> + <name>HAProxy Backend Sessions</name> + <graph> + <t_title></t_title> + <title>|host_description| - HaProxy - |query_bePxName| Backend Sessions</title> + <t_image_format_id></t_image_format_id> + <image_format_id>1</image_format_id> + <t_height></t_height> + <height>120</height> + <t_width></t_width> + <width>500</width> + <t_auto_scale></t_auto_scale> + <auto_scale>on</auto_scale> + <t_auto_scale_opts></t_auto_scale_opts> + <auto_scale_opts>2</auto_scale_opts> + <t_auto_scale_log></t_auto_scale_log> + <auto_scale_log></auto_scale_log> + <t_auto_scale_rigid></t_auto_scale_rigid> + <auto_scale_rigid></auto_scale_rigid> + <t_auto_padding></t_auto_padding> + <auto_padding>on</auto_padding> + <t_export></t_export> + <export>on</export> + <t_upper_limit></t_upper_limit> + <upper_limit>10000</upper_limit> + <t_lower_limit></t_lower_limit> + <lower_limit>0</lower_limit> + <t_base_value></t_base_value> + <base_value>1000</base_value> + <t_unit_value></t_unit_value> + <unit_value></unit_value> + <t_unit_exponent_value></t_unit_exponent_value> + <unit_exponent_value></unit_exponent_value> + <t_vertical_label></t_vertical_label> + <vertical_label></vertical_label> + </graph> + <items> + <hash_1000131ecaf3728447913a30dfa80cdd9cdff4> + <task_item_id>hash_080013230e04055a4228154123e74c6586d435</task_item_id> + <color_id>0000FF</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Total Sessions:</text_format> + <hard_return></hard_return> + <sequence>5</sequence> + </hash_1000131ecaf3728447913a30dfa80cdd9cdff4> + <hash_1000132171a00b34d33f99ef24bcc235fbb6a3> + <task_item_id>hash_080013230e04055a4228154123e74c6586d435</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>6</sequence> + </hash_1000132171a00b34d33f99ef24bcc235fbb6a3> + <hash_1000132129590e72a46480422f85e063d8cf4d> + <task_item_id>hash_080013230e04055a4228154123e74c6586d435</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>7</sequence> + </hash_1000132129590e72a46480422f85e063d8cf4d> + <hash_1000138d11fec869f88ccf2fa3227bcffadfc3> + <task_item_id>hash_080013230e04055a4228154123e74c6586d435</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>8</sequence> + </hash_1000138d11fec869f88ccf2fa3227bcffadfc3> + <hash_100013783d295131617ad996e4699533a134ea> + <task_item_id>hash_080013088549c8d7e8cdc80f19bae4d78dc296</task_item_id> + <color_id>EA8F00</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Response Errors:</text_format> + <hard_return></hard_return> + <sequence>9</sequence> + </hash_100013783d295131617ad996e4699533a134ea> + <hash_1000139bc04e5072b25ca992ee0b0eec981b95> + <task_item_id>hash_080013088549c8d7e8cdc80f19bae4d78dc296</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>10</sequence> + </hash_1000139bc04e5072b25ca992ee0b0eec981b95> + <hash_1000136333a9334fa0dc0d2f75c031dee1dcc5> + <task_item_id>hash_080013088549c8d7e8cdc80f19bae4d78dc296</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>11</sequence> + </hash_1000136333a9334fa0dc0d2f75c031dee1dcc5> + <hash_10001386e0e18d79915cd21ff123fb830e150e> + <task_item_id>hash_080013088549c8d7e8cdc80f19bae4d78dc296</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>12</sequence> + </hash_10001386e0e18d79915cd21ff123fb830e150e> + <hash_100013206b0b016daf267ff0a1daa7733ecf25> + <task_item_id>0</task_item_id> + <color_id>0</color_id> + <graph_type_id>1</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Graph Last Updated: |date_time|</text_format> + <hard_return>on</hard_return> + <sequence>13</sequence> + </hash_100013206b0b016daf267ff0a1daa7733ecf25> + </items> + <inputs> + <hash_090013871102d568ae1a0d7d79aa4b0d3a6411> + <name>Data Source [TotalSessions]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_0000131ecaf3728447913a30dfa80cdd9cdff4|hash_0000132171a00b34d33f99ef24bcc235fbb6a3|hash_0000132129590e72a46480422f85e063d8cf4d|hash_0000138d11fec869f88ccf2fa3227bcffadfc3</items> + </hash_090013871102d568ae1a0d7d79aa4b0d3a6411> + <hash_090013320fd0edeb30465be51274fa3ecbe168> + <name>Data Source [ResponseErrors]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_000013783d295131617ad996e4699533a134ea|hash_0000139bc04e5072b25ca992ee0b0eec981b95|hash_0000136333a9334fa0dc0d2f75c031dee1dcc5|hash_00001386e0e18d79915cd21ff123fb830e150e</items> + </hash_090013320fd0edeb30465be51274fa3ecbe168> + </inputs> + </hash_000013cdbf9accfcd57d9e0a7c97896313ddee> + <hash_000013b6d238ff2532fcc19ab498043c7c65c2> + <name>HAProxy Backend Traffic</name> + <graph> + <t_title></t_title> + <title>|host_description| - HaProxy |query_bePxName| Backend Traffic</title> + <t_image_format_id></t_image_format_id> + <image_format_id>1</image_format_id> + <t_height></t_height> + <height>120</height> + <t_width></t_width> + <width>500</width> + <t_auto_scale></t_auto_scale> + <auto_scale>on</auto_scale> + <t_auto_scale_opts></t_auto_scale_opts> + <auto_scale_opts>2</auto_scale_opts> + <t_auto_scale_log></t_auto_scale_log> + <auto_scale_log></auto_scale_log> + <t_auto_scale_rigid></t_auto_scale_rigid> + <auto_scale_rigid></auto_scale_rigid> + <t_auto_padding></t_auto_padding> + <auto_padding>on</auto_padding> + <t_export></t_export> + <export>on</export> + <t_upper_limit></t_upper_limit> + <upper_limit>10000000000</upper_limit> + <t_lower_limit></t_lower_limit> + <lower_limit>0</lower_limit> + <t_base_value></t_base_value> + <base_value>1024</base_value> + <t_unit_value></t_unit_value> + <unit_value></unit_value> + <t_unit_exponent_value></t_unit_exponent_value> + <unit_exponent_value></unit_exponent_value> + <t_vertical_label></t_vertical_label> + <vertical_label>bytes</vertical_label> + </graph> + <items> + <hash_100013184e60d8dac2421c2787887fe07f6d25> + <task_item_id>hash_0800132f5283f17a7cde63137189d4d3ea7e4e</task_item_id> + <color_id>6EA100</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Ingress Traffic:</text_format> + <hard_return></hard_return> + <sequence>2</sequence> + </hash_100013184e60d8dac2421c2787887fe07f6d25> + <hash_100013f3889b4094b935798483e489b5f5e16e> + <task_item_id>hash_0800132f5283f17a7cde63137189d4d3ea7e4e</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>3</sequence> + </hash_100013f3889b4094b935798483e489b5f5e16e> + <hash_1000134bbdf263db6461f5d76717c12564c42c> + <task_item_id>hash_0800132f5283f17a7cde63137189d4d3ea7e4e</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>4</sequence> + </hash_1000134bbdf263db6461f5d76717c12564c42c> + <hash_1000131b708578244e36caba0f4dea67230c80> + <task_item_id>hash_0800132f5283f17a7cde63137189d4d3ea7e4e</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>5</sequence> + </hash_1000131b708578244e36caba0f4dea67230c80> + <hash_1000133e2f02edb1a55bcdd20e925a3849fd37> + <task_item_id>hash_0800136c0e4debeb9b084231d858faabd82f8f</task_item_id> + <color_id>FF0000</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Egress Traffic:</text_format> + <hard_return></hard_return> + <sequence>6</sequence> + </hash_1000133e2f02edb1a55bcdd20e925a3849fd37> + <hash_1000134517c9799c71e03dcd2278681858d70f> + <task_item_id>hash_0800136c0e4debeb9b084231d858faabd82f8f</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>7</sequence> + </hash_1000134517c9799c71e03dcd2278681858d70f> + <hash_1000132edf24a4592c9537d2341ec20c588fc2> + <task_item_id>hash_0800136c0e4debeb9b084231d858faabd82f8f</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>8</sequence> + </hash_1000132edf24a4592c9537d2341ec20c588fc2> + <hash_100013150e680935bfccc75f1f88c7c60030f7> + <task_item_id>hash_0800136c0e4debeb9b084231d858faabd82f8f</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>9</sequence> + </hash_100013150e680935bfccc75f1f88c7c60030f7> + <hash_1000135dcb7625a1a21d8d94fdf2f97d302a42> + <task_item_id>0</task_item_id> + <color_id>0</color_id> + <graph_type_id>1</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Graph Last Updated: |date_time|</text_format> + <hard_return>on</hard_return> + <sequence>10</sequence> + </hash_1000135dcb7625a1a21d8d94fdf2f97d302a42> + </items> + <inputs> + <hash_090013952f2971b58b10f88a55d63a0388a429> + <name>Data Source [BytesIn]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_000013184e60d8dac2421c2787887fe07f6d25|hash_000013f3889b4094b935798483e489b5f5e16e|hash_0000134bbdf263db6461f5d76717c12564c42c|hash_0000131b708578244e36caba0f4dea67230c80</items> + </hash_090013952f2971b58b10f88a55d63a0388a429> + <hash_09001393a65aa111654d6801846a6cb523580b> + <name>Data Source [BytesOut]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_0000133e2f02edb1a55bcdd20e925a3849fd37|hash_0000134517c9799c71e03dcd2278681858d70f|hash_0000132edf24a4592c9537d2341ec20c588fc2|hash_000013150e680935bfccc75f1f88c7c60030f7</items> + </hash_09001393a65aa111654d6801846a6cb523580b> + </inputs> + </hash_000013b6d238ff2532fcc19ab498043c7c65c2> + <hash_010013fa4d4fff334b60e9064e89082173fe34> + <name>HAProxy Backend Session Stats</name> + <ds> + <t_name></t_name> + <name>|host_description| - HAProxy - |query_bePxName| Backend Session Stats</name> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <t_rra_id></t_rra_id> + <t_rrd_step></t_rrd_step> + <rrd_step>300</rrd_step> + <t_active></t_active> + <active>on</active> + <rra_items>hash_150013c21df5178e5c955013591239eb0afd46|hash_1500130d9c0af8b8acdc7807943937b3208e29|hash_1500136fc2d038fb42950138b0ce3e9874cc60|hash_150013e36f3adb9f152adfa5dc50fd2b23337e|hash_15001352829408ab566127eede2c74d201c678|hash_150013e73fb797d3ab2a9b97c3ec29e9690910</rra_items> + </ds> + <items> + <hash_080013230e04055a4228154123e74c6586d435> + <t_data_source_name></t_data_source_name> + <data_source_name>TotalSessions</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_080013230e04055a4228154123e74c6586d435> + <hash_080013088549c8d7e8cdc80f19bae4d78dc296> + <t_data_source_name></t_data_source_name> + <data_source_name>ResponseErrors</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_080013088549c8d7e8cdc80f19bae4d78dc296> + </items> + <data> + <item_000> + <data_input_field_id>hash_070013c1f36ee60c3dc98945556d57f26e475b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_000> + <item_001> + <data_input_field_id>hash_070013e6deda7be0f391399c5130e7c4a48b28</data_input_field_id> + <t_value></t_value> + <value></value> + </item_001> + <item_002> + <data_input_field_id>hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f</data_input_field_id> + <t_value></t_value> + <value></value> + </item_002> + <item_003> + <data_input_field_id>hash_0700136027a919c7c7731fbe095b6f53ab127b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_003> + <item_004> + <data_input_field_id>hash_070013b5c23f246559df38662c255f4aa21d6b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_004> + <item_005> + <data_input_field_id>hash_0700131cc1493a6781af2c478fa4de971531cf</data_input_field_id> + <t_value></t_value> + <value></value> + </item_005> + <item_006> + <data_input_field_id>hash_070013f4facc5e2ca7ebee621f09bc6d9fc792</data_input_field_id> + <t_value></t_value> + <value></value> + </item_006> + <item_007> + <data_input_field_id>hash_070013acb449d1451e8a2a655c2c99d31142c7</data_input_field_id> + <t_value></t_value> + <value></value> + </item_007> + <item_008> + <data_input_field_id>hash_070013617cdc8a230615e59f06f361ef6e7728</data_input_field_id> + <t_value></t_value> + <value></value> + </item_008> + </data> + </hash_010013fa4d4fff334b60e9064e89082173fe34> + <hash_010013a63ddba34026d2c07d73c0ef2ae64b54> + <name>HAProxy Backend Traffic Stats</name> + <ds> + <t_name></t_name> + <name>|host_description| - HAProxy - |query_bePxName| Backend Traffic Stats</name> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <t_rra_id></t_rra_id> + <t_rrd_step></t_rrd_step> + <rrd_step>300</rrd_step> + <t_active></t_active> + <active>on</active> + <rra_items>hash_150013c21df5178e5c955013591239eb0afd46|hash_1500130d9c0af8b8acdc7807943937b3208e29|hash_1500136fc2d038fb42950138b0ce3e9874cc60|hash_150013e36f3adb9f152adfa5dc50fd2b23337e|hash_150013a4aa6f4de84eaa00008f88d3f5bd8520|hash_150013e73fb797d3ab2a9b97c3ec29e9690910</rra_items> + </ds> + <items> + <hash_0800136c0e4debeb9b084231d858faabd82f8f> + <t_data_source_name></t_data_source_name> + <data_source_name>BytesOut</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000000000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_0800136c0e4debeb9b084231d858faabd82f8f> + <hash_0800132f5283f17a7cde63137189d4d3ea7e4e> + <t_data_source_name></t_data_source_name> + <data_source_name>BytesIn</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000000000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_0800132f5283f17a7cde63137189d4d3ea7e4e> + </items> + <data> + <item_000> + <data_input_field_id>hash_070013c1f36ee60c3dc98945556d57f26e475b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_000> + <item_001> + <data_input_field_id>hash_070013e6deda7be0f391399c5130e7c4a48b28</data_input_field_id> + <t_value></t_value> + <value></value> + </item_001> + <item_002> + <data_input_field_id>hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f</data_input_field_id> + <t_value></t_value> + <value></value> + </item_002> + <item_003> + <data_input_field_id>hash_0700136027a919c7c7731fbe095b6f53ab127b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_003> + <item_004> + <data_input_field_id>hash_070013b5c23f246559df38662c255f4aa21d6b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_004> + <item_005> + <data_input_field_id>hash_0700131cc1493a6781af2c478fa4de971531cf</data_input_field_id> + <t_value></t_value> + <value></value> + </item_005> + <item_006> + <data_input_field_id>hash_070013f4facc5e2ca7ebee621f09bc6d9fc792</data_input_field_id> + <t_value></t_value> + <value></value> + </item_006> + <item_007> + <data_input_field_id>hash_070013acb449d1451e8a2a655c2c99d31142c7</data_input_field_id> + <t_value></t_value> + <value></value> + </item_007> + <item_008> + <data_input_field_id>hash_070013617cdc8a230615e59f06f361ef6e7728</data_input_field_id> + <t_value></t_value> + <value></value> + </item_008> + </data> + </hash_010013a63ddba34026d2c07d73c0ef2ae64b54> + <hash_150013c21df5178e5c955013591239eb0afd46> + <name>Daily (5 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>1</steps> + <rows>600</rows> + <timespan>86400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_150013c21df5178e5c955013591239eb0afd46> + <hash_1500130d9c0af8b8acdc7807943937b3208e29> + <name>Weekly (30 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>6</steps> + <rows>700</rows> + <timespan>604800</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500130d9c0af8b8acdc7807943937b3208e29> + <hash_1500136fc2d038fb42950138b0ce3e9874cc60> + <name>Monthly (2 Hour Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>24</steps> + <rows>775</rows> + <timespan>2678400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500136fc2d038fb42950138b0ce3e9874cc60> + <hash_150013e36f3adb9f152adfa5dc50fd2b23337e> + <name>Yearly (1 Day Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>288</steps> + <rows>797</rows> + <timespan>33053184</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_150013e36f3adb9f152adfa5dc50fd2b23337e> + <hash_1500130028a19ed71b758898eaa55ab1c59694> + <name>Three days (5 minutes average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>6</steps> + <rows>700</rows> + <timespan>302400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500130028a19ed71b758898eaa55ab1c59694> + <hash_150013e73fb797d3ab2a9b97c3ec29e9690910> + <name>Hourly (1 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>1</steps> + <rows>500</rows> + <timespan>14400</timespan> + <cf_items>1|3</cf_items> + </hash_150013e73fb797d3ab2a9b97c3ec29e9690910> + <hash_060013e9c43831e54eca8069317a2ce8c6f751> + <name>Normal</name> + <gprint_text>%8.2lf %s</gprint_text> + </hash_060013e9c43831e54eca8069317a2ce8c6f751> +</cacti> diff --git a/admin/netsnmp-perl/cacti_data_query_haproxy_frontends.xml b/admin/netsnmp-perl/cacti_data_query_haproxy_frontends.xml new file mode 100644 index 0000000..1429b07 --- /dev/null +++ b/admin/netsnmp-perl/cacti_data_query_haproxy_frontends.xml @@ -0,0 +1,750 @@ +<cacti> + <hash_0400138cb70c1064bd60742726af23828c4b05> + <name>HAProxy Frontends</name> + <description></description> + <xml_path><path_cacti>/resource/snmp_queries/haproxy_frontend.xml</xml_path> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <graphs> + <hash_110013c1c2bca3af0ae4e2ce0de096aa79dba5> + <name>HAProxy Frontend Sessions</name> + <graph_template_id>hash_00001328b6727aa54dde6bb3f5dde939ae03aa</graph_template_id> + <rrd> + <item_000> + <snmp_field_name>feSTot</snmp_field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <data_template_rrd_id>hash_080013f9c76e05d0a87b2d32f9a5b014e17aab</data_template_rrd_id> + </item_000> + <item_001> + <snmp_field_name>feEReq</snmp_field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <data_template_rrd_id>hash_080013c137bec94d7220e65a5b3dfa4049c242</data_template_rrd_id> + </item_001> + </rrd> + <sv_graph> + <hash_1200130f0e4ffcd11f807d23794ab805d7901a> + <field_name>TotalSessions</field_name> + <sequence>1</sequence> + <text>TotalSessions</text> + </hash_1200130f0e4ffcd11f807d23794ab805d7901a> + <hash_1200134fc506db9ce45c0e5cb38a429ad8e077> + <field_name>RequestErrors</field_name> + <sequence>1</sequence> + <text>RequestErrors</text> + </hash_1200134fc506db9ce45c0e5cb38a429ad8e077> + </sv_graph> + <sv_data_source> + <hash_1300138a5efc51c95b400c3139b352ce110969> + <field_name>RequestErrors</field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <sequence>1</sequence> + <text>RequestErrors</text> + </hash_1300138a5efc51c95b400c3139b352ce110969> + <hash_130013e374903ab025bc2728f2f9abeb412ac3> + <field_name>TotalSessions</field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <sequence>1</sequence> + <text>TotalSessions</text> + </hash_130013e374903ab025bc2728f2f9abeb412ac3> + </sv_data_source> + </hash_110013c1c2bca3af0ae4e2ce0de096aa79dba5> + <hash_1100130838495d5d82f25f4a675ee7c56543a5> + <name>HAProxy Frontend Traffic</name> + <graph_template_id>hash_000013d0fe9e9efc2746de488fdede0419b051</graph_template_id> + <rrd> + <item_000> + <snmp_field_name>feBOut</snmp_field_name> + <data_template_id>hash_010013a88327df77ea19e333ddd96096c34751</data_template_id> + <data_template_rrd_id>hash_0800137db81cd58fbbbd203af0f55c15c2081a</data_template_rrd_id> + </item_000> + <item_001> + <snmp_field_name>feBIn</snmp_field_name> + <data_template_id>hash_010013a88327df77ea19e333ddd96096c34751</data_template_id> + <data_template_rrd_id>hash_08001305772980bb6de1f12223d7ec53e323c4</data_template_rrd_id> + </item_001> + </rrd> + <sv_graph> + <hash_120013934d1311136bccb4d9ca5a67e240afeb> + <field_name>BytesIn</field_name> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_120013934d1311136bccb4d9ca5a67e240afeb> + <hash_12001399a6e6fb09b025bc60a214cb00e6d1f0> + <field_name>BytesOut</field_name> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_12001399a6e6fb09b025bc60a214cb00e6d1f0> + </sv_graph> + <sv_data_source> + <hash_1300135f35cdaeda1a1169be21e52a85af339e> + <field_name>BytesOut</field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_1300135f35cdaeda1a1169be21e52a85af339e> + <hash_1300136ee916a0c0ce8dad133b9dfcf32e2581> + <field_name>BytesIn</field_name> + <data_template_id>hash_0100139f985697a7530256b4e35c95ef03db20</data_template_id> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_1300136ee916a0c0ce8dad133b9dfcf32e2581> + <hash_13001382c5a3b953f8d1583b168d15beed6e9c> + <field_name>BytesOut</field_name> + <data_template_id>hash_010013a88327df77ea19e333ddd96096c34751</data_template_id> + <sequence>1</sequence> + <text>BytesOut</text> + </hash_13001382c5a3b953f8d1583b168d15beed6e9c> + <hash_1300132c486fa1a5e875179031ea9f5328614b> + <field_name>BytesIn</field_name> + <data_template_id>hash_010013a88327df77ea19e333ddd96096c34751</data_template_id> + <sequence>1</sequence> + <text>BytesIn</text> + </hash_1300132c486fa1a5e875179031ea9f5328614b> + </sv_data_source> + </hash_1100130838495d5d82f25f4a675ee7c56543a5> + </graphs> + </hash_0400138cb70c1064bd60742726af23828c4b05> + <hash_030013bf566c869ac6443b0c75d1c32b5a350e> + <name>Get SNMP Data (Indexed)</name> + <type_id>3</type_id> + <input_string></input_string> + <fields> + <hash_070013617cdc8a230615e59f06f361ef6e7728> + <name>SNMP IP Address</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>hostname</type_code> + <input_output>in</input_output> + <data_name>management_ip</data_name> + </hash_070013617cdc8a230615e59f06f361ef6e7728> + <hash_070013acb449d1451e8a2a655c2c99d31142c7> + <name>SNMP Community</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_community</type_code> + <input_output>in</input_output> + <data_name>snmp_community</data_name> + </hash_070013acb449d1451e8a2a655c2c99d31142c7> + <hash_070013f4facc5e2ca7ebee621f09bc6d9fc792> + <name>SNMP Username (v3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls>on</allow_nulls> + <type_code>snmp_username</type_code> + <input_output>in</input_output> + <data_name>snmp_username</data_name> + </hash_070013f4facc5e2ca7ebee621f09bc6d9fc792> + <hash_0700131cc1493a6781af2c478fa4de971531cf> + <name>SNMP Password (v3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls>on</allow_nulls> + <type_code>snmp_password</type_code> + <input_output>in</input_output> + <data_name>snmp_password</data_name> + </hash_0700131cc1493a6781af2c478fa4de971531cf> + <hash_070013b5c23f246559df38662c255f4aa21d6b> + <name>SNMP Version (1, 2, or 3)</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_version</type_code> + <input_output>in</input_output> + <data_name>snmp_version</data_name> + </hash_070013b5c23f246559df38662c255f4aa21d6b> + <hash_0700136027a919c7c7731fbe095b6f53ab127b> + <name>Index Type</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>index_type</type_code> + <input_output>in</input_output> + <data_name>index_type</data_name> + </hash_0700136027a919c7c7731fbe095b6f53ab127b> + <hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f> + <name>Index Value</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>index_value</type_code> + <input_output>in</input_output> + <data_name>index_value</data_name> + </hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f> + <hash_070013e6deda7be0f391399c5130e7c4a48b28> + <name>Output Type ID</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>output_type</type_code> + <input_output>in</input_output> + <data_name>output_type</data_name> + </hash_070013e6deda7be0f391399c5130e7c4a48b28> + <hash_070013c1f36ee60c3dc98945556d57f26e475b> + <name>SNMP Port</name> + <update_rra></update_rra> + <regexp_match></regexp_match> + <allow_nulls></allow_nulls> + <type_code>snmp_port</type_code> + <input_output>in</input_output> + <data_name>snmp_port</data_name> + </hash_070013c1f36ee60c3dc98945556d57f26e475b> + </fields> + </hash_030013bf566c869ac6443b0c75d1c32b5a350e> + <hash_00001328b6727aa54dde6bb3f5dde939ae03aa> + <name>HAProxy Frontend Sessions</name> + <graph> + <t_title></t_title> + <title>|host_description| - HaProxy - |query_fePxName| Frontend Sessions</title> + <t_image_format_id></t_image_format_id> + <image_format_id>1</image_format_id> + <t_height></t_height> + <height>120</height> + <t_width></t_width> + <width>500</width> + <t_auto_scale></t_auto_scale> + <auto_scale>on</auto_scale> + <t_auto_scale_opts></t_auto_scale_opts> + <auto_scale_opts>2</auto_scale_opts> + <t_auto_scale_log></t_auto_scale_log> + <auto_scale_log></auto_scale_log> + <t_auto_scale_rigid></t_auto_scale_rigid> + <auto_scale_rigid></auto_scale_rigid> + <t_auto_padding></t_auto_padding> + <auto_padding>on</auto_padding> + <t_export></t_export> + <export>on</export> + <t_upper_limit></t_upper_limit> + <upper_limit>10000</upper_limit> + <t_lower_limit></t_lower_limit> + <lower_limit>0</lower_limit> + <t_base_value></t_base_value> + <base_value>1000</base_value> + <t_unit_value></t_unit_value> + <unit_value></unit_value> + <t_unit_exponent_value></t_unit_exponent_value> + <unit_exponent_value></unit_exponent_value> + <t_vertical_label></t_vertical_label> + <vertical_label></vertical_label> + </graph> + <items> + <hash_100013b1ecfd75df9c17c0ba11acc5e9b7d8f8> + <task_item_id>hash_080013f9c76e05d0a87b2d32f9a5b014e17aab</task_item_id> + <color_id>0000FF</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Total Sessions:</text_format> + <hard_return></hard_return> + <sequence>5</sequence> + </hash_100013b1ecfd75df9c17c0ba11acc5e9b7d8f8> + <hash_100013fa878148199aee5bb2a10b7693318347> + <task_item_id>hash_080013f9c76e05d0a87b2d32f9a5b014e17aab</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>6</sequence> + </hash_100013fa878148199aee5bb2a10b7693318347> + <hash_1000137d834c383afa4863974edc19a337e260> + <task_item_id>hash_080013f9c76e05d0a87b2d32f9a5b014e17aab</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>7</sequence> + </hash_1000137d834c383afa4863974edc19a337e260> + <hash_1000138b0422b293230883462cfbfe32144d47> + <task_item_id>hash_080013f9c76e05d0a87b2d32f9a5b014e17aab</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>8</sequence> + </hash_1000138b0422b293230883462cfbfe32144d47> + <hash_1000131c87ed4e76c026cd131418d792822944> + <task_item_id>hash_080013c137bec94d7220e65a5b3dfa4049c242</task_item_id> + <color_id>EA8F00</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Request Errors:</text_format> + <hard_return></hard_return> + <sequence>9</sequence> + </hash_1000131c87ed4e76c026cd131418d792822944> + <hash_100013a9993114514cb1abea4b929f984222ea> + <task_item_id>hash_080013c137bec94d7220e65a5b3dfa4049c242</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>10</sequence> + </hash_100013a9993114514cb1abea4b929f984222ea> + <hash_1000131bc67adbaa8b77cd6c73d9622c7eebc1> + <task_item_id>hash_080013c137bec94d7220e65a5b3dfa4049c242</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>12</sequence> + </hash_1000131bc67adbaa8b77cd6c73d9622c7eebc1> + <hash_1000138840d17711368b90a61132ba83e9edb8> + <task_item_id>hash_080013c137bec94d7220e65a5b3dfa4049c242</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>13</sequence> + </hash_1000138840d17711368b90a61132ba83e9edb8> + <hash_100013e8ddbe92933ba99b2d2ebc8f76a06e2e> + <task_item_id>0</task_item_id> + <color_id>0</color_id> + <graph_type_id>1</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Graph Last Updated: |date_time|</text_format> + <hard_return>on</hard_return> + <sequence>14</sequence> + </hash_100013e8ddbe92933ba99b2d2ebc8f76a06e2e> + </items> + <inputs> + <hash_0900134bedc49c15c9557fc95cdbc8850a5cb1> + <name>Data Source [TotalSessions]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_000013b1ecfd75df9c17c0ba11acc5e9b7d8f8|hash_000013fa878148199aee5bb2a10b7693318347|hash_0000138b0422b293230883462cfbfe32144d47|hash_0000137d834c383afa4863974edc19a337e260</items> + </hash_0900134bedc49c15c9557fc95cdbc8850a5cb1> + <hash_090013f3f3dfd39bb035006de08df94415e828> + <name>Data Source [RequestErrors]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_0000131c87ed4e76c026cd131418d792822944|hash_000013a9993114514cb1abea4b929f984222ea|hash_0000131bc67adbaa8b77cd6c73d9622c7eebc1|hash_0000138840d17711368b90a61132ba83e9edb8</items> + </hash_090013f3f3dfd39bb035006de08df94415e828> + </inputs> + </hash_00001328b6727aa54dde6bb3f5dde939ae03aa> + <hash_000013d0fe9e9efc2746de488fdede0419b051> + <name>HAProxy Frontend Traffic</name> + <graph> + <t_title></t_title> + <title>|host_description| - HaProxy |query_fePxName| Frontend Traffic</title> + <t_image_format_id></t_image_format_id> + <image_format_id>1</image_format_id> + <t_height></t_height> + <height>120</height> + <t_width></t_width> + <width>500</width> + <t_auto_scale></t_auto_scale> + <auto_scale>on</auto_scale> + <t_auto_scale_opts></t_auto_scale_opts> + <auto_scale_opts>2</auto_scale_opts> + <t_auto_scale_log></t_auto_scale_log> + <auto_scale_log></auto_scale_log> + <t_auto_scale_rigid></t_auto_scale_rigid> + <auto_scale_rigid></auto_scale_rigid> + <t_auto_padding></t_auto_padding> + <auto_padding>on</auto_padding> + <t_export></t_export> + <export>on</export> + <t_upper_limit></t_upper_limit> + <upper_limit>10000000000</upper_limit> + <t_lower_limit></t_lower_limit> + <lower_limit>0</lower_limit> + <t_base_value></t_base_value> + <base_value>1024</base_value> + <t_unit_value></t_unit_value> + <unit_value></unit_value> + <t_unit_exponent_value></t_unit_exponent_value> + <unit_exponent_value></unit_exponent_value> + <t_vertical_label></t_vertical_label> + <vertical_label>bytes</vertical_label> + </graph> + <items> + <hash_100013d5c13ff711cbd645e9f88697b2c5e61b> + <task_item_id>hash_08001305772980bb6de1f12223d7ec53e323c4</task_item_id> + <color_id>6EA100</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Ingress Traffic:</text_format> + <hard_return></hard_return> + <sequence>2</sequence> + </hash_100013d5c13ff711cbd645e9f88697b2c5e61b> + <hash_10001353cff0cd64c4d70574ef9da42f62c86a> + <task_item_id>hash_08001305772980bb6de1f12223d7ec53e323c4</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>3</sequence> + </hash_10001353cff0cd64c4d70574ef9da42f62c86a> + <hash_1000136788d44f6207ce323ad40ccc8f15d462> + <task_item_id>hash_08001305772980bb6de1f12223d7ec53e323c4</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>4</sequence> + </hash_1000136788d44f6207ce323ad40ccc8f15d462> + <hash_100013d4cb02a8fb7fa37ef1e37d8b78333ea3> + <task_item_id>hash_08001305772980bb6de1f12223d7ec53e323c4</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>5</sequence> + </hash_100013d4cb02a8fb7fa37ef1e37d8b78333ea3> + <hash_1000137d82a7f3c82c698fe4e9cecc03d680b1> + <task_item_id>hash_0800137db81cd58fbbbd203af0f55c15c2081a</task_item_id> + <color_id>FF0000</color_id> + <graph_type_id>5</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Egress Traffic:</text_format> + <hard_return></hard_return> + <sequence>6</sequence> + </hash_1000137d82a7f3c82c698fe4e9cecc03d680b1> + <hash_100013d2d059378b521327426b451324bbb608> + <task_item_id>hash_0800137db81cd58fbbbd203af0f55c15c2081a</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>4</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Current:</text_format> + <hard_return></hard_return> + <sequence>7</sequence> + </hash_100013d2d059378b521327426b451324bbb608> + <hash_1000132eef0fae129ef21ad2d73e5e80814a23> + <task_item_id>hash_0800137db81cd58fbbbd203af0f55c15c2081a</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Average:</text_format> + <hard_return></hard_return> + <sequence>8</sequence> + </hash_1000132eef0fae129ef21ad2d73e5e80814a23> + <hash_1000138365462951b1f4e6b1a76f20b91be65d> + <task_item_id>hash_0800137db81cd58fbbbd203af0f55c15c2081a</task_item_id> + <color_id>0</color_id> + <graph_type_id>9</graph_type_id> + <consolidation_function_id>3</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Maximum:</text_format> + <hard_return>on</hard_return> + <sequence>9</sequence> + </hash_1000138365462951b1f4e6b1a76f20b91be65d> + <hash_100013eefc9c0f83c57d6d6f8d75fbd45965a3> + <task_item_id>0</task_item_id> + <color_id>0</color_id> + <graph_type_id>1</graph_type_id> + <consolidation_function_id>1</consolidation_function_id> + <cdef_id>0</cdef_id> + <value></value> + <gprint_id>hash_060013e9c43831e54eca8069317a2ce8c6f751</gprint_id> + <text_format>Graph Last Updated: |date_time|</text_format> + <hard_return>on</hard_return> + <sequence>10</sequence> + </hash_100013eefc9c0f83c57d6d6f8d75fbd45965a3> + </items> + <inputs> + <hash_090013384e7b730bb32653e3fbce5ce509977d> + <name>Data Source [BytesOut]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_000013d2d059378b521327426b451324bbb608|hash_0000137d82a7f3c82c698fe4e9cecc03d680b1|hash_0000132eef0fae129ef21ad2d73e5e80814a23|hash_0000138365462951b1f4e6b1a76f20b91be65d</items> + </hash_090013384e7b730bb32653e3fbce5ce509977d> + <hash_090013e5ff60e3069b2d28d905f6affa63250e> + <name>Data Source [BytesIn]</name> + <description></description> + <column_name>task_item_id</column_name> + <items>hash_00001353cff0cd64c4d70574ef9da42f62c86a|hash_000013d5c13ff711cbd645e9f88697b2c5e61b|hash_0000136788d44f6207ce323ad40ccc8f15d462|hash_000013d4cb02a8fb7fa37ef1e37d8b78333ea3</items> + </hash_090013e5ff60e3069b2d28d905f6affa63250e> + </inputs> + </hash_000013d0fe9e9efc2746de488fdede0419b051> + <hash_0100139f985697a7530256b4e35c95ef03db20> + <name>HAProxy Frontend Session Stats</name> + <ds> + <t_name></t_name> + <name>|host_description| - HAProxy - |query_fePxName| Frontend Session Stats</name> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <t_rra_id></t_rra_id> + <t_rrd_step></t_rrd_step> + <rrd_step>300</rrd_step> + <t_active></t_active> + <active>on</active> + <rra_items>hash_150013c21df5178e5c955013591239eb0afd46|hash_1500130d9c0af8b8acdc7807943937b3208e29|hash_1500136fc2d038fb42950138b0ce3e9874cc60|hash_150013e36f3adb9f152adfa5dc50fd2b23337e|hash_1500139b529013942d5a6891d05a84d17175e0|hash_150013e73fb797d3ab2a9b97c3ec29e9690910</rra_items> + </ds> + <items> + <hash_080013c137bec94d7220e65a5b3dfa4049c242> + <t_data_source_name></t_data_source_name> + <data_source_name>RequestErrors</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_080013c137bec94d7220e65a5b3dfa4049c242> + <hash_080013f9c76e05d0a87b2d32f9a5b014e17aab> + <t_data_source_name></t_data_source_name> + <data_source_name>TotalSessions</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_080013f9c76e05d0a87b2d32f9a5b014e17aab> + </items> + <data> + <item_000> + <data_input_field_id>hash_070013c1f36ee60c3dc98945556d57f26e475b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_000> + <item_001> + <data_input_field_id>hash_070013e6deda7be0f391399c5130e7c4a48b28</data_input_field_id> + <t_value></t_value> + <value></value> + </item_001> + <item_002> + <data_input_field_id>hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f</data_input_field_id> + <t_value></t_value> + <value></value> + </item_002> + <item_003> + <data_input_field_id>hash_0700136027a919c7c7731fbe095b6f53ab127b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_003> + <item_004> + <data_input_field_id>hash_070013b5c23f246559df38662c255f4aa21d6b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_004> + <item_005> + <data_input_field_id>hash_0700131cc1493a6781af2c478fa4de971531cf</data_input_field_id> + <t_value></t_value> + <value></value> + </item_005> + <item_006> + <data_input_field_id>hash_070013f4facc5e2ca7ebee621f09bc6d9fc792</data_input_field_id> + <t_value></t_value> + <value></value> + </item_006> + <item_007> + <data_input_field_id>hash_070013acb449d1451e8a2a655c2c99d31142c7</data_input_field_id> + <t_value></t_value> + <value></value> + </item_007> + <item_008> + <data_input_field_id>hash_070013617cdc8a230615e59f06f361ef6e7728</data_input_field_id> + <t_value></t_value> + <value></value> + </item_008> + </data> + </hash_0100139f985697a7530256b4e35c95ef03db20> + <hash_010013a88327df77ea19e333ddd96096c34751> + <name>HAProxy Frontend Traffic Stats</name> + <ds> + <t_name></t_name> + <name>|host_description| - HAProxy - |query_fePxName| Frontend Traffic Stats</name> + <data_input_id>hash_030013bf566c869ac6443b0c75d1c32b5a350e</data_input_id> + <t_rra_id></t_rra_id> + <t_rrd_step></t_rrd_step> + <rrd_step>300</rrd_step> + <t_active></t_active> + <active>on</active> + <rra_items>hash_150013c21df5178e5c955013591239eb0afd46|hash_1500130d9c0af8b8acdc7807943937b3208e29|hash_1500136fc2d038fb42950138b0ce3e9874cc60|hash_150013e36f3adb9f152adfa5dc50fd2b23337e|hash_15001369b0abdb84cea4d93762fd5a5d0c2777|hash_150013e73fb797d3ab2a9b97c3ec29e9690910</rra_items> + </ds> + <items> + <hash_0800137db81cd58fbbbd203af0f55c15c2081a> + <t_data_source_name></t_data_source_name> + <data_source_name>BytesOut</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000000000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_0800137db81cd58fbbbd203af0f55c15c2081a> + <hash_08001305772980bb6de1f12223d7ec53e323c4> + <t_data_source_name></t_data_source_name> + <data_source_name>BytesIn</data_source_name> + <t_rrd_minimum></t_rrd_minimum> + <rrd_minimum>0</rrd_minimum> + <t_rrd_maximum></t_rrd_maximum> + <rrd_maximum>10000000000</rrd_maximum> + <t_data_source_type_id></t_data_source_type_id> + <data_source_type_id>2</data_source_type_id> + <t_rrd_heartbeat></t_rrd_heartbeat> + <rrd_heartbeat>600</rrd_heartbeat> + <t_data_input_field_id></t_data_input_field_id> + <data_input_field_id>0</data_input_field_id> + </hash_08001305772980bb6de1f12223d7ec53e323c4> + </items> + <data> + <item_000> + <data_input_field_id>hash_070013c1f36ee60c3dc98945556d57f26e475b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_000> + <item_001> + <data_input_field_id>hash_070013e6deda7be0f391399c5130e7c4a48b28</data_input_field_id> + <t_value></t_value> + <value></value> + </item_001> + <item_002> + <data_input_field_id>hash_070013cbbe5c1ddfb264a6e5d509ce1c78c95f</data_input_field_id> + <t_value></t_value> + <value></value> + </item_002> + <item_003> + <data_input_field_id>hash_0700136027a919c7c7731fbe095b6f53ab127b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_003> + <item_004> + <data_input_field_id>hash_070013b5c23f246559df38662c255f4aa21d6b</data_input_field_id> + <t_value></t_value> + <value></value> + </item_004> + <item_005> + <data_input_field_id>hash_0700131cc1493a6781af2c478fa4de971531cf</data_input_field_id> + <t_value></t_value> + <value></value> + </item_005> + <item_006> + <data_input_field_id>hash_070013f4facc5e2ca7ebee621f09bc6d9fc792</data_input_field_id> + <t_value></t_value> + <value></value> + </item_006> + <item_007> + <data_input_field_id>hash_070013acb449d1451e8a2a655c2c99d31142c7</data_input_field_id> + <t_value></t_value> + <value></value> + </item_007> + <item_008> + <data_input_field_id>hash_070013617cdc8a230615e59f06f361ef6e7728</data_input_field_id> + <t_value></t_value> + <value></value> + </item_008> + </data> + </hash_010013a88327df77ea19e333ddd96096c34751> + <hash_150013c21df5178e5c955013591239eb0afd46> + <name>Daily (5 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>1</steps> + <rows>600</rows> + <timespan>86400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_150013c21df5178e5c955013591239eb0afd46> + <hash_1500130d9c0af8b8acdc7807943937b3208e29> + <name>Weekly (30 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>6</steps> + <rows>700</rows> + <timespan>604800</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500130d9c0af8b8acdc7807943937b3208e29> + <hash_1500136fc2d038fb42950138b0ce3e9874cc60> + <name>Monthly (2 Hour Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>24</steps> + <rows>775</rows> + <timespan>2678400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500136fc2d038fb42950138b0ce3e9874cc60> + <hash_150013e36f3adb9f152adfa5dc50fd2b23337e> + <name>Yearly (1 Day Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>288</steps> + <rows>797</rows> + <timespan>33053184</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_150013e36f3adb9f152adfa5dc50fd2b23337e> + <hash_1500136399acb234c65ef56054d5a82b23bc20> + <name>Three days (5 minutes average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>6</steps> + <rows>700</rows> + <timespan>302400</timespan> + <cf_items>1|2|3|4</cf_items> + </hash_1500136399acb234c65ef56054d5a82b23bc20> + <hash_150013e73fb797d3ab2a9b97c3ec29e9690910> + <name>Hourly (1 Minute Average)</name> + <x_files_factor>0.5</x_files_factor> + <steps>1</steps> + <rows>500</rows> + <timespan>14400</timespan> + <cf_items>1|3</cf_items> + </hash_150013e73fb797d3ab2a9b97c3ec29e9690910> + <hash_060013e9c43831e54eca8069317a2ce8c6f751> + <name>Normal</name> + <gprint_text>%8.2lf %s</gprint_text> + </hash_060013e9c43831e54eca8069317a2ce8c6f751> +</cacti> diff --git a/admin/netsnmp-perl/haproxy.pl b/admin/netsnmp-perl/haproxy.pl new file mode 100644 index 0000000..64684ad --- /dev/null +++ b/admin/netsnmp-perl/haproxy.pl @@ -0,0 +1,249 @@ +# +# Net-SNMP perl plugin for HAProxy +# Version 0.30 +# +# Copyright 2007-2010 Krzysztof Piotr Oledzki <ole@ans.pl> +# +# 1. get a variable from "show stat": +# 1.3.6.1.4.1.29385.106.1.$type.$field.$iid.$sid +# type: 0->frontend, 1->backend, 2->server, 3->socket +# +# 2. get a variable from "show info": +# 1.3.6.1.4.1.29385.106.2.$req.$varnr +# +# TODO: +# - implement read timeout +# + +use NetSNMP::agent (':all'); +use NetSNMP::ASN qw(:all); +use IO::Socket::UNIX; + +use strict; + +my $agent = new NetSNMP::agent('Name' => 'HAProxy'); +my $sa = "/var/run/haproxy.stat"; + +use constant OID_HAPROXY => '1.3.6.1.4.1.29385.106'; +use constant OID_HAPROXY_STATS => OID_HAPROXY . '.1'; +use constant OID_HAPROXY_INFO => OID_HAPROXY . '.2'; + +my $oid_stat = new NetSNMP::OID(OID_HAPROXY_STATS); +my $oid_info = new NetSNMP::OID(OID_HAPROXY_INFO); + +use constant STATS_PXNAME => 0; +use constant STATS_SVNAME => 1; +use constant STATS_IID => 27; +use constant STATS_SID => 28; +use constant STATS_TYPE => 32; + +use constant FIELD_INDEX => 10001; +use constant FIELD_NAME => 10002; + +my %info_vars = ( + 0 => 'Name', + 1 => 'Version', + 2 => 'Release_date', + 3 => 'Nbproc', + 4 => 'Process_num', + 5 => 'Pid', + 6 => 'Uptime', + 7 => 'Uptime_sec', + 8 => 'Memmax_MB', + 9 => 'Ulimit-n', + 10 => 'Maxsock', + 11 => 'Maxconn', + 12 => 'Maxpipes', + 13 => 'CurrConns', + 14 => 'PipesUsed', + 15 => 'PipesFree', + 16 => 'Tasks', + 17 => 'Run_queue', + 18 => 'node', + 19 => 'description', +); + +sub find_next_stat_id { + my($type, $field, $proxyid, $sid) = @_; + + my $obj = 1 << $type; + + my $np = -1; + my $nl = -1; + + my $sock = new IO::Socket::UNIX (Peer => $sa, Type => SOCK_STREAM, Timeout => 1); + next if !$sock; + + print $sock "show stat -1 $obj -1\n"; + + while(<$sock>) { + chomp; + my @d = split(','); + + last if !$d[$field] && $field != FIELD_INDEX && $field != FIELD_NAME && /^#/; + next if /^#/; + + next if $d[STATS_TYPE] != $type; + + next if ($d[STATS_IID] < $proxyid) || ($d[STATS_IID] == $proxyid && $d[STATS_SID] <= $sid); + + if ($np == -1 || $d[STATS_IID] < $np || ($d[STATS_IID] == $np && $d[STATS_SID] < $nl)) { + $np = $d[STATS_IID]; + $nl = $d[STATS_SID]; + next; + } + } + + close($sock); + + return 0 if ($np == -1); + + return "$type.$field.$np.$nl" +} + +sub haproxy_stat { + my($handler, $registration_info, $request_info, $requests) = @_; + + for(my $request = $requests; $request; $request = $request->next()) { + my $oid = $request->getOID(); + + $oid =~ s/$oid_stat//; + $oid =~ s/^\.//; + + my $mode = $request_info->getMode(); + + my($type, $field, $proxyid, $sid, $or) = split('\.', $oid, 5); + + next if $type > 3 || defined($or); + + if ($mode == MODE_GETNEXT) { + + $type = 0 if !$type; + $field = 0 if !$field; + $proxyid = 0 if !$proxyid; + $sid = 0 if !$sid; + + my $nextid = find_next_stat_id($type, $field, $proxyid, $sid); + $nextid = find_next_stat_id($type, $field+1, 0, 0) if !$nextid; + $nextid = find_next_stat_id($type+1, 0, 0, 0) if !$nextid; + + if ($nextid) { + ($type, $field, $proxyid, $sid) = split('\.', $nextid); + $request->setOID(sprintf("%s.%s", OID_HAPROXY_STATS, $nextid)); + $mode = MODE_GET; + } + } + + if ($mode == MODE_GET) { + next if !defined($proxyid) || !defined($type) || !defined($sid) || !defined($field); + + my $obj = 1 << $type; + + my $sock = new IO::Socket::UNIX (Peer => $sa, Type => SOCK_STREAM, Timeout => 1); + next if !$sock; + + print $sock "show stat $proxyid $obj $sid\n"; + + while(<$sock>) { + chomp; + my @data = split(','); + + last if !defined($data[$field]) && $field != FIELD_INDEX && $field != FIELD_NAME; + + if ($proxyid) { + next if $data[STATS_IID] ne $proxyid; + next if $data[STATS_SID] ne $sid; + next if $data[STATS_TYPE] ne $type; + } + + if ($field == FIELD_INDEX) { + $request->setValue(ASN_OCTET_STR, + sprintf("%s.%s", $data[STATS_IID], + $data[STATS_SID])); + } elsif ($field == FIELD_NAME) { + $request->setValue(ASN_OCTET_STR, + sprintf("%s/%s", $data[STATS_PXNAME], + $data[STATS_SVNAME])); + } else { + $request->setValue(ASN_OCTET_STR, $data[$field]); + } + + close($sock); + last; + } + + close($sock); + next; + } + + } +} + +sub haproxy_info { + my($handler, $registration_info, $request_info, $requests) = @_; + + for(my $request = $requests; $request; $request = $request->next()) { + my $oid = $request->getOID(); + + $oid =~ s/$oid_info//; + $oid =~ s/^\.//; + + my $mode = $request_info->getMode(); + + my($req, $nr, $or) = split('\.', $oid, 3); + + next if $req >= 2 || defined($or); + + if ($mode == MODE_GETNEXT) { + $req = 0 if !defined($req); + $nr = -1 if !defined($nr); + + if (!defined($info_vars{$nr+1})) { + $req++; + $nr = -1; + } + + next if $req >= 2; + + $request->setOID(sprintf("%s.%s.%s", OID_HAPROXY_INFO, $req, ++$nr)); + $mode = MODE_GET; + + } + + if ($mode == MODE_GET) { + + next if !defined($req) || !defined($nr); + + if ($req == 0) { + next if !defined($info_vars{$nr}); + $request->setValue(ASN_OCTET_STR, $info_vars{$nr}); + next; + } + + if ($req == 1) { + next if !defined($info_vars{$nr}); + + my $sock = new IO::Socket::UNIX (Peer => $sa, Type => SOCK_STREAM, Timeout => 1); + next if !$sock; + + print $sock "show info\n"; + + while(<$sock>) { + chomp; + my ($key, $val) = /(.*):\s*(.*)/; + + next if $info_vars{$nr} ne $key; + + $request->setValue(ASN_OCTET_STR, $val); + last; + } + + close($sock); + } + } + } +} + +$agent->register('HAProxy stat', OID_HAPROXY_STATS, \&haproxy_stat); +$agent->register('HAProxy info', OID_HAPROXY_INFO, \&haproxy_info); + diff --git a/admin/netsnmp-perl/haproxy_backend.xml b/admin/netsnmp-perl/haproxy_backend.xml new file mode 100644 index 0000000..26ce63f --- /dev/null +++ b/admin/netsnmp-perl/haproxy_backend.xml @@ -0,0 +1,83 @@ +<interface> + <name>HAProxy - backend</name> + <oid_index>.1.3.6.1.4.1.29385.106.1.1.10001</oid_index> + <fields> + <beIID> + <name>Proxy ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.27</oid> + </beIID> + <beSID> + <name>Service ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.28</oid> + </beSID> + <bePxName> + <name>Proxy Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.0</oid> + </bePxName> + <beSvName> + <name>Service Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.1</oid> + </beSvName> + <beSTot> + <name>Total Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.7</oid> + </beSTot> + <beBIn> + <name>Bytes In</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.8</oid> + </beBIn> + <beBOut> + <name>Bytes Out</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.9</oid> + </beBOut> + <beEConn> + <name>Connection Errors</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.13</oid> + </beEConn> + <beEResp> + <name>Response Errors</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.14</oid> + </beEResp> + <beLBTot> + <name>LB Total</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.30</oid> + </beLBTot> + <beDReq> + <name>Denied Requests</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.1.10</oid> + </beDReq> + </fields> +</interface> diff --git a/admin/netsnmp-perl/haproxy_frontend.xml b/admin/netsnmp-perl/haproxy_frontend.xml new file mode 100644 index 0000000..ade2a77 --- /dev/null +++ b/admin/netsnmp-perl/haproxy_frontend.xml @@ -0,0 +1,83 @@ +<interface> + <name>HAProxy - frontend</name> + <oid_index>.1.3.6.1.4.1.29385.106.1.0.10001</oid_index> + <fields> + <feIID> + <name>Proxy ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.27</oid> + </feIID> + <feSID> + <name>Service ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.28</oid> + </feSID> + <fePxName> + <name>Proxy Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.0</oid> + </fePxName> + <feSvName> + <name>Service Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.1</oid> + </feSvName> + <feSCur> + <name>Current Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.4</oid> + </feSCur> + <feSMax> + <name>Maximum Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.5</oid> + </feSMax> + <feSTot> + <name>Total Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.7</oid> + </feSTot> + <feEReq> + <name>Request Errors</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.12</oid> + </feEReq> + <feBIn> + <name>Bytes In</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.8</oid> + </feBIn> + <feBOut> + <name>Bytes Out</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.9</oid> + </feBOut> + <feDReq> + <name>Denied Requests</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.0.10</oid> + </feDReq> + </fields> +</interface> diff --git a/admin/netsnmp-perl/haproxy_socket.xml b/admin/netsnmp-perl/haproxy_socket.xml new file mode 100644 index 0000000..63ae110 --- /dev/null +++ b/admin/netsnmp-perl/haproxy_socket.xml @@ -0,0 +1,90 @@ +<interface> + <name>HAProxy - socket</name> + <oid_index>.1.3.6.1.4.1.29385.106.1.3.10001</oid_index> + <fields> + <feseID> + <name>Unique Index</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.10001</oid> + </feseID> + <feIID> + <name>Proxy ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.27</oid> + </feIID> + <feSID> + <name>Service ID</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.28</oid> + </feSID> + <fePxName> + <name>Proxy Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.0</oid> + </fePxName> + <feSvName> + <name>Service Name</name> + <method>get</method> + <source>value</source> + <direction>input</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.1</oid> + </feSvName> + <feSCur> + <name>Current Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.4</oid> + </feSCur> + <feSMax> + <name>Maximum Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.5</oid> + </feSMax> + <feSTot> + <name>Total Sessions</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.7</oid> + </feSTot> + <feEReq> + <name>Request Errors</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.12</oid> + </feEReq> + <feBIn> + <name>Bytes In</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.8</oid> + </feBIn> + <feBOut> + <name>Bytes Out</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.9</oid> + </feBOut> + <feDReq> + <name>Denied Requests</name> + <method>get</method> + <source>value</source> + <direction>output</direction> + <oid>.1.3.6.1.4.1.29385.106.1.3.10</oid> + </feDReq> + </fields> +</interface> |