Una aplicación de ejemplo está disponible en GitHub.

Configuración

  1. Instalar el rastreador de Datadog Go.

    1. En tu aplicación principal, añade la biblioteca de rastrei de dd-trace (traza)-go.

      go get github.com/DataDog/dd-trace-go/v2/ddtrace/tracer
    2. Añade lo siguiente al código de tu aplicación para inicializar el rastreador:

      tracer.Start()
      defer tracer.Stop()

    También puedes añadir paquetes adicionales:

    # Activar perfiles
    go get github.com/DataDog/dd-trace-go/v2/profiler
    
    # Patch /net/http
    go get github.com/DataDog/dd-trace-go/contrib/net/http/v2

    Para obtener más información, consulta Tracing Go Applications y el Tracer README.

  2. Instalar serverless-init como sidecar.

    Setup

    Install the Datadog CLI

    npm install -g @datadog/datadog-ci @datadog/datadog-ci-plugin-cloud-run
    

    Install the gcloud CLI and authenticate with gcloud auth login.

    Configuration

    Configure the Datadog site and Datadog API key, and define the service name to use in Datadog.

    export DATADOG_SITE="<DATADOG_SITE>"
    export DD_API_KEY="<DD_API_KEY>"
    export DD_SERVICE="<SERVICE_NAME>"
    

    Instrument

    If you are new to Datadog serverless monitoring, launch the Datadog CLI in interactive mode to guide your first installation for a quick start.

    datadog-ci cloud-run instrument -i
    

    To set up the Datadog sidecar for your applications, run the instrument command after your normal deployment. You can specify multiple services to instrument by passing multiple --service flags.

    datadog-ci cloud-run instrument --project <GCP-PROJECT-ID> --service <CLOUD-RUN-SERVICE-NAME> --region <GCP-REGION>
    

    You can pin to a specific image with the --sidecar-image flag. See the latest releases on Docker Hub.

    Additional parameters can be found in the CLI documentation.

    The Datadog Terraform module for Google Cloud Run wraps the google_cloud_run_v2_service resource and automatically configures your Cloud Run app for Datadog Serverless Monitoring by adding required environment variables and the serverless-init sidecar.

    If you don’t already have Terraform set up, install Terraform, create a new directory, and make a file called main.tf.

    Then, add the following to your Terraform configuration, updating it as necessary based on your needs:

    variable "datadog_api_key" {
      description = "Your Datadog API key"
      type        = string
      sensitive   = true
    }
    
    module "my-cloud-run-app" {
      source  = "DataDog/cloud-run-datadog/google"
      version = "~> 1.0"
    
      project  = "my-gcp-project"
      name     = "my-cloud-run-app"
      location = "us-central1"
    
      datadog_api_key = var.datadog_api_key
      datadog_service = "test-service" // your application service
      datadog_version = "0.0.0" // your code version
      datadog_env     = "prod" // your application environment
      
      datadog_enable_logging = true
    
      deletion_protection = false
      build_config = {
        function_target          = "helloHttp" // your function entry point
        image_uri                = "us-docker.pkg.dev/cloudrun/container/hello"
        base_image               = "us-central1-docker.pkg.dev/serverless-runtimes/google-22-full/runtimes/your-runtime" // base image for your runtime
        enable_automatic_updates = true
      }
      template = {
        containers = [
          {
            name  = "main"
            image = "us-docker.pkg.dev/cloudrun/container/hello"
            base_image_uri = "us-central1-docker.pkg.dev/serverless-runtimes/google-22-full/runtimes/your-runtime" // base image for your runtime
            resources = {
              limits = {
                cpu    = "1"
                memory = "512Mi"
              }
            }
            ports = {
              container_port = 8080
            }
            env = [
              { name = "DD_TRACE_ENABLED", value = "true" },
            ]
          },
        ]
      }
    }
    

    See the Environment Variables for more information on the configuration options available through the env.

    Ensure the container port for the main container is the same as the one exposed in your Dockerfile/service.

    If you haven’t already, initialize your Terraform project:

    terraform init
    

    To deploy your app, run:

    terraform apply
    

    After deploying your Cloud Run app, you can manually modify your app’s settings to enable Datadog monitoring.

    1. Create a Volume with In-Memory volume type.

    2. Add a new container with image URL: gcr.io/datadoghq/serverless-init:<YOUR_TAG>. See the latest releases on Docker Hub to pin a specific version.

    3. Add the volume mount to every container in your application. Choose a path such as /shared-volume, and remember it for the next step.

    4. Add the following environment variables to your serverless-init sidecar container:

      • DD_SERVICE: A name for your service. For example, gcr-sidecar-test.
      • DD_ENV: A name for your environment. For example, dev.
      • DD_SERVERLESS_LOG_PATH: Your log path. For example, /shared-volume/logs/*.log. The path must begin with the mount path you defined in the previous step.
      • DD_API_KEY: Your Datadog API key.
      • FUNCTION_TARGET: The entry point of your function. For example, Main.

      For a list of all environment variables, including additional tags, see Environment variables.

  3. Configurar registros.

    En el anterior step (UI) / paso (generic), creaste un volumen compartido. Es posible que también hayas configurado la variable de entorno DD_SERVERLESS_LOG_PATH, que en forma predeterminada es /shared-volume/logs/app.log.

    En este step (UI) / paso (generic), configura tu biblioteca de registro para escribir logs en el archivo configurado en DD_SERVERLESS_LOG_PATH. En Go, Datadog recomienda escribir logs en formato JSON. Por ejemplo, puedes utilizar una biblioteca de registro de terceros como logrus:

    const LOG_FILE = "/shared-volume/logs/app.log"
    
    os.MkdirAll(filepath.Dir(LOG_FILE), 0755)
    logFile, err := os.OpenFile(LOG_FILE, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
    defer logFile.Close()
    
    logrus.SetOutput(logFile)
    logrus.SetFormatter(&logrus.JSONFormatter{})
    logrus.AddHook(&dd_logrus.DDContextLogHook{})
    
    logrus.WithContext(ctx).Info("Hello World!")

    Datadog recomienda configurar la variable de entorno DD_SOURCE=go en el contenedor sidecar para permitir el análisis avanzado logs de Datadog.

    Para obtener más información, consulta Correlación de logs y traces (trazas) de Go.

  4. Add a service label in Google Cloud. In your Cloud Run service’s info panel, add a label with the following key and value:

    KeyValue
    serviceThe name of your service. Matches the value provided as the DD_SERVICE environment variable.

    See Configure labels for services in the Cloud Run documentation for instructions.

  1. Enviar métricas personalizadas.

    Para enviar métricas personalizadas, instala el cliente de DogStatsD y visualiza ejemplos de código. En Serverless Monitoring, solo se admite el tipo de métrica distribution.

Environment variables

VariableDescriptionContainer
DD_API_KEYDatadog API key - RequiredSidecar container
DD_SITEDatadog site - RequiredSidecar container
DD_SERVICEDatadog Service name. RequiredBoth containers
DD_SERVERLESS_LOG_PATHThe path where the sidecar should tail logs from. Recommended to set to /shared-volume/logs/app.log.Sidecar container
DD_LOGS_INJECTIONWhen true, enrich all logs with trace data for supported loggers. See Correlate Logs and Traces for more information.Application container
DD_VERSIONSee Unified Service Tagging.Both containers
DD_ENVSee Unified Service Tagging.Both containers
DD_SOURCESet the log source to enable a Log Pipeline for advanced parsing. To automatically apply language-specific parsing rules, set to go, or use your custom pipeline. Defaults to cloudrun.Sidecar container
DD_TAGSAdd custom tags to your logs, metrics, and traces. Tags should be comma separated in key/value format (for example: key1:value1,key2:value2).Sidecar container
FUNCTION_TARGETRequired for correct tagging. The entry point of your function. For example, Main. You can also find FUNCTION_TARGET on the source tab inside Google console: Function entry point.Sidecar container

Solucionar problemas

This integration depends on your runtime having a full SSL implementation. If you are using a slim image, you may need to add the following command to your Dockerfile to include certificates:

RUN apt-get update && apt-get install -y ca-certificates

To have your Cloud Run services appear in the software catalog, you must set the DD_SERVICE, DD_VERSION, and DD_ENV environment variables.

Referencias adicionales