diff --git a/deps/rabbitmq_tracing/README.md b/deps/rabbitmq_tracing/README.md
index 8b2c3a4286..9793bc1ef7 100644
--- a/deps/rabbitmq_tracing/README.md
+++ b/deps/rabbitmq_tracing/README.md
@@ -55,9 +55,13 @@ Example for how to create a trace using [RabbitMQ HTTP API](http://www.rabbitmq.
curl -i -u guest:guest -H "content-type:application/json" -XPUT \
http://localhost:15672/api/traces/%2f/my-trace \
-d'{"format":"text","pattern":"#", "max_payload_bytes":1000,
- "consumer_username":"guest", "consumer_password":"guest"}'
+ "tracer_connection_username":"guest", "tracer_connection_password":"guest"}'
```
-`consumer_username` and `consumer_password` are optionals, defaults to the configured values in the app.
-`max_payload_bytes` is optional (omit it to prevent payload truncation),
-format and pattern are mandatory.
+The format and pattern fields are mandatory.
+
+`tracer_connection_username` and `tracer_connection_password` control what credentials the tracing
+connection will use. Both are optional and default to the configured
+plugin values.
+
+`max_payload_bytes` is optional (omit it to prevent payload truncation).
diff --git a/deps/rabbitmq_tracing/priv/www/js/tmpl/traces.ejs b/deps/rabbitmq_tracing/priv/www/js/tmpl/traces.ejs
index ee151b393d..4c1244c6dd 100644
--- a/deps/rabbitmq_tracing/priv/www/js/tmpl/traces.ejs
+++ b/deps/rabbitmq_tracing/priv/www/js/tmpl/traces.ejs
@@ -28,7 +28,7 @@