This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 093c504 Regen
093c504 is described below
commit 093c504c12a27c44fd86e3f9fb2159925098ed69
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Sep 27 11:43:36 2019 +0200
Regen
---
docs/components/modules/ROOT/pages/zipkin.adoc | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/docs/components/modules/ROOT/pages/zipkin.adoc
b/docs/components/modules/ROOT/pages/zipkin.adoc
index 62ff88a..5bdec84 100644
--- a/docs/components/modules/ROOT/pages/zipkin.adoc
+++ b/docs/components/modules/ROOT/pages/zipkin.adoc
@@ -281,6 +281,22 @@ without doing any service name mappings. However, when you
have multiple
systems across your infrastructure, then you should consider using
human-readable service names, that you map to instead of using the camel
endpoint
uris.
+[[camel-zipkin-CustomTags]]
+== Custom Tags
+
+If you need to send custom tags to Zipkin server, add an exchange property
with name "camel.client.customtags" and value as a Map of your custom tags.
Refrain from adding too many custom tags in production environment.
+
+Following is one example of how custom tags can be added:
+
+[source,java]
+----
+Map<String, String> customTags = new HashMap<>();
+customTags.put("key1", "value1");
+customTags.put("key2", "value2");
+exchange.setProperty("camel.client.customtags", customTags);
+----
+
+
[[camel-zipkin-camel-zipin-starter]]
== camel-zipin-starter