GNU bug report logs -
#34613
[PATCH] gnu: Add prometheus.
Previous Next
Reported by: Gábor Boskovits <boskovits <at> gmail.com>
Date: Fri, 22 Feb 2019 11:47:01 UTC
Severity: normal
Tags: moreinfo, patch
Done: zimoun <zimon.toutoune <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#34613: [PATCH] gnu: Add prometheus.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 34613 <at> debbugs.gnu.org.
--
34613: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34613
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi,
On Sat, 08 Oct 2022 at 16:42, zimoun <zimon.toutoune <at> gmail.com> wrote:
> On Thu, 07 Apr 2022 at 14:29, zimoun <zimon.toutoune <at> gmail.com> wrote:
>
>> What is the status of this old patch#34613:
>>
>> <http://issues.guix.gnu.org/issue/34613>
>
>> Because the Go ecosystem changed a bit since the submission, do we merge
>> this patch? Especially in the light of:
>>
>> There are some problems with it however:
>>
>> The tarball has a vendor directory, containing sources of third party
>> go stuff. How do we deal with that?
>> (Should we package the stuff there, and link the sources into the tree?)
>>
>>
>> <https://issues.guix.gnu.org/issue/34613#1>
>>
>> Well, I propose to drop this submission since the last interaction is
>> from 3 years, 2 weeks, 6 days ago and then start a fresh one. WDYT?
>
> The patch is marked moreinfo since 23 Jun 2022 (15 weeks, 2 days, 6
> hours ago) and dormant since years.
>
> If no objection, I will close it soon.
Gábor sent me offlist that they agree to close because the problematic
part is non-free ui components. And since no one seems aware of a fix,
closing.
Feel free to reopen if I am missing a point or if someone is currently
revisiting the issue.
Cheers,
simon
[Message part 3 (message/rfc822, inline)]
* gnu/packages/monitoring.scm
(go-github-com-prometheus-prometheus-cmd-prometheus): New variable.
---
gnu/packages/monitoring.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index 4384406227..0fd6b9e49b 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -447,3 +447,27 @@ written in Go with pluggable metric collectors.")
(description "This package provides a file system monitor.")
(home-page "https://github.com/emcrisostomo/fswatch")
(license license:gpl3+)))
+
+(define-public go-github-com-prometheus-prometheud-cmd-prometheus
+ (package
+ (name "go-github-com-prometheus-prometheus-cmd-prometheus")
+ (version "2.7.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/prometheus/prometheus.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08nd88m162bw5612cvw5fl028l2n9jy1v4w2a8cyd0dj4lxs5d98"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/prometheus/prometheus/cmd/prometheus"
+ #:unpack-path "github.com/prometheus/prometheus"))
+ (synopsis "Monitoring system & time series database")
+ (description "Prometheus is an open-source monitoring system with a
+dimensional data model, flexible query language, efficient time series database
+and modern alerting approach.")
+ (home-page "https://github.com/prometheus/node_exporter")
+ (license license:asl2.0)))
--
2.20.1
This bug report was last modified 2 years and 276 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.