Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Prometheus exporter in HAProxy #12056

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions SPECS/haproxy/haproxy.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Summary: A fast, reliable HA, load balancing, and proxy solution.
Name: haproxy
Version: 2.9.11
Release: 1%{?dist}
Release: 2%{?dist}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kgodara912 why did we drive this through fast-track? Please target feature change PRs to 3.0-dev.

Copy link
Author

@kgodara912 kgodara912 Jan 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @jslobodzian for the review, from the workitem comment, I felt that it is required for February release, which is within a week, so raised review for fast-track. I will check with Eric once if it is fine to go with 3.0-dev.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @jslobodzian, as per Eric, it is not that rare exception to be qualified for fast-track branch. I have raised another PR 12095 on 3.0-dev branch. Thanks for your suggestion.

License: GPLv2+
Vendor: Microsoft Corporation
Distribution: Azure Linux
Expand Down Expand Up @@ -33,7 +33,7 @@ Requires: %{name} = %{version}-%{release}

%build
make %{?_smp_mflags} TARGET="linux-glibc" USE_PCRE2=1 USE_OPENSSL=1 \
USE_GETADDRINFO=1 USE_ZLIB=1 USE_SYSTEMD=1
USE_GETADDRINFO=1 USE_ZLIB=1 USE_SYSTEMD=1 USE_PROMEX=1
make %{?_smp_mflags} -C admin/systemd
sed -i s/"local\/"/""/g admin/systemd/haproxy.service
sed -i "s/\/run/\/var\/run/g" admin/systemd/haproxy.service
Expand All @@ -59,6 +59,9 @@ install -vDm644 examples/transparent_proxy.cfg %{buildroot}/%{_sysconfdir}/hapr
%{_mandir}/*

%changelog
* Thu Jan 23 2025 Kshitiz Godara <[email protected]> - 2.9.11-2
- Support for Prometheus exporter in HAProxy

* Wed Sep 25 2024 Archana Choudhary <[email protected]> - 2.9.11-1
- Upgrade to 2.9.11
- Fix CVE-2024-45506
Expand Down
Loading