Skip to content

Commit d36e8df

Browse files
authored
Default to not include the host tag (#52)
* Default to not include the host tag
1 parent 89db5e0 commit d36e8df

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ configurations.archives.artifacts.clear()
4545

4646
allprojects {
4747
group = 'com.uber.m3'
48-
version = '0.4.1'
48+
version = '0.5.0'
4949

5050
apply plugin: 'java'
5151
apply plugin: 'maven'

m3/src/main/java/com/uber/m3/tally/m3/M3Reporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ public static class Builder {
579579
// Non-generic EMPTY ImmutableMap will never contain any elements
580580
@SuppressWarnings("unchecked")
581581
protected ImmutableMap<String, String> commonTags = ImmutableMap.EMPTY;
582-
protected boolean includeHost = true;
582+
protected boolean includeHost = false;
583583
protected int maxQueueSize = DEFAULT_MAX_QUEUE_SIZE;
584584
protected int maxPacketSizeBytes = DEFAULT_MAX_PACKET_SIZE;
585585
protected int maxProcessorWaitUntilFlushMillis = 10_000;

0 commit comments

Comments
 (0)