Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion javaagent/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
depends_on:
- collector
collector:
image: otel/opentelemetry-collector-contrib:0.159.0@sha256:1f2c54a30e713fac6b3ae77a1ec84010c2007e29ced8ec666214fc2f6739c1cc
image: otel/opentelemetry-collector-contrib:0.160.0@sha256:799dc6cf12c96192af37b5bdba804da8c10b3bc563b43cb90c3f3c58d9572ad6
volumes:
- ./collector-config.yaml:/collector-config.yaml
command: ["--config=/collector-config.yaml"]
Expand Down
4 changes: 2 additions & 2 deletions log-appender/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ java {

dependencies {
// Slf4J / logback
implementation("org.slf4j:slf4j-api:2.0.18")
implementation("org.slf4j:slf4j-api:2.0.19")
implementation("ch.qos.logback:logback-core:1.6.3")
implementation("ch.qos.logback:logback-classic:1.6.3")

// JUL to SLF4J bridge
implementation("org.slf4j:jul-to-slf4j:2.0.18")
implementation("org.slf4j:jul-to-slf4j:2.0.19")

// Log4j
implementation(platform("org.apache.logging.log4j:log4j-bom:2.26.1"))
Expand Down
2 changes: 1 addition & 1 deletion log-appender/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
collector:
image: otel/opentelemetry-collector-contrib:0.159.0@sha256:1f2c54a30e713fac6b3ae77a1ec84010c2007e29ced8ec666214fc2f6739c1cc
image: otel/opentelemetry-collector-contrib:0.160.0@sha256:799dc6cf12c96192af37b5bdba804da8c10b3bc563b43cb90c3f3c58d9572ad6
volumes:
- ./otel-config.yaml:/otel-config.yaml
command: ["--config=/otel-config.yaml"]
Expand Down
2 changes: 1 addition & 1 deletion logging-k8s-stdout-otlp-json/k8s/lgtm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
spec:
containers:
- name: lgtm
image: grafana/otel-lgtm:0.32.0@sha256:d6b20e35890ef2f91d13944805939acdaf1e5d3ffbf9f9aed08586312826c815
image: grafana/otel-lgtm:0.32.1@sha256:7fd8eaad6bb64897ad5f644c8e15ee67c3204c97168f4bdba122adbf8f60e3c4
ports:
- containerPort: 3000
- containerPort: 4317
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ kubectl = "1.37.0"
"aqua:grafana/flint" = "0.22.11"
dotenv-linter = "4.0.0"
lychee = "0.24.2"
rumdl = "0.2.62"
rumdl = "0.2.69"

[env]
FLINT_CONFIG_DIR = ".github/config"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id("com.diffplug.spotless") version "8.10.1"
id("com.diffplug.spotless") version "8.10.2"
id("com.gradleup.shadow") version "9.6.1"
id("com.google.protobuf") version "0.10.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion spring-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id("java")
id("org.springframework.boot") version "3.5.16"
id("org.graalvm.buildtools.native") version "1.1.11"
id("org.graalvm.buildtools.native") version "1.1.12"
}

description = "OpenTelemetry Example for Spring native images"
Expand Down
2 changes: 1 addition & 1 deletion spring-native/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
depends_on:
- collector
collector:
image: otel/opentelemetry-collector-contrib:0.159.0@sha256:1f2c54a30e713fac6b3ae77a1ec84010c2007e29ced8ec666214fc2f6739c1cc
image: otel/opentelemetry-collector-contrib:0.160.0@sha256:799dc6cf12c96192af37b5bdba804da8c10b3bc563b43cb90c3f3c58d9572ad6
volumes:
- ./collector-spring-native-config.yaml:/collector-spring-native-config.yaml
command: ["--config=/collector-spring-native-config.yaml"]
Expand Down
Loading