Skip to content

Commit

Permalink
Default to not include the host tag (#52)
Browse files Browse the repository at this point in the history
* Default to not include the host tag
  • Loading branch information
justinjc authored Jan 31, 2020
1 parent 89db5e0 commit d36e8df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ configurations.archives.artifacts.clear()

allprojects {
group = 'com.uber.m3'
version = '0.4.1'
version = '0.5.0'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
2 changes: 1 addition & 1 deletion m3/src/main/java/com/uber/m3/tally/m3/M3Reporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public static class Builder {
// Non-generic EMPTY ImmutableMap will never contain any elements
@SuppressWarnings("unchecked")
protected ImmutableMap<String, String> commonTags = ImmutableMap.EMPTY;
protected boolean includeHost = true;
protected boolean includeHost = false;
protected int maxQueueSize = DEFAULT_MAX_QUEUE_SIZE;
protected int maxPacketSizeBytes = DEFAULT_MAX_PACKET_SIZE;
protected int maxProcessorWaitUntilFlushMillis = 10_000;
Expand Down

0 comments on commit d36e8df

Please sign in to comment.