Skip to content

Commit

Permalink
Merge pull request #33242 from vespa-engine/olaa/update-flags
Browse files Browse the repository at this point in the history
Update flag expiry
  • Loading branch information
hmusum authored Feb 3, 2025
2 parents f45ebec + c2e9373 commit 64bec7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,14 @@ public class Flags {

public static final UnboundBooleanFlag ENABLE_OTELCOL = defineFeatureFlag(
"enable-otel-collector", false,
List.of("olaa"), "2022-09-23", "2025-02-01",
List.of("olaa"), "2022-09-23", "2025-06-01",
"Whether an OpenTelemetry collector should be enabled",
"Takes effect at next tick",
INSTANCE_ID);

public static final UnboundListFlag<String> OTELCOL_LOGS = defineListFlag(
"otelcol-logs", List.of(), String.class,
List.of("olaa"), "2024-01-15", "2025-02-01",
List.of("olaa"), "2024-01-15", "2025-06-01",
"Determines log files handled by the OpenTelemetry collector",
"Takes effect at next tick",
INSTANCE_ID, HOSTNAME
Expand Down Expand Up @@ -352,7 +352,7 @@ public class Flags {

public static UnboundBooleanFlag LOGSERVER_OTELCOL_AGENT = defineFeatureFlag(
"logserver-otelcol-agent", false,
List.of("olaa"), "2024-04-03", "2025-02-01",
List.of("olaa"), "2024-04-03", "2025-06-01",
"Whether logserver container should run otel agent",
"Takes effect at redeployment", INSTANCE_ID);

Expand Down Expand Up @@ -388,7 +388,7 @@ public class Flags {

public static final UnboundBooleanFlag MONITORING_JWT = defineFeatureFlag(
"monitoring-jwt", false,
List.of("olaa"), "2024-07-05", "2025-02-01",
List.of("olaa"), "2024-07-05", "2025-06-01",
"Whether a monitoring JWT should be issued by the controller",
"Takes effect immediately",
TENANT_ID, CONSOLE_USER_EMAIL);
Expand Down

0 comments on commit 64bec7d

Please sign in to comment.