Set environment (production/staging/...)

Created on 24 January 2025, 2 months ago

Problem/Motivation

Not sure if this is a support request, task or feature and how exactly it's related to Allow modules to alter request span attributes Active . I think it's separate because it's not just about traces but everything sent to opentelemetry.

I'd like to set an environment indicator. I found https://opentelemetry.io/docs/specs/semconv/resource/deployment-environm..., so maybe there's a way to set it using environment variables, but it might be nice to support that directly in configuration, would make it easier to have a default and override it.

I can also seen a argument that it shouldn't be set in the module exactly because it's so dynamic. But then maybe documentation on how to set it as an environment variable or offer a hook to set stuff like this?

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇨🇭Switzerland berdir Switzerland

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @berdir
  • 🇨🇭Switzerland berdir Switzerland

    According to https://opentelemetry.io/docs/specs/otel/resource/sdk/#specifying-resour..., that should be something like OTEL_RESOURCE_ATTRIBUTES=deployment.environment.name=staging (With SigNoz, it's just OTEL_RESOURCE_ATTRIBUTES=deployment.environment=staging)

    That seems to work, but I'd like to derive this environment variable from other environment variables (using platform.sh environment variables such as PLATFORM_ENVIRONMENT_TYPE), and possibly still support some additional variables, so I'd need to read, merge, extend and then re-expose this, would be nice if there would be an easier extension point in Drupal itself.

    Thoughts?

  • 🇦🇲Armenia murz Yerevan, Armenia

    Actually OTEL provides a lot of variables to control the behavior, but implementing support for all of them will overcomplicate the module, so I think it's better to use them directly.

    If you need to perform some modifications in them, you can do this in the settings.php file, something like this:

    $envType = getenv('PLATFORM_ENVIRONMENT_TYPE');
    putenv("OTEL_RESOURCE_ATTRIBUTES=deployment.environment.name=$envType");
    
  • 🇨🇭Switzerland berdir Switzerland

    Yes, this is what I do now:

    // Automatically set the environment for OpenTelemetry if not already set.
    $otel_resource_attributes = getenv('OTEL_RESOURCE_ATTRIBUTES') ?? '';
    if (!str_contains($otel_resource_attributes, 'deployment.environment')) {
      if ($otel_resource_attributes) {
        $otel_resource_attributes .= ',';
      }
      $otel_resource_attributes .= 'deployment.environment=';
      if (getenv('PLATFORM_ENVIRONMENT_TYPE') == 'production') {
        $otel_resource_attributes .= 'production';
      }
      elseif ($platformsh->inRuntime()) {
        $otel_resource_attributes .= $platformsh->branch;
      }
      else {
        $otel_resource_attributes .= 'development';
      }
      putenv('OTEL_RESOURCE_ATTRIBUTES=' . $otel_resource_attributes);
    }
    

    It's fairly complex, but managable.

Production build 0.71.5 2024