diff --git a/.github/workflows/deploy_grafana.yaml b/.github/workflows/deploy_grafana.yaml index f945a36f..d2f55423 100644 --- a/.github/workflows/deploy_grafana.yaml +++ b/.github/workflows/deploy_grafana.yaml @@ -17,7 +17,7 @@ on: tags: - "v*.*.*" paths: - - "java-module/grafana" + - "java-module/grafana/**" - "java-module/Dockerfile.grafana" workflow_dispatch: diff --git a/.github/workflows/deploy_insight-scheduler.yaml b/.github/workflows/deploy_insight-scheduler.yaml index 02ed6e29..fea6bb47 100644 --- a/.github/workflows/deploy_insight-scheduler.yaml +++ b/.github/workflows/deploy_insight-scheduler.yaml @@ -18,13 +18,13 @@ on: tags: - "v*.*.*" paths: - - "python/scheduler" + - "python/scheduler/**" workflow_dispatch: env: DOCKER_REGISTRY_NAME: cloudbaristaorg GHCR_REGISTRY_NAME: ${{ github.repository_owner }} - IMAGE_NAME: mc-o11y-insight-scheduler + IMAGE_NAME: mc-observability-insight-scheduler jobs: # The job key is "publish-container-image" diff --git a/.github/workflows/deploy_insight.yaml b/.github/workflows/deploy_insight.yaml index 20735477..974c0dd8 100644 --- a/.github/workflows/deploy_insight.yaml +++ b/.github/workflows/deploy_insight.yaml @@ -18,13 +18,17 @@ on: tags: - "v*.*.*" paths: - - "python/insight" + - "python/insight/**" + paths-ignore: + - "python/insight/**.md" + - "python/insight/.env.example" + - "python/insight/.gitignore" workflow_dispatch: env: DOCKER_REGISTRY_NAME: cloudbaristaorg GHCR_REGISTRY_NAME: ${{ github.repository_owner }} - IMAGE_NAME: mc-o11y-insight + IMAGE_NAME: mc-observability-insight jobs: # The job key is "publish-container-image" diff --git a/.github/workflows/deploy_mcp-influxdb.yaml b/.github/workflows/deploy_mcp-influxdb.yaml index 43d95924..df8334e6 100644 --- a/.github/workflows/deploy_mcp-influxdb.yaml +++ b/.github/workflows/deploy_mcp-influxdb.yaml @@ -18,13 +18,13 @@ on: tags: - "v*.*.*" paths: - - "python/mcp-influxdb" + - "python/mcp-influxdb/**" workflow_dispatch: env: DOCKER_REGISTRY_NAME: cloudbaristaorg GHCR_REGISTRY_NAME: ${{ github.repository_owner }} - IMAGE_NAME: mc-o11y-mcp-influxdb + IMAGE_NAME: mc-observability-mcp-influxdb jobs: # The job key is "publish-container-image" diff --git a/.github/workflows/deploy_mcp-mariadb.yaml b/.github/workflows/deploy_mcp-mariadb.yaml index 8cd2c275..7ca81686 100644 --- a/.github/workflows/deploy_mcp-mariadb.yaml +++ b/.github/workflows/deploy_mcp-mariadb.yaml @@ -18,13 +18,13 @@ on: tags: - "v*.*.*" paths: - - "python/mcp-mariadb" + - "python/mcp-mariadb/**" workflow_dispatch: env: DOCKER_REGISTRY_NAME: cloudbaristaorg GHCR_REGISTRY_NAME: ${{ github.repository_owner }} - IMAGE_NAME: mc-o11y-mcp-mariadb + IMAGE_NAME: mc-observability-mcp-mariadb jobs: # The job key is "publish-container-image" diff --git a/.github/workflows/deploy_minio.yaml b/.github/workflows/deploy_minio.yaml index 9f2cba53..7c1f50b3 100644 --- a/.github/workflows/deploy_minio.yaml +++ b/.github/workflows/deploy_minio.yaml @@ -17,7 +17,7 @@ on: tags: - "v*.*.*" paths: - - "java-module/minio" + - "java-module/minio/**" - "java-module/Dockerfile.minio" workflow_dispatch: diff --git a/java-module/docker-compose.yaml b/java-module/docker-compose.yaml index 3b2be19c..3dd55292 100644 --- a/java-module/docker-compose.yaml +++ b/java-module/docker-compose.yaml @@ -40,7 +40,7 @@ services: # - OTEL_INSTRUMENTATION_METHODS_INCLUDE=${OTEL_METHODS_INCLUDE} # - OTEL_INSTRUMENTATION_METHODS_EXCLUDE=${OTEL_METHODS_EXCLUDE} # ===== service options ===== - - OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME:-mc-o11y-manager} + - OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME:-mc-observability-manager} - OTEL_METRICS_EXPORTER=none - OTEL_LOGS_EXPORTER=none - OTEL_TRACES_EXPORTER=otlp @@ -516,7 +516,7 @@ services: - INFLUXDB_PASSWORD=mc-agent mc-observability-insight: - image: cloudbaristaorg/mc-o11y-insight:edge + image: cloudbaristaorg/mc-observability-insight:edge container_name: mc-observability-insight restart: always ports: @@ -524,7 +524,7 @@ services: environment: - TZ=Asia/Seoul - OLLAMA_BASE_URL=${OLLAMA_BASE_URL:-} - - OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME:-o11y-insight} + - OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME:-mc-observability-insight} - MODE=${MODE:-otlp-http} - OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=${OTEL_EXPORTER_OTLP_TRACES_ENDPOINT:-http://mc-observability-tempo:4318/v1/traces} volumes: @@ -535,7 +535,7 @@ services: mc-observability-insight-scheduler: - image: cloudbaristaorg/mc-o11y-insight-scheduler:edge + image: cloudbaristaorg/mc-observability-insight-scheduler:edge container_name: mc-observability-insight-scheduler restart: always ports: @@ -610,7 +610,7 @@ services: - external_network mc-observability-mcp-maria: - image: cloudbaristaorg/mc-o11y-mcp-mariadb:edge + image: cloudbaristaorg/mc-observability-mcp-mariadb:edge container_name: mc-observability-mcp-maria restart: always ports: @@ -633,7 +633,7 @@ services: - external_network mc-observability-mcp-influx: - image: cloudbaristaorg/mc-o11y-mcp-influxdb:edge + image: cloudbaristaorg/mc-observability-mcp-influxdb:edge container_name: mc-observability-mcp-influx restart: always ports: diff --git a/python/insight/requirements.txt b/python/insight/requirements.txt index 8798387d..57801750 100644 Binary files a/python/insight/requirements.txt and b/python/insight/requirements.txt differ