Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions opentelemetry-zipkin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ impl ExporterConfigBuilder {
self.service_endpoint = Some(endpoint);
self
}

/// Assign the collector endpoint for `ConfigBuilder`
pub fn with_collector_endpoint(&mut self, endpoint: String) -> &mut Self {
self.collector_endpoint = Some(endpoint);
self
}
}

impl Exporter {
Expand Down