-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for Prometheus exporter in HAProxy (#12095)
Signed-off-by: Kshitiz Godara <[email protected]> Co-authored-by: Kshitiz Godara <[email protected]>
- Loading branch information
1 parent
89b6459
commit 66a5574
Showing
1 changed file
with
5 additions
and
2 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
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} | ||
License: GPLv2+ | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
@@ -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 | ||
|
@@ -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 | ||
|