# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2013 Mirantis, Inc. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. LB_METHOD_ROUND_ROBIN = 'ROUND_ROBIN' LB_METHOD_LEAST_CONNECTIONS = 'LEAST_CONNECTIONS' LB_METHOD_SOURCE_IP = 'SOURCE_IP' PROTOCOL_TCP = 'TCP' PROTOCOL_HTTP = 'HTTP' PROTOCOL_HTTPS = 'HTTPS' HEALTH_MONITOR_PING = 'PING' HEALTH_MONITOR_TCP = 'TCP' HEALTH_MONITOR_HTTP = 'HTTP' HEALTH_MONITOR_HTTPS = 'HTTPS' SESSION_PERSISTENCE_SOURCE_IP = 'SOURCE_IP' SESSION_PERSISTENCE_HTTP_COOKIE = 'HTTP_COOKIE' SESSION_PERSISTENCE_APP_COOKIE = 'APP_COOKIE' STATS_CURRENT_CONNECTIONS = 'CURRENT_CONNECTIONS' STATS_MAX_CONNECTIONS = 'MAX_CONNECTIONS' STATS_CURRENT_SESSIONS = 'CURRENT_SESSIONS' STATS_MAX_SESSIONS = 'MAX_SESSIONS' STATS_TOTAL_SESSIONS = 'TOTAL_SESSIONS' STATS_IN_BYTES = 'IN_BYTES' STATS_OUT_BYTES = 'OUT_BYTES' STATS_CONNECTION_ERRORS = 'CONNECTION_ERRORS' STATS_RESPONSE_ERRORS = 'RESPONSE_ERRORS'