2011-01-17 21:25:21 +08:00
HELP = {
'exchange-arguments' :
' Supported arguments : < br / > \
< dl > < dt > alternate - exchange < / d t > \
< dd > Alternate exchange to which to route messages which would otherwise not be routed . < / d d > < d l > ' ,
'queue-arguments' :
' Supported arguments : < br / > \
< dl > \
< dt > x - message - ttl < / d t > \
< dd > How long a message published to a queue can live before it is discarded ( milliseconds ) . < / d d > \
< dt > x - expires < / d t > \
< dd > How long a queue can be unused before it is automatically deleted ( milliseconds ) . < / d d > \
< dl > ' ,
'mnesia-storage' :
' Mnesia storage types : < br / > \
< dl > \
< dt > disc < / d t > \
< dd > Node configuration is held on disc . < / d d > \
< dt > ram < / d t > \
< dd > Node configuration is held in ram . Messages will still be written to disc if necessary . < / d d > \
< dl > ' ,
'internal-users-only' :
'Only users within the internal RabbitMQ database are managed here. Other users (e.g. those authenticated over LDAP) will not appear.' ,
'export-config' :
'The configuration consists of users, virtual hosts, permissions, exchanges, queues and bindings. It does not include the contents of queues. Exclusive queues will not be exported.' ,
'import-config' :
'The configuration that is imported will be merged with the current configuration. If an error occurs during import, any configuration changes made will not be rolled back.' ,
'exchange-rates-incoming' :
'The incoming rate is the rate at which messages are published directly to this exchange.' ,
'exchange-rates-outgoing' :
'The outgoing rate is the rate at which messages enter queues, having been published directly to this exchange.' ,
2011-01-21 21:17:41 +08:00
'channel-mode' :
' Channel guarantee mode . Can be one of the following , or neither : < br / > \
< dl > \
2011-01-21 22:21:09 +08:00
< dt > < acronym title = "Confirm" > C < / a c r o n y m > & n d a s h ; c o n f i r m < / d t > \
2011-01-21 21:17:41 +08:00
< dd > Channel will send streaming publish confirmations . < / d d > \
2011-01-21 22:21:09 +08:00
< dt > < acronym title = "Transactional" > T < / a c r o n y m > & n d a s h ; t r a n s a c t i o n a l < / d t > \
2011-01-21 21:17:41 +08:00
< dd > Channel is transactional . < / d d > \
< dl > ' ,
2011-02-18 19:12:36 +08:00
2011-02-17 20:09:17 +08:00
'file-descriptors' :
' File descriptor count and limit , as reported by the operating system . \
The count includes network sockets and file handlers . < br / > \
2011-02-18 19:12:36 +08:00
To optimize disk access RabbitMQ uses as many free descriptors as are \
available , so the count may safely approach the limit . \
However , if most of the file descriptors are used by sockets then \
persister performance will be negatively impacted . ' ,
2011-02-17 20:09:17 +08:00
'socket-descriptors' :
' The network sockets count and limit managed by RabbitMQ . < br / > \
When the limit is exhausted RabbitMQ will stop accepting new \
network connections . ' ,
2011-01-21 21:17:41 +08:00
2011-02-22 22:00:20 +08:00
'message-get-requeue' :
' Clicking "Get Message(s)" will consume messages from the queue . \
If requeue is set the message will be re - added to the queue , \
but ordering will not be preserved and "redelivered" will be set . < br / > \
If requeue is not set messages will be removed from the queue . ' ,
2011-01-17 21:25:21 +08:00
'foo' : 'foo' // No comma.
} ;
function help ( id ) {
show _popup ( 'help' , HELP [ id ] ) ;
}