2015-07-21 17:29:25 +00:00
|
|
|
package rabbitmq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2015-11-01 08:22:54 +00:00
|
|
|
"strconv"
|
2016-06-02 11:34:03 +00:00
|
|
|
"sync"
|
2015-12-15 17:08:13 +00:00
|
|
|
"time"
|
2015-07-21 17:29:25 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2018-01-29 20:14:49 +00:00
|
|
|
"github.com/influxdata/telegraf/filter"
|
2016-07-19 09:24:06 +00:00
|
|
|
"github.com/influxdata/telegraf/internal"
|
2018-05-04 23:33:23 +00:00
|
|
|
"github.com/influxdata/telegraf/internal/tls"
|
2016-01-20 18:57:35 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/inputs"
|
2015-07-21 17:29:25 +00:00
|
|
|
)
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// DefaultUsername will set a default value that corrasponds to the default
|
|
|
|
// value used by Rabbitmq
|
2015-07-21 17:29:25 +00:00
|
|
|
const DefaultUsername = "guest"
|
2016-07-19 09:24:06 +00:00
|
|
|
|
|
|
|
// DefaultPassword will set a default value that corrasponds to the default
|
|
|
|
// value used by Rabbitmq
|
2015-07-21 17:29:25 +00:00
|
|
|
const DefaultPassword = "guest"
|
2016-07-19 09:24:06 +00:00
|
|
|
|
|
|
|
// DefaultURL will set a default value that corrasponds to the default value
|
|
|
|
// used by Rabbitmq
|
2015-07-21 17:29:25 +00:00
|
|
|
const DefaultURL = "http://localhost:15672"
|
|
|
|
|
2016-11-16 16:18:56 +00:00
|
|
|
// Default http timeouts
|
|
|
|
const DefaultResponseHeaderTimeout = 3
|
|
|
|
const DefaultClientTimeout = 4
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// RabbitMQ defines the configuration necessary for gathering metrics,
|
|
|
|
// see the sample config for further details
|
2015-12-20 03:26:18 +00:00
|
|
|
type RabbitMQ struct {
|
2019-10-24 00:26:31 +00:00
|
|
|
URL string `toml:"url"`
|
|
|
|
Name string `toml:"name"`
|
|
|
|
Username string `toml:"username"`
|
|
|
|
Password string `toml:"password"`
|
2018-05-04 23:33:23 +00:00
|
|
|
tls.ClientConfig
|
2016-07-19 09:24:06 +00:00
|
|
|
|
2016-11-16 16:18:56 +00:00
|
|
|
ResponseHeaderTimeout internal.Duration `toml:"header_timeout"`
|
|
|
|
ClientTimeout internal.Duration `toml:"client_timeout"`
|
|
|
|
|
2019-10-24 00:26:31 +00:00
|
|
|
Nodes []string `toml:"nodes"`
|
|
|
|
Queues []string `toml:"queues"`
|
|
|
|
Exchanges []string `toml:"exchanges"`
|
2015-07-21 17:29:25 +00:00
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
QueueInclude []string `toml:"queue_name_include"`
|
|
|
|
QueueExclude []string `toml:"queue_name_exclude"`
|
|
|
|
FederationUpstreamInclude []string `toml:"federation_upstream_include"`
|
|
|
|
FederationUpstreamExclude []string `toml:"federation_upstream_exclude"`
|
2018-01-29 20:14:49 +00:00
|
|
|
|
2019-10-24 00:26:31 +00:00
|
|
|
Client *http.Client `toml:"-"`
|
2018-01-29 20:14:49 +00:00
|
|
|
|
|
|
|
filterCreated bool
|
|
|
|
excludeEveryQueue bool
|
|
|
|
queueFilter filter.Filter
|
2019-10-24 00:08:19 +00:00
|
|
|
upstreamFilter filter.Filter
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// OverviewResponse ...
|
2015-07-21 17:29:25 +00:00
|
|
|
type OverviewResponse struct {
|
|
|
|
MessageStats *MessageStats `json:"message_stats"`
|
|
|
|
ObjectTotals *ObjectTotals `json:"object_totals"`
|
|
|
|
QueueTotals *QueueTotals `json:"queue_totals"`
|
2018-01-26 23:00:58 +00:00
|
|
|
Listeners []Listeners `json:"listeners"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Listeners ...
|
|
|
|
type Listeners struct {
|
|
|
|
Protocol string `json:"protocol"`
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// Details ...
|
2015-11-01 08:22:54 +00:00
|
|
|
type Details struct {
|
2018-06-19 07:19:23 +00:00
|
|
|
Rate float64 `json:"rate"`
|
2015-11-01 08:22:54 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// MessageStats ...
|
2015-07-21 17:29:25 +00:00
|
|
|
type MessageStats struct {
|
2018-06-19 07:19:23 +00:00
|
|
|
Ack int64
|
|
|
|
AckDetails Details `json:"ack_details"`
|
|
|
|
Deliver int64
|
|
|
|
DeliverDetails Details `json:"deliver_details"`
|
|
|
|
DeliverGet int64 `json:"deliver_get"`
|
|
|
|
DeliverGetDetails Details `json:"deliver_get_details"`
|
|
|
|
Publish int64
|
|
|
|
PublishDetails Details `json:"publish_details"`
|
|
|
|
Redeliver int64
|
|
|
|
RedeliverDetails Details `json:"redeliver_details"`
|
|
|
|
PublishIn int64 `json:"publish_in"`
|
|
|
|
PublishInDetails Details `json:"publish_in_details"`
|
|
|
|
PublishOut int64 `json:"publish_out"`
|
|
|
|
PublishOutDetails Details `json:"publish_out_details"`
|
|
|
|
ReturnUnroutable int64 `json:"return_unroutable"`
|
|
|
|
ReturnUnroutableDetails Details `json:"return_unroutable_details"`
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// ObjectTotals ...
|
2015-07-21 17:29:25 +00:00
|
|
|
type ObjectTotals struct {
|
|
|
|
Channels int64
|
|
|
|
Connections int64
|
|
|
|
Consumers int64
|
|
|
|
Exchanges int64
|
|
|
|
Queues int64
|
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// QueueTotals ...
|
2015-07-21 17:29:25 +00:00
|
|
|
type QueueTotals struct {
|
2016-01-25 19:17:58 +00:00
|
|
|
Messages int64
|
|
|
|
MessagesReady int64 `json:"messages_ready"`
|
|
|
|
MessagesUnacknowledged int64 `json:"messages_unacknowledged"`
|
|
|
|
MessageBytes int64 `json:"message_bytes"`
|
|
|
|
MessageBytesReady int64 `json:"message_bytes_ready"`
|
|
|
|
MessageBytesUnacknowledged int64 `json:"message_bytes_unacknowledged"`
|
2016-07-19 09:24:06 +00:00
|
|
|
MessageRAM int64 `json:"message_bytes_ram"`
|
2016-01-25 19:17:58 +00:00
|
|
|
MessagePersistent int64 `json:"message_bytes_persistent"`
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// Queue ...
|
2015-11-01 08:22:54 +00:00
|
|
|
type Queue struct {
|
2020-02-26 00:36:06 +00:00
|
|
|
QueueTotals // just to not repeat the same code
|
|
|
|
MessageStats `json:"message_stats"`
|
|
|
|
Memory int64
|
|
|
|
Consumers int64
|
|
|
|
ConsumerUtilisation float64 `json:"consumer_utilisation"`
|
|
|
|
Name string
|
|
|
|
Node string
|
|
|
|
Vhost string
|
|
|
|
Durable bool
|
|
|
|
AutoDelete bool `json:"auto_delete"`
|
|
|
|
IdleSince string `json:"idle_since"`
|
|
|
|
SlaveNodes []string `json:"slave_nodes"`
|
|
|
|
SynchronisedSlaveNodes []string `json:"synchronised_slave_nodes"`
|
2015-11-01 08:22:54 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// Node ...
|
2015-07-21 17:29:25 +00:00
|
|
|
type Node struct {
|
|
|
|
Name string
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
DiskFree int64 `json:"disk_free"`
|
|
|
|
DiskFreeLimit int64 `json:"disk_free_limit"`
|
|
|
|
DiskFreeAlarm bool `json:"disk_free_alarm"`
|
|
|
|
FdTotal int64 `json:"fd_total"`
|
|
|
|
FdUsed int64 `json:"fd_used"`
|
|
|
|
MemLimit int64 `json:"mem_limit"`
|
|
|
|
MemUsed int64 `json:"mem_used"`
|
|
|
|
MemAlarm bool `json:"mem_alarm"`
|
|
|
|
ProcTotal int64 `json:"proc_total"`
|
|
|
|
ProcUsed int64 `json:"proc_used"`
|
|
|
|
RunQueue int64 `json:"run_queue"`
|
|
|
|
SocketsTotal int64 `json:"sockets_total"`
|
|
|
|
SocketsUsed int64 `json:"sockets_used"`
|
|
|
|
Running bool `json:"running"`
|
|
|
|
Uptime int64 `json:"uptime"`
|
|
|
|
MnesiaDiskTxCount int64 `json:"mnesia_disk_tx_count"`
|
|
|
|
MnesiaDiskTxCountDetails Details `json:"mnesia_disk_tx_count_details"`
|
|
|
|
MnesiaRamTxCount int64 `json:"mnesia_ram_tx_count"`
|
|
|
|
MnesiaRamTxCountDetails Details `json:"mnesia_ram_tx_count_details"`
|
|
|
|
GcNum int64 `json:"gc_num"`
|
|
|
|
GcNumDetails Details `json:"gc_num_details"`
|
|
|
|
GcBytesReclaimed int64 `json:"gc_bytes_reclaimed"`
|
|
|
|
GcBytesReclaimedDetails Details `json:"gc_bytes_reclaimed_details"`
|
|
|
|
IoReadAvgTime int64 `json:"io_read_avg_time"`
|
|
|
|
IoReadAvgTimeDetails Details `json:"io_read_avg_time_details"`
|
|
|
|
IoReadBytes int64 `json:"io_read_bytes"`
|
|
|
|
IoReadBytesDetails Details `json:"io_read_bytes_details"`
|
|
|
|
IoWriteAvgTime int64 `json:"io_write_avg_time"`
|
|
|
|
IoWriteAvgTimeDetails Details `json:"io_write_avg_time_details"`
|
|
|
|
IoWriteBytes int64 `json:"io_write_bytes"`
|
|
|
|
IoWriteBytesDetails Details `json:"io_write_bytes_details"`
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 01:38:11 +00:00
|
|
|
type Exchange struct {
|
|
|
|
Name string
|
|
|
|
MessageStats `json:"message_stats"`
|
|
|
|
Type string
|
|
|
|
Internal bool
|
|
|
|
Vhost string
|
|
|
|
Durable bool
|
|
|
|
AutoDelete bool `json:"auto_delete"`
|
|
|
|
}
|
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
// FederationLinkChannelMessageStats ...
|
|
|
|
type FederationLinkChannelMessageStats struct {
|
|
|
|
Confirm int64 `json:"confirm"`
|
|
|
|
ConfirmDetails Details `json:"confirm_details"`
|
|
|
|
Publish int64 `json:"publish"`
|
|
|
|
PublishDetails Details `json:"publish_details"`
|
|
|
|
ReturnUnroutable int64 `json:"return_unroutable"`
|
|
|
|
ReturnUnroutableDetails Details `json:"return_unroutable_details"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// FederationLinkChannel ...
|
|
|
|
type FederationLinkChannel struct {
|
|
|
|
AcksUncommitted int64 `json:"acks_uncommitted"`
|
|
|
|
ConsumerCount int64 `json:"consumer_count"`
|
|
|
|
MessagesUnacknowledged int64 `json:"messages_unacknowledged"`
|
|
|
|
MessagesUncommitted int64 `json:"messages_uncommitted"`
|
|
|
|
MessagesUnconfirmed int64 `json:"messages_unconfirmed"`
|
|
|
|
MessageStats FederationLinkChannelMessageStats `json:"message_stats"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// FederationLink ...
|
|
|
|
type FederationLink struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Queue string `json:"queue"`
|
|
|
|
UpstreamQueue string `json:"upstream_queue"`
|
|
|
|
Exchange string `json:"exchange"`
|
|
|
|
UpstreamExchange string `json:"upstream_exchange"`
|
|
|
|
Vhost string `json:"vhost"`
|
|
|
|
Upstream string `json:"upstream"`
|
|
|
|
LocalChannel FederationLinkChannel `json:"local_channel"`
|
|
|
|
}
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
type HealthCheck struct {
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
2019-08-30 00:12:57 +00:00
|
|
|
// MemoryResponse ...
|
|
|
|
type MemoryResponse struct {
|
|
|
|
Memory *Memory `json:"memory"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Memory details
|
|
|
|
type Memory struct {
|
|
|
|
ConnectionReaders int64 `json:"connection_readers"`
|
|
|
|
ConnectionWriters int64 `json:"connection_writers"`
|
|
|
|
ConnectionChannels int64 `json:"connection_channels"`
|
|
|
|
ConnectionOther int64 `json:"connection_other"`
|
|
|
|
QueueProcs int64 `json:"queue_procs"`
|
|
|
|
QueueSlaveProcs int64 `json:"queue_slave_procs"`
|
|
|
|
Plugins int64 `json:"plugins"`
|
|
|
|
OtherProc int64 `json:"other_proc"`
|
|
|
|
Metrics int64 `json:"metrics"`
|
|
|
|
MgmtDb int64 `json:"mgmt_db"`
|
|
|
|
Mnesia int64 `json:"mnesia"`
|
|
|
|
OtherEts int64 `json:"other_ets"`
|
|
|
|
Binary int64 `json:"binary"`
|
|
|
|
MsgIndex int64 `json:"msg_index"`
|
|
|
|
Code int64 `json:"code"`
|
|
|
|
Atom int64 `json:"atom"`
|
|
|
|
OtherSystem int64 `json:"other_system"`
|
|
|
|
AllocatedUnused int64 `json:"allocated_unused"`
|
|
|
|
ReservedUnallocated int64 `json:"reserved_unallocated"`
|
|
|
|
Total int64 `json:"total"`
|
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// gatherFunc ...
|
2017-04-24 18:13:26 +00:00
|
|
|
type gatherFunc func(r *RabbitMQ, acc telegraf.Accumulator)
|
2015-11-01 08:22:54 +00:00
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
var gatherFunctions = []gatherFunc{gatherOverview, gatherNodes, gatherQueues, gatherExchanges, gatherFederationLinks}
|
2015-11-01 08:22:54 +00:00
|
|
|
|
2015-07-21 17:29:25 +00:00
|
|
|
var sampleConfig = `
|
2017-05-02 01:55:48 +00:00
|
|
|
## Management Plugin url. (default: http://localhost:15672)
|
2016-05-26 09:25:21 +00:00
|
|
|
# url = "http://localhost:15672"
|
2017-05-02 01:55:48 +00:00
|
|
|
## Tag added to rabbitmq_overview series; deprecated: use tags
|
|
|
|
# name = "rmq-server-1"
|
|
|
|
## Credentials
|
2015-10-15 21:53:29 +00:00
|
|
|
# username = "guest"
|
|
|
|
# password = "guest"
|
|
|
|
|
2018-05-04 23:33:23 +00:00
|
|
|
## Optional TLS Config
|
|
|
|
# tls_ca = "/etc/telegraf/ca.pem"
|
|
|
|
# tls_cert = "/etc/telegraf/cert.pem"
|
|
|
|
# tls_key = "/etc/telegraf/key.pem"
|
|
|
|
## Use TLS but skip chain & host verification
|
2016-07-19 09:24:06 +00:00
|
|
|
# insecure_skip_verify = false
|
|
|
|
|
2016-11-16 16:18:56 +00:00
|
|
|
## Optional request timeouts
|
|
|
|
##
|
2016-12-16 14:11:28 +00:00
|
|
|
## ResponseHeaderTimeout, if non-zero, specifies the amount of time to wait
|
|
|
|
## for a server's response headers after fully writing the request.
|
2016-11-16 16:18:56 +00:00
|
|
|
# header_timeout = "3s"
|
|
|
|
##
|
2016-12-16 14:11:28 +00:00
|
|
|
## client_timeout specifies a time limit for requests made by this client.
|
|
|
|
## Includes connection time, any redirects, and reading the response body.
|
2016-11-16 16:18:56 +00:00
|
|
|
# client_timeout = "4s"
|
|
|
|
|
2017-08-18 01:52:27 +00:00
|
|
|
## A list of nodes to gather as the rabbitmq_node measurement. If not
|
|
|
|
## specified, metrics for all nodes are gathered.
|
2015-10-15 21:53:29 +00:00
|
|
|
# nodes = ["rabbit@node1", "rabbit@node2"]
|
2017-08-18 01:52:27 +00:00
|
|
|
|
|
|
|
## A list of queues to gather as the rabbitmq_queue measurement. If not
|
|
|
|
## specified, metrics for all queues are gathered.
|
|
|
|
# queues = ["telegraf"]
|
2018-01-04 01:38:11 +00:00
|
|
|
|
|
|
|
## A list of exchanges to gather as the rabbitmq_exchange measurement. If not
|
2018-01-26 23:00:58 +00:00
|
|
|
## specified, metrics for all exchanges are gathered.
|
2018-01-04 01:38:11 +00:00
|
|
|
# exchanges = ["telegraf"]
|
2018-01-29 20:14:49 +00:00
|
|
|
|
|
|
|
## Queues to include and exclude. Globs accepted.
|
|
|
|
## Note that an empty array for both will include all queues
|
|
|
|
queue_name_include = []
|
|
|
|
queue_name_exclude = []
|
2019-10-24 00:08:19 +00:00
|
|
|
|
|
|
|
## Federation upstreams include and exclude when gathering the rabbitmq_federation measurement.
|
|
|
|
## If neither are specified, metrics for all federation upstreams are gathered.
|
|
|
|
## Federation link metrics will only be gathered for queues and exchanges
|
|
|
|
## whose non-federation metrics will be collected (e.g a queue excluded
|
|
|
|
## by the 'queue_name_exclude' option will also be excluded from federation).
|
|
|
|
## Globs accepted.
|
|
|
|
# federation_upstream_include = ["dataCentre-*"]
|
|
|
|
# federation_upstream_exclude = []
|
2015-07-21 17:29:25 +00:00
|
|
|
`
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
func boolToInt(b bool) int64 {
|
|
|
|
if b {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// SampleConfig ...
|
2015-07-21 17:29:25 +00:00
|
|
|
func (r *RabbitMQ) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// Description ...
|
2015-07-21 17:29:25 +00:00
|
|
|
func (r *RabbitMQ) Description() string {
|
2017-05-02 01:55:48 +00:00
|
|
|
return "Reads metrics from RabbitMQ servers via the Management Plugin"
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 09:24:06 +00:00
|
|
|
// Gather ...
|
2016-01-27 21:21:36 +00:00
|
|
|
func (r *RabbitMQ) Gather(acc telegraf.Accumulator) error {
|
2015-07-21 17:29:25 +00:00
|
|
|
if r.Client == nil {
|
2018-05-04 23:33:23 +00:00
|
|
|
tlsCfg, err := r.ClientConfig.TLSConfig()
|
2016-07-19 09:24:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tr := &http.Transport{
|
2016-11-16 16:18:56 +00:00
|
|
|
ResponseHeaderTimeout: r.ResponseHeaderTimeout.Duration,
|
2016-07-19 09:24:06 +00:00
|
|
|
TLSClientConfig: tlsCfg,
|
|
|
|
}
|
2016-02-29 16:52:58 +00:00
|
|
|
r.Client = &http.Client{
|
|
|
|
Transport: tr,
|
2016-11-16 16:18:56 +00:00
|
|
|
Timeout: r.ClientTimeout.Duration,
|
2016-02-29 16:52:58 +00:00
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
// Create gather filters if not already created
|
2018-01-29 20:14:49 +00:00
|
|
|
if !r.filterCreated {
|
|
|
|
err := r.createQueueFilter()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-24 00:08:19 +00:00
|
|
|
err = r.createUpstreamFilter()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-01-29 20:14:49 +00:00
|
|
|
r.filterCreated = true
|
|
|
|
}
|
|
|
|
|
2016-06-02 11:34:03 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(len(gatherFunctions))
|
2015-12-20 03:26:18 +00:00
|
|
|
for _, f := range gatherFunctions {
|
2016-06-02 11:34:03 +00:00
|
|
|
go func(gf gatherFunc) {
|
|
|
|
defer wg.Done()
|
2017-04-24 18:13:26 +00:00
|
|
|
gf(r, acc)
|
2016-06-02 11:34:03 +00:00
|
|
|
}(f)
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
2016-06-02 11:34:03 +00:00
|
|
|
wg.Wait()
|
2015-07-21 17:29:25 +00:00
|
|
|
|
2017-04-24 18:13:26 +00:00
|
|
|
return nil
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
func (r *RabbitMQ) requestJSON(u string, target interface{}) error {
|
2016-05-26 09:25:21 +00:00
|
|
|
if r.URL == "" {
|
|
|
|
r.URL = DefaultURL
|
|
|
|
}
|
2015-12-20 03:26:18 +00:00
|
|
|
u = fmt.Sprintf("%s%s", r.URL, u)
|
2015-11-01 08:22:54 +00:00
|
|
|
|
|
|
|
req, err := http.NewRequest("GET", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
username := r.Username
|
2015-11-01 08:22:54 +00:00
|
|
|
if username == "" {
|
|
|
|
username = DefaultUsername
|
|
|
|
}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
password := r.Password
|
2015-11-01 08:22:54 +00:00
|
|
|
if password == "" {
|
|
|
|
password = DefaultPassword
|
|
|
|
}
|
|
|
|
|
|
|
|
req.SetBasicAuth(username, password)
|
|
|
|
|
|
|
|
resp, err := r.Client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
json.NewDecoder(resp.Body).Decode(target)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-24 18:13:26 +00:00
|
|
|
func gatherOverview(r *RabbitMQ, acc telegraf.Accumulator) {
|
2015-07-21 17:29:25 +00:00
|
|
|
overview := &OverviewResponse{}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
err := r.requestJSON("/api/overview", &overview)
|
2015-07-21 17:29:25 +00:00
|
|
|
if err != nil {
|
2017-04-24 18:13:26 +00:00
|
|
|
acc.AddError(err)
|
2015-11-01 08:22:54 +00:00
|
|
|
return
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 23:00:58 +00:00
|
|
|
if overview.QueueTotals == nil || overview.ObjectTotals == nil || overview.MessageStats == nil || overview.Listeners == nil {
|
2017-04-24 18:13:26 +00:00
|
|
|
acc.AddError(fmt.Errorf("Wrong answer from rabbitmq. Probably auth issue"))
|
2015-11-01 08:22:54 +00:00
|
|
|
return
|
2015-10-13 18:15:12 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
var clusteringListeners, amqpListeners int64 = 0, 0
|
2018-01-26 23:00:58 +00:00
|
|
|
for _, listener := range overview.Listeners {
|
|
|
|
if listener.Protocol == "clustering" {
|
2018-06-19 07:19:23 +00:00
|
|
|
clusteringListeners++
|
2018-01-26 23:00:58 +00:00
|
|
|
} else if listener.Protocol == "amqp" {
|
2018-06-19 07:19:23 +00:00
|
|
|
amqpListeners++
|
2018-01-26 23:00:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
tags := map[string]string{"url": r.URL}
|
|
|
|
if r.Name != "" {
|
|
|
|
tags["name"] = r.Name
|
2015-09-11 23:21:43 +00:00
|
|
|
}
|
2015-12-15 17:08:13 +00:00
|
|
|
fields := map[string]interface{}{
|
2017-12-19 04:36:59 +00:00
|
|
|
"messages": overview.QueueTotals.Messages,
|
|
|
|
"messages_ready": overview.QueueTotals.MessagesReady,
|
|
|
|
"messages_unacked": overview.QueueTotals.MessagesUnacknowledged,
|
|
|
|
"channels": overview.ObjectTotals.Channels,
|
|
|
|
"connections": overview.ObjectTotals.Connections,
|
|
|
|
"consumers": overview.ObjectTotals.Consumers,
|
|
|
|
"exchanges": overview.ObjectTotals.Exchanges,
|
|
|
|
"queues": overview.ObjectTotals.Queues,
|
|
|
|
"messages_acked": overview.MessageStats.Ack,
|
|
|
|
"messages_delivered": overview.MessageStats.Deliver,
|
|
|
|
"messages_delivered_get": overview.MessageStats.DeliverGet,
|
|
|
|
"messages_published": overview.MessageStats.Publish,
|
2018-06-19 07:19:23 +00:00
|
|
|
"clustering_listeners": clusteringListeners,
|
|
|
|
"amqp_listeners": amqpListeners,
|
|
|
|
"return_unroutable": overview.MessageStats.ReturnUnroutable,
|
|
|
|
"return_unroutable_rate": overview.MessageStats.ReturnUnroutableDetails.Rate,
|
2015-12-15 17:08:13 +00:00
|
|
|
}
|
|
|
|
acc.AddFields("rabbitmq_overview", fields, tags)
|
2015-11-01 08:22:54 +00:00
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
|
2017-04-24 18:13:26 +00:00
|
|
|
func gatherNodes(r *RabbitMQ, acc telegraf.Accumulator) {
|
2020-01-03 19:38:20 +00:00
|
|
|
allNodes := make([]*Node, 0)
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
err := r.requestJSON("/api/nodes", &allNodes)
|
2015-07-21 17:29:25 +00:00
|
|
|
if err != nil {
|
2017-04-24 18:13:26 +00:00
|
|
|
acc.AddError(err)
|
2015-11-01 08:22:54 +00:00
|
|
|
return
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
2018-06-19 07:19:23 +00:00
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
nodes := allNodes[:0]
|
2018-06-19 07:19:23 +00:00
|
|
|
for _, node := range allNodes {
|
|
|
|
if r.shouldGatherNode(node) {
|
2020-01-03 19:38:20 +00:00
|
|
|
nodes = append(nodes, node)
|
2018-06-19 07:19:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
var wg sync.WaitGroup
|
2015-07-21 17:29:25 +00:00
|
|
|
for _, node := range nodes {
|
2020-01-03 19:38:20 +00:00
|
|
|
wg.Add(1)
|
|
|
|
go func(node *Node) {
|
|
|
|
defer wg.Done()
|
|
|
|
|
|
|
|
tags := map[string]string{"url": r.URL}
|
|
|
|
tags["node"] = node.Name
|
|
|
|
|
|
|
|
fields := map[string]interface{}{
|
|
|
|
"disk_free": node.DiskFree,
|
|
|
|
"disk_free_limit": node.DiskFreeLimit,
|
|
|
|
"disk_free_alarm": boolToInt(node.DiskFreeAlarm),
|
|
|
|
"fd_total": node.FdTotal,
|
|
|
|
"fd_used": node.FdUsed,
|
|
|
|
"mem_limit": node.MemLimit,
|
|
|
|
"mem_used": node.MemUsed,
|
|
|
|
"mem_alarm": boolToInt(node.MemAlarm),
|
|
|
|
"proc_total": node.ProcTotal,
|
|
|
|
"proc_used": node.ProcUsed,
|
|
|
|
"run_queue": node.RunQueue,
|
|
|
|
"sockets_total": node.SocketsTotal,
|
|
|
|
"sockets_used": node.SocketsUsed,
|
|
|
|
"uptime": node.Uptime,
|
|
|
|
"mnesia_disk_tx_count": node.MnesiaDiskTxCount,
|
|
|
|
"mnesia_disk_tx_count_rate": node.MnesiaDiskTxCountDetails.Rate,
|
|
|
|
"mnesia_ram_tx_count": node.MnesiaRamTxCount,
|
|
|
|
"mnesia_ram_tx_count_rate": node.MnesiaRamTxCountDetails.Rate,
|
|
|
|
"gc_num": node.GcNum,
|
|
|
|
"gc_num_rate": node.GcNumDetails.Rate,
|
|
|
|
"gc_bytes_reclaimed": node.GcBytesReclaimed,
|
|
|
|
"gc_bytes_reclaimed_rate": node.GcBytesReclaimedDetails.Rate,
|
|
|
|
"io_read_avg_time": node.IoReadAvgTime,
|
|
|
|
"io_read_avg_time_rate": node.IoReadAvgTimeDetails.Rate,
|
|
|
|
"io_read_bytes": node.IoReadBytes,
|
|
|
|
"io_read_bytes_rate": node.IoReadBytesDetails.Rate,
|
|
|
|
"io_write_avg_time": node.IoWriteAvgTime,
|
|
|
|
"io_write_avg_time_rate": node.IoWriteAvgTimeDetails.Rate,
|
|
|
|
"io_write_bytes": node.IoWriteBytes,
|
|
|
|
"io_write_bytes_rate": node.IoWriteBytesDetails.Rate,
|
|
|
|
"running": boolToInt(node.Running),
|
2018-06-19 07:19:23 +00:00
|
|
|
}
|
2020-01-03 19:38:20 +00:00
|
|
|
|
|
|
|
var health HealthCheck
|
|
|
|
err := r.requestJSON("/api/healthchecks/node/"+node.Name, &health)
|
2019-08-30 00:12:57 +00:00
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
if health.Status == "ok" {
|
|
|
|
fields["health_check_status"] = int64(1)
|
|
|
|
} else {
|
|
|
|
fields["health_check_status"] = int64(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
var memory MemoryResponse
|
|
|
|
err = r.requestJSON("/api/nodes/"+node.Name+"/memory", &memory)
|
2019-08-30 00:12:57 +00:00
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return
|
|
|
|
}
|
2018-06-19 07:19:23 +00:00
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
if memory.Memory != nil {
|
|
|
|
fields["mem_connection_readers"] = memory.Memory.ConnectionReaders
|
|
|
|
fields["mem_connection_writers"] = memory.Memory.ConnectionWriters
|
|
|
|
fields["mem_connection_channels"] = memory.Memory.ConnectionChannels
|
|
|
|
fields["mem_connection_other"] = memory.Memory.ConnectionOther
|
|
|
|
fields["mem_queue_procs"] = memory.Memory.QueueProcs
|
|
|
|
fields["mem_queue_slave_procs"] = memory.Memory.QueueSlaveProcs
|
|
|
|
fields["mem_plugins"] = memory.Memory.Plugins
|
|
|
|
fields["mem_other_proc"] = memory.Memory.OtherProc
|
|
|
|
fields["mem_metrics"] = memory.Memory.Metrics
|
|
|
|
fields["mem_mgmt_db"] = memory.Memory.MgmtDb
|
|
|
|
fields["mem_mnesia"] = memory.Memory.Mnesia
|
|
|
|
fields["mem_other_ets"] = memory.Memory.OtherEts
|
|
|
|
fields["mem_binary"] = memory.Memory.Binary
|
|
|
|
fields["mem_msg_index"] = memory.Memory.MsgIndex
|
|
|
|
fields["mem_code"] = memory.Memory.Code
|
|
|
|
fields["mem_atom"] = memory.Memory.Atom
|
|
|
|
fields["mem_other_system"] = memory.Memory.OtherSystem
|
|
|
|
fields["mem_allocated_unused"] = memory.Memory.AllocatedUnused
|
|
|
|
fields["mem_reserved_unallocated"] = memory.Memory.ReservedUnallocated
|
|
|
|
fields["mem_total"] = memory.Memory.Total
|
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
acc.AddFields("rabbitmq_node", fields, tags)
|
|
|
|
}(node)
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
2020-01-03 19:38:20 +00:00
|
|
|
|
|
|
|
wg.Wait()
|
2015-11-01 08:22:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 18:13:26 +00:00
|
|
|
func gatherQueues(r *RabbitMQ, acc telegraf.Accumulator) {
|
2018-01-29 20:14:49 +00:00
|
|
|
if r.excludeEveryQueue {
|
|
|
|
return
|
|
|
|
}
|
2015-11-01 08:22:54 +00:00
|
|
|
// Gather information about queues
|
|
|
|
queues := make([]Queue, 0)
|
2015-12-20 03:26:18 +00:00
|
|
|
err := r.requestJSON("/api/queues", &queues)
|
2015-11-01 08:22:54 +00:00
|
|
|
if err != nil {
|
2017-04-24 18:13:26 +00:00
|
|
|
acc.AddError(err)
|
2015-11-01 08:22:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, queue := range queues {
|
2018-01-29 20:14:49 +00:00
|
|
|
if !r.queueFilter.Match(queue.Name) {
|
2015-11-01 08:22:54 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
tags := map[string]string{
|
2015-12-20 03:26:18 +00:00
|
|
|
"url": r.URL,
|
2015-11-01 08:22:54 +00:00
|
|
|
"queue": queue.Name,
|
|
|
|
"vhost": queue.Vhost,
|
|
|
|
"node": queue.Node,
|
|
|
|
"durable": strconv.FormatBool(queue.Durable),
|
|
|
|
"auto_delete": strconv.FormatBool(queue.AutoDelete),
|
|
|
|
}
|
|
|
|
|
|
|
|
acc.AddFields(
|
2015-12-15 17:08:13 +00:00
|
|
|
"rabbitmq_queue",
|
2015-11-01 08:22:54 +00:00
|
|
|
map[string]interface{}{
|
|
|
|
// common information
|
2020-02-26 00:36:06 +00:00
|
|
|
"consumers": queue.Consumers,
|
|
|
|
"consumer_utilisation": queue.ConsumerUtilisation,
|
|
|
|
"idle_since": queue.IdleSince,
|
|
|
|
"slave_nodes": len(queue.SlaveNodes),
|
|
|
|
"synchronised_slave_nodes": len(queue.SynchronisedSlaveNodes),
|
|
|
|
"memory": queue.Memory,
|
2015-11-01 08:22:54 +00:00
|
|
|
// messages information
|
2016-01-25 19:17:58 +00:00
|
|
|
"message_bytes": queue.MessageBytes,
|
|
|
|
"message_bytes_ready": queue.MessageBytesReady,
|
|
|
|
"message_bytes_unacked": queue.MessageBytesUnacknowledged,
|
2016-07-19 09:24:06 +00:00
|
|
|
"message_bytes_ram": queue.MessageRAM,
|
2016-01-25 19:17:58 +00:00
|
|
|
"message_bytes_persist": queue.MessagePersistent,
|
2015-11-01 08:22:54 +00:00
|
|
|
"messages": queue.Messages,
|
|
|
|
"messages_ready": queue.MessagesReady,
|
|
|
|
"messages_unack": queue.MessagesUnacknowledged,
|
|
|
|
"messages_ack": queue.MessageStats.Ack,
|
|
|
|
"messages_ack_rate": queue.MessageStats.AckDetails.Rate,
|
|
|
|
"messages_deliver": queue.MessageStats.Deliver,
|
|
|
|
"messages_deliver_rate": queue.MessageStats.DeliverDetails.Rate,
|
|
|
|
"messages_deliver_get": queue.MessageStats.DeliverGet,
|
|
|
|
"messages_deliver_get_rate": queue.MessageStats.DeliverGetDetails.Rate,
|
|
|
|
"messages_publish": queue.MessageStats.Publish,
|
|
|
|
"messages_publish_rate": queue.MessageStats.PublishDetails.Rate,
|
|
|
|
"messages_redeliver": queue.MessageStats.Redeliver,
|
|
|
|
"messages_redeliver_rate": queue.MessageStats.RedeliverDetails.Rate,
|
|
|
|
},
|
|
|
|
tags,
|
|
|
|
)
|
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 01:38:11 +00:00
|
|
|
func gatherExchanges(r *RabbitMQ, acc telegraf.Accumulator) {
|
|
|
|
// Gather information about exchanges
|
|
|
|
exchanges := make([]Exchange, 0)
|
|
|
|
err := r.requestJSON("/api/exchanges", &exchanges)
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, exchange := range exchanges {
|
2019-10-24 00:08:19 +00:00
|
|
|
if !r.shouldGatherExchange(exchange.Name) {
|
2018-01-04 01:38:11 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
tags := map[string]string{
|
|
|
|
"url": r.URL,
|
|
|
|
"exchange": exchange.Name,
|
|
|
|
"type": exchange.Type,
|
|
|
|
"vhost": exchange.Vhost,
|
|
|
|
"internal": strconv.FormatBool(exchange.Internal),
|
|
|
|
"durable": strconv.FormatBool(exchange.Durable),
|
|
|
|
"auto_delete": strconv.FormatBool(exchange.AutoDelete),
|
|
|
|
}
|
|
|
|
|
|
|
|
acc.AddFields(
|
|
|
|
"rabbitmq_exchange",
|
|
|
|
map[string]interface{}{
|
2018-06-19 07:19:23 +00:00
|
|
|
"messages_publish_in": exchange.MessageStats.PublishIn,
|
|
|
|
"messages_publish_in_rate": exchange.MessageStats.PublishInDetails.Rate,
|
|
|
|
"messages_publish_out": exchange.MessageStats.PublishOut,
|
|
|
|
"messages_publish_out_rate": exchange.MessageStats.PublishOutDetails.Rate,
|
2018-01-04 01:38:11 +00:00
|
|
|
},
|
|
|
|
tags,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
func gatherFederationLinks(r *RabbitMQ, acc telegraf.Accumulator) {
|
|
|
|
// Gather information about federation links
|
|
|
|
federationLinks := make([]FederationLink, 0)
|
|
|
|
err := r.requestJSON("/api/federation-links", &federationLinks)
|
|
|
|
if err != nil {
|
|
|
|
acc.AddError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, link := range federationLinks {
|
|
|
|
if !r.shouldGatherFederationLink(link) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tags := map[string]string{
|
|
|
|
"url": r.URL,
|
|
|
|
"type": link.Type,
|
|
|
|
"vhost": link.Vhost,
|
|
|
|
"upstream": link.Upstream,
|
|
|
|
}
|
|
|
|
|
|
|
|
if link.Type == "exchange" {
|
|
|
|
tags["exchange"] = link.Exchange
|
|
|
|
tags["upstream_exchange"] = link.UpstreamExchange
|
|
|
|
} else {
|
|
|
|
tags["queue"] = link.Queue
|
|
|
|
tags["upstream_queue"] = link.UpstreamQueue
|
|
|
|
}
|
|
|
|
|
|
|
|
acc.AddFields(
|
|
|
|
"rabbitmq_federation",
|
|
|
|
map[string]interface{}{
|
|
|
|
"acks_uncommitted": link.LocalChannel.AcksUncommitted,
|
|
|
|
"consumers": link.LocalChannel.ConsumerCount,
|
|
|
|
"messages_unacknowledged": link.LocalChannel.MessagesUnacknowledged,
|
|
|
|
"messages_uncommitted": link.LocalChannel.MessagesUncommitted,
|
|
|
|
"messages_unconfirmed": link.LocalChannel.MessagesUnconfirmed,
|
|
|
|
"messages_confirm": link.LocalChannel.MessageStats.Confirm,
|
|
|
|
"messages_publish": link.LocalChannel.MessageStats.Publish,
|
|
|
|
"messages_return_unroutable": link.LocalChannel.MessageStats.ReturnUnroutable,
|
|
|
|
},
|
|
|
|
tags,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-03 19:38:20 +00:00
|
|
|
func (r *RabbitMQ) shouldGatherNode(node *Node) bool {
|
2015-12-20 03:26:18 +00:00
|
|
|
if len(r.Nodes) == 0 {
|
2015-07-21 17:29:25 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-12-20 03:26:18 +00:00
|
|
|
for _, name := range r.Nodes {
|
2015-07-21 17:29:25 +00:00
|
|
|
if name == node.Name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-01-29 20:14:49 +00:00
|
|
|
func (r *RabbitMQ) createQueueFilter() error {
|
|
|
|
// Backwards compatibility for deprecated `queues` parameter.
|
|
|
|
if len(r.Queues) > 0 {
|
|
|
|
r.QueueInclude = append(r.QueueInclude, r.Queues...)
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 07:19:23 +00:00
|
|
|
queueFilter, err := filter.NewIncludeExcludeFilter(r.QueueInclude, r.QueueExclude)
|
2018-01-29 20:14:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-06-19 07:19:23 +00:00
|
|
|
r.queueFilter = queueFilter
|
2018-01-29 20:14:49 +00:00
|
|
|
|
|
|
|
for _, q := range r.QueueExclude {
|
|
|
|
if q == "*" {
|
|
|
|
r.excludeEveryQueue = true
|
2015-11-01 08:22:54 +00:00
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-29 20:14:49 +00:00
|
|
|
return nil
|
2015-07-21 17:29:25 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
func (r *RabbitMQ) createUpstreamFilter() error {
|
|
|
|
upstreamFilter, err := filter.NewIncludeExcludeFilter(r.FederationUpstreamInclude, r.FederationUpstreamExclude)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.upstreamFilter = upstreamFilter
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *RabbitMQ) shouldGatherExchange(exchangeName string) bool {
|
2018-01-04 01:38:11 +00:00
|
|
|
if len(r.Exchanges) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, name := range r.Exchanges {
|
2019-10-24 00:08:19 +00:00
|
|
|
if name == exchangeName {
|
2018-01-04 01:38:11 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-10-24 00:08:19 +00:00
|
|
|
func (r *RabbitMQ) shouldGatherFederationLink(link FederationLink) bool {
|
|
|
|
if !r.upstreamFilter.Match(link.Upstream) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
switch link.Type {
|
|
|
|
case "exchange":
|
|
|
|
return r.shouldGatherExchange(link.Exchange)
|
|
|
|
case "queue":
|
|
|
|
return r.queueFilter.Match(link.Queue)
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-21 17:29:25 +00:00
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
inputs.Add("rabbitmq", func() telegraf.Input {
|
2016-11-16 16:18:56 +00:00
|
|
|
return &RabbitMQ{
|
|
|
|
ResponseHeaderTimeout: internal.Duration{Duration: DefaultResponseHeaderTimeout * time.Second},
|
|
|
|
ClientTimeout: internal.Duration{Duration: DefaultClientTimeout * time.Second},
|
|
|
|
}
|
2015-07-21 17:29:25 +00:00
|
|
|
})
|
|
|
|
}
|