Skip to content

Commit

Permalink
Re #123: Using Loki 3.1.0 for integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkowalcz committed Jul 19, 2024
1 parent 30d9958 commit e2c06e6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
class LoggingSystemSanityCheckTest {

@Container
public GenericContainer loki = new GenericContainer("grafana/loki:2.3.0")
public GenericContainer loki = new GenericContainer("grafana/loki:3.1.0")
.withCommand("-config.file=/etc/loki-config.yaml")
.withClasspathResourceMapping("loki-config.yaml",
"/etc/loki-config.yaml",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class LoggingSystemTest {

@Container
public GenericContainer loki = new GenericContainer("grafana/loki:2.3.0")
public GenericContainer loki = new GenericContainer("grafana/loki:3.1.0")
.withCommand("-config.file=/etc/loki-config.yaml")
.withClasspathResourceMapping("loki-config.yaml",
"/etc/loki-config.yaml",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ServerNameIndicatorTest {
public static Network network = Network.newNetwork();

@Container
public GenericContainer loki1 = new GenericContainer("grafana/loki:2.3.0")
public GenericContainer loki1 = new GenericContainer("grafana/loki:3.1.0")
.withNetwork(network)
.withNetworkAliases("loki1")
.withCommand("-config.file=/etc/loki-config.yaml")
Expand All @@ -46,7 +46,7 @@ public class ServerNameIndicatorTest {
.withExposedPorts(3100);

@Container
public GenericContainer loki2 = new GenericContainer("grafana/loki:2.3.0")
public GenericContainer loki2 = new GenericContainer("grafana/loki:3.1.0")
.withNetwork(network)
.withNetworkAliases("loki2")
.withCommand("-config.file=/etc/loki-config.yaml")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
<username>tjahzi</username>
<password>tjahzi</password>


<ThresholdFilter level="ALL"/>
<PatternLayout>
<Pattern>[%t] %d{DEFAULT} %5p %c{1} - %m%n%exception{full}</Pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class IntegrationTest {
public static Network network = Network.newNetwork();

@Container
public GenericContainer loki = new GenericContainer("grafana/loki:2.3.0")
public GenericContainer loki = new GenericContainer("grafana/loki:3.1.0")
.withNetwork(network)
.withNetworkAliases("loki")
.withCommand("-config.file=/etc/loki-config.yaml")
Expand Down

0 comments on commit e2c06e6

Please sign in to comment.