Skip to content

Commit

Permalink
update path to pushgateway
Browse files Browse the repository at this point in the history
Signed-off-by: timofeevmd <[email protected]>

Signed-off-by: timofeevmd <[email protected]>
  • Loading branch information
timofeevmd committed May 30, 2024
1 parent 78f3c24 commit 299d284
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 299d284

Please sign in to comment.