Skip to content
Snippets Groups Projects
Unverified Commit a04cfee3 authored by Daniel Nelson's avatar Daniel Nelson
Browse files

Fix incorrect option name in amqp sample configuration

parent da6ad34f
No related branches found
No related tags found
No related merge requests found
...@@ -41,8 +41,8 @@ The following defaults are known to work with RabbitMQ: ...@@ -41,8 +41,8 @@ The following defaults are known to work with RabbitMQ:
# exchange_durability = "durable" # exchange_durability = "durable"
## Additional exchange arguments. ## Additional exchange arguments.
# exchange_args = { } # exchange_arguments = { }
# exchange_args = {"hash_propery" = "timestamp"} # exchange_arguments = {"hash_propery" = "timestamp"}
## AMQP queue name ## AMQP queue name
queue = "telegraf" queue = "telegraf"
......
...@@ -95,8 +95,8 @@ func (a *AMQPConsumer) SampleConfig() string { ...@@ -95,8 +95,8 @@ func (a *AMQPConsumer) SampleConfig() string {
# exchange_durability = "durable" # exchange_durability = "durable"
## Additional exchange arguments. ## Additional exchange arguments.
# exchange_args = { } # exchange_arguments = { }
# exchange_args = {"hash_propery" = "timestamp"} # exchange_arguments = {"hash_propery" = "timestamp"}
## AMQP queue name ## AMQP queue name
queue = "telegraf" queue = "telegraf"
......
...@@ -39,8 +39,8 @@ For an introduction to AMQP see: ...@@ -39,8 +39,8 @@ For an introduction to AMQP see:
# exchange_durable = true # exchange_durable = true
## Additional exchange arguments. ## Additional exchange arguments.
# exchange_args = { } # exchange_arguments = { }
# exchange_args = {"hash_propery" = "timestamp"} # exchange_arguments = {"hash_propery" = "timestamp"}
## Authentication credentials for the PLAIN auth_method. ## Authentication credentials for the PLAIN auth_method.
# username = "" # username = ""
......
...@@ -97,8 +97,8 @@ var sampleConfig = ` ...@@ -97,8 +97,8 @@ var sampleConfig = `
# exchange_durable = true # exchange_durable = true
## Additional exchange arguments. ## Additional exchange arguments.
# exchange_args = { } # exchange_arguments = { }
# exchange_args = {"hash_propery" = "timestamp"} # exchange_arguments = {"hash_propery" = "timestamp"}
## Authentication credentials for the PLAIN auth_method. ## Authentication credentials for the PLAIN auth_method.
# username = "" # username = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment