From ee3c0aa3d71a857ae7fb60f1b98cf129ee6ad71d Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Merino Date: Thu, 5 Dec 2024 11:07:35 +0100 Subject: Add tests --- main/civisibility/constants/runtime.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 main/civisibility/constants/runtime.go (limited to 'main/civisibility/constants/runtime.go') diff --git a/main/civisibility/constants/runtime.go b/main/civisibility/constants/runtime.go new file mode 100644 index 0000000..15257ef --- /dev/null +++ b/main/civisibility/constants/runtime.go @@ -0,0 +1,16 @@ +// Unless explicitly stated otherwise all files in this repository are licensed +// under the Apache License Version 2.0. +// This product includes software developed at Datadog (https://www.datadoghq.com/). +// Copyright 2024 Datadog, Inc. + +package constants + +const ( + // RuntimeName indicates the name of the runtime compiler. + // This constant is used to tag traces with the name of the runtime compiler being used (e.g., Go, JVM). + RuntimeName = "runtime.name" + + // RuntimeVersion indicates the version of the runtime compiler. + // This constant is used to tag traces with the specific version of the runtime compiler being used. + RuntimeVersion = "runtime.version" +) -- cgit 1.4.1