Skip to content

Commit

Permalink
change metrics port to 9100
Browse files Browse the repository at this point in the history
  • Loading branch information
kevodwyer committed Aug 8, 2023
1 parent 5be9330 commit 64aa359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/peergos/config/MetricsSection.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public MetricsSection(boolean enabled, String address, int port) {
}

public static MetricsSection defaultConfig() {
return new MetricsSection(true, "localhost", 8101); //what should be the default port?
return new MetricsSection(true, "localhost", 9100);
}

public Map<String, Object> toJson() {
Expand Down

0 comments on commit 64aa359

Please sign in to comment.