%%%------------------------------------------------------------------------ %% Copyright The OpenTelemetry Authors %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. %% You may obtain a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. %%%------------------------------------------------------------------------- %% The language of the telemetry SDK. %% -define(TELEMETRY_SDK_LANGUAGE, 'telemetry.sdk.language'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_CPP, 'cpp'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_DOTNET, 'dotnet'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_ERLANG, 'erlang'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_GO, 'go'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_JAVA, 'java'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_NODEJS, 'nodejs'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_PHP, 'php'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_PYTHON, 'python'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_RUBY, 'ruby'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_RUST, 'rust'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_SWIFT, 'swift'). -define(TELEMETRY_SDK_LANGUAGE_VALUES_WEBJS, 'webjs'). %% The name of the telemetry SDK as defined above. %% -define(TELEMETRY_SDK_NAME, 'telemetry.sdk.name'). %% The version string of the telemetry SDK. %% -define(TELEMETRY_SDK_VERSION, 'telemetry.sdk.version').