Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 05 Apr 2026 17:23:31 +0000
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b919d4c09d12 - main - devel/py-azure-monitor-opentelemetry-exporter: Add py-azure-monitor-opentelemetry-exporter 1.0.0b48
Message-ID:  <69d29a93.1d9ad.22946a@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b919d4c09d12fce7251b0095ef7d78f1495ca13e

commit b919d4c09d12fce7251b0095ef7d78f1495ca13e
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-04-05 16:51:02 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-04-05 17:17:55 +0000

    devel/py-azure-monitor-opentelemetry-exporter: Add py-azure-monitor-opentelemetry-exporter 1.0.0b48
    
    The exporter for Azure Monitor allows Python applications to export data from
    the OpenTelemetry SDK to Azure Monitor. The exporter is intended for users who
    require advanced configuration or have more complicated telemetry needs that
    require all of distributed tracing, logging and metrics. If you have simpler
    configuration requirements, we recommend using the Azure Monitor OpenTelemetry
    Distro instead for a simpler one-line setup.
    
    Prior to using this SDK, please read and understand Data Collection Basics,
    especially the section on telemetry types. OpenTelemetry terminology differs
    from Application Insights terminology so it is important to understand the way
    the telemetry types map to each other.
---
 devel/Makefile                                     |  1 +
 .../Makefile                                       | 30 ++++++++++++++++++++++
 .../distinfo                                       |  3 +++
 .../pkg-descr                                      | 11 ++++++++
 4 files changed, 45 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 24d5f7e22ba9..1a62d4692898 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4580,6 +4580,7 @@
     SUBDIR += py-azure-mgmt-trafficmanager
     SUBDIR += py-azure-mgmt-web
     SUBDIR += py-azure-monitor-opentelemetry
+    SUBDIR += py-azure-monitor-opentelemetry-exporter
     SUBDIR += py-azure-monitor-query
     SUBDIR += py-azure-multiapi-storage
     SUBDIR += py-azure-storage-blob
diff --git a/devel/py-azure-monitor-opentelemetry-exporter/Makefile b/devel/py-azure-monitor-opentelemetry-exporter/Makefile
new file mode 100644
index 000000000000..17e64a7e0bc1
--- /dev/null
+++ b/devel/py-azure-monitor-opentelemetry-exporter/Makefile
@@ -0,0 +1,30 @@
+PORTNAME=	azure-monitor-opentelemetry-exporter
+PORTVERSION=	1.0.0b48
+CATEGORIES=	devel python
+MASTER_SITES=	PYPI
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	azure_monitor_opentelemetry_exporter-${PORTVERSION}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Microsoft Azure Monitor Opentelemetry Exporter Client Library for Python
+WWW=		https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry-exporter \
+		https://github.com/Azure/azure-sdk-for-python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}azure-core>=1.28.0<2.0.0:devel/py-azure-core@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}azure-identity>=1.17<2:devel/py-azure-identity@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}msrest>=0.6.10:net-mgmt/py-msrest@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}opentelemetry-api>=1.39:devel/py-opentelemetry-api@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}opentelemetry-sdk>=1.39:devel/py-opentelemetry-sdk@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}psutil>=5.9<8:sysutils/py-psutil@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent pep517
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-azure-monitor-opentelemetry-exporter/distinfo b/devel/py-azure-monitor-opentelemetry-exporter/distinfo
new file mode 100644
index 000000000000..6df7a32f1a31
--- /dev/null
+++ b/devel/py-azure-monitor-opentelemetry-exporter/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1773966664
+SHA256 (azure_monitor_opentelemetry_exporter-1.0.0b48.tar.gz) = 5773def013e508efffa55a17768409be4b2ba369724766a89775fdc0101cc4c1
+SIZE (azure_monitor_opentelemetry_exporter-1.0.0b48.tar.gz) = 280538
diff --git a/devel/py-azure-monitor-opentelemetry-exporter/pkg-descr b/devel/py-azure-monitor-opentelemetry-exporter/pkg-descr
new file mode 100644
index 000000000000..fdc143e37729
--- /dev/null
+++ b/devel/py-azure-monitor-opentelemetry-exporter/pkg-descr
@@ -0,0 +1,11 @@
+The exporter for Azure Monitor allows Python applications to export data from
+the OpenTelemetry SDK to Azure Monitor. The exporter is intended for users who
+require advanced configuration or have more complicated telemetry needs that
+require all of distributed tracing, logging and metrics. If you have simpler
+configuration requirements, we recommend using the Azure Monitor OpenTelemetry
+Distro instead for a simpler one-line setup.
+
+Prior to using this SDK, please read and understand Data Collection Basics,
+especially the section on telemetry types. OpenTelemetry terminology differs
+from Application Insights terminology so it is important to understand the way
+the telemetry types map to each other.


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69d29a93.1d9ad.22946a>