mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 13:43:03 +08:00

* opentelemetry-sdk-extension-aws: make ecs detector less chatty Don't print warnings if we are not running inside an ecs instance so we can load the resource detector more generally and avoid warnings in stderr. * opentelemetry-sdk-extension-aws: make beanstalk detector less chatty Don't print warnings if we are not running inside beanstalk so we can load the resource detector more generally and avoid warnings in stderr. * Add changelog
60 lines
2.4 KiB
Python
60 lines
2.4 KiB
Python
# 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.
|
|
|
|
import unittest
|
|
from collections import OrderedDict
|
|
from unittest.mock import mock_open, patch
|
|
|
|
from opentelemetry.sdk.extension.aws.resource.beanstalk import ( # pylint: disable=no-name-in-module
|
|
AwsBeanstalkResourceDetector,
|
|
)
|
|
from opentelemetry.semconv.resource import (
|
|
CloudPlatformValues,
|
|
CloudProviderValues,
|
|
ResourceAttributes,
|
|
)
|
|
|
|
MockBeanstalkResourceAttributes = {
|
|
ResourceAttributes.CLOUD_PROVIDER: CloudProviderValues.AWS.value,
|
|
ResourceAttributes.CLOUD_PLATFORM: CloudPlatformValues.AWS_ELASTIC_BEANSTALK.value,
|
|
ResourceAttributes.SERVICE_NAME: CloudPlatformValues.AWS_ELASTIC_BEANSTALK.value,
|
|
ResourceAttributes.SERVICE_INSTANCE_ID: "42",
|
|
ResourceAttributes.SERVICE_NAMESPACE: "mock-env-name",
|
|
ResourceAttributes.SERVICE_VERSION: "app-zip-label",
|
|
}
|
|
|
|
|
|
class AwsBeanstalkResourceDetectorTest(unittest.TestCase):
|
|
@patch(
|
|
"builtins.open",
|
|
new_callable=mock_open,
|
|
read_data=f'{{"deployment_id":"{MockBeanstalkResourceAttributes[ResourceAttributes.SERVICE_INSTANCE_ID]}","environment_name":"{MockBeanstalkResourceAttributes[ResourceAttributes.SERVICE_NAMESPACE]}","version_label":"{MockBeanstalkResourceAttributes[ResourceAttributes.SERVICE_VERSION]}"}}',
|
|
)
|
|
@patch("os.path.exists", return_value=True)
|
|
def test_simple_create(self, mock_path_exists, mock_open_function):
|
|
actual = AwsBeanstalkResourceDetector().detect()
|
|
self.assertDictEqual(
|
|
actual.attributes.copy(),
|
|
OrderedDict(MockBeanstalkResourceAttributes),
|
|
)
|
|
|
|
@patch("os.name", "posix")
|
|
@patch("os.path.exists", return_value=False)
|
|
def test_not_on_beanstalk(self, mock_path_exists):
|
|
actual = AwsBeanstalkResourceDetector().detect()
|
|
self.assertDictEqual(actual.attributes.copy(), {})
|
|
mock_path_exists.assert_called_once_with(
|
|
"/var/elasticbeanstalk/xray/environment.conf"
|
|
)
|