-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prometheus exporter support for auto instrumentation
- Loading branch information
Showing
4 changed files
with
127 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
exporter/opentelemetry-exporter-prometheus/tests/test_entrypoints.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# 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. | ||
|
||
# pylint: disable=no-self-use | ||
|
||
import os | ||
from unittest import TestCase | ||
from unittest.mock import ANY, Mock, patch | ||
|
||
from opentelemetry.exporter.prometheus import _AutoPrometheusMetricReader | ||
from opentelemetry.sdk._configuration import _import_exporters | ||
from opentelemetry.sdk.environment_variables import ( | ||
OTEL_EXPORTER_PROMETHEUS_HOST, | ||
OTEL_EXPORTER_PROMETHEUS_PORT, | ||
) | ||
|
||
|
||
class TestEntrypoints(TestCase): | ||
def test_import_exporters(self) -> None: | ||
""" | ||
Tests that the entrypoint can be loaded and doesn't have a typo in the name | ||
""" | ||
( | ||
_trace_exporters, | ||
metric_exporters, | ||
_logs_exporters, | ||
) = _import_exporters( | ||
trace_exporter_names=[], | ||
metric_exporter_names=["prometheus"], | ||
log_exporter_names=[], | ||
) | ||
|
||
self.assertIs( | ||
metric_exporters["prometheus"], | ||
_AutoPrometheusMetricReader, | ||
) | ||
|
||
@patch("opentelemetry.exporter.prometheus.start_http_server") | ||
@patch.dict(os.environ) | ||
def test_starts_http_server_defaults( | ||
self, mock_start_http_server: Mock | ||
) -> None: | ||
_AutoPrometheusMetricReader() | ||
mock_start_http_server.assert_called_once_with( | ||
port=9464, addr="localhost" | ||
) | ||
|
||
@patch("opentelemetry.exporter.prometheus.start_http_server") | ||
@patch.dict(os.environ, {OTEL_EXPORTER_PROMETHEUS_HOST: "1.2.3.4"}) | ||
def test_starts_http_server_host_envvar( | ||
self, mock_start_http_server: Mock | ||
) -> None: | ||
_AutoPrometheusMetricReader() | ||
mock_start_http_server.assert_called_once_with( | ||
port=ANY, addr="1.2.3.4" | ||
) | ||
|
||
@patch("opentelemetry.exporter.prometheus.start_http_server") | ||
@patch.dict(os.environ, {OTEL_EXPORTER_PROMETHEUS_PORT: "9999"}) | ||
def test_starts_http_server_port_envvar( | ||
self, mock_start_http_server: Mock | ||
) -> None: | ||
_AutoPrometheusMetricReader() | ||
mock_start_http_server.assert_called_once_with(port=9999, addr=ANY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters