Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static class Pushgateway {
/**
* Enable publishing over a Prometheus Pushgateway.
*/
private Boolean enabled = false;
private boolean enabled;

/**
* Address (host:port) for the Pushgateway.
Expand Down Expand Up @@ -153,11 +153,11 @@ public static class Pushgateway {
*/
private ShutdownOperation shutdownOperation = ShutdownOperation.NONE;

public Boolean getEnabled() {
public boolean isEnabled() {
return this.enabled;
}

public void setEnabled(Boolean enabled) {
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}

Expand Down