Skip to content

Commit

Permalink
Merge pull request #69 from soramitsu/update/genesis
Browse files Browse the repository at this point in the history
update path to pushgateway
  • Loading branch information
timofeevmd authored May 30, 2024
2 parents 1510cfd + 299d284 commit 14980b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jp/co/soramitsu/load/toolbox/Grinder.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.ArrayList;

public class Grinder extends Wrench13 {
private String baseUrl = "http://0.0.0.0:9091/metrics/job/";
private String baseUrl = "http://pushgateway:9091/metrics/job/";
private URL transactionUrl = new URL(baseUrl + "transaction/");
private URL subscriptionUrl = new URL(baseUrl + "subscription/");
private URL queryUrl = new URL(baseUrl + "query/");
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/jp/co/soramitsu/load/toolbox/Wrench13.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open class Wrench13 {
var attemptsPersentage: Int = 2
var attempt: Int = 0
var anotherDevDomainIdList: MutableList<DomainId> = mutableListOf()
var pushGateway = PushGateway("0.0.0.0:9091")
var pushGateway = PushGateway("pushgateway:9091")

lateinit var currentDevAccountId: AccountId
lateinit var currentDevKeyPair: KeyPair
Expand Down

0 comments on commit 14980b3

Please sign in to comment.