public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Reworked patches introducing node_exporter on master
@ 2021-07-24 18:56 Holger Sunke
  2021-07-24 18:56 ` [PATCH 1/3] Added x86_64 i586 aarch64 armv5tel support for GO language required for node_exporter compilation Holger Sunke
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Holger Sunke @ 2021-07-24 18:56 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2571 bytes --]

These are reworked patches on top of [master] that modify the [go] package to be downloaded
for all supported architectures and introduce the new package [node_exporter], which requires [go]
during compilation.

I also added a node_exporter_starter.sh which redirects output into a log file and does not suppress 'loadproc' status output.

These patches replace my previous patches on node_exporter and go.

--
node_exporter generally provides a number of runtime related metrics through a lightweight HTTP plain text interface that can be
scraped by time series databases in regular interval. These metrics can then be used in grapical UIs for monitoring, analyzation and alerting.
It is of use for users already monitoring their machines this way and just are about to add their ipfire nodes into the monitoring stack.

Holger Sunke (3):
  Added x86_64 i586 aarch64 armv5tel support for GO language required
    for node_exporter compilation.
  Added root files aarch64, armv5tel and i586 for 'go'
  Added new node_exporter 1.2.0 package.

 config/node_exporter/node_exporter_options |   203 +
 config/rootfiles/common/aarch64/go         | 10291 +++++++++++++++++++
 config/rootfiles/common/armv5tel/go        | 10290 ++++++++++++++++++
 config/rootfiles/common/i586/go            | 10290 ++++++++++++++++++
 config/rootfiles/packages/node_exporter    |     4 +
 lfs/Config                                 |     8 +
 lfs/go                                     |     9 +-
 lfs/node_exporter                          |    98 +
 make.sh                                    |     1 +
 src/initscripts/packages/node_exporter     |    39 +
 src/paks/node_exporter/install.sh          |    31 +
 src/paks/node_exporter/uninstall.sh        |    30 +
 src/paks/node_exporter/update.sh           |    27 +
 src/scripts/node_exporter_starter.sh       |     7 +
 14 files changed, 31325 insertions(+), 3 deletions(-)
 create mode 100644 config/node_exporter/node_exporter_options
 create mode 100644 config/rootfiles/common/aarch64/go
 create mode 100644 config/rootfiles/common/armv5tel/go
 create mode 100644 config/rootfiles/common/i586/go
 create mode 100644 config/rootfiles/packages/node_exporter
 create mode 100644 lfs/node_exporter
 create mode 100644 src/initscripts/packages/node_exporter
 create mode 100644 src/paks/node_exporter/install.sh
 create mode 100644 src/paks/node_exporter/uninstall.sh
 create mode 100644 src/paks/node_exporter/update.sh
 create mode 100644 src/scripts/node_exporter_starter.sh

-- 
2.30.2


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH 1/3] Added x86_64 i586 aarch64 armv5tel support for GO language required for node_exporter compilation.
@ 2021-07-26 19:46 Holger Sunke
  2021-07-27  9:01 ` Michael Tremer
  0 siblings, 1 reply; 10+ messages in thread
From: Holger Sunke @ 2021-07-26 19:46 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1593 bytes --]

---
 lfs/Config | 8 ++++++++
 lfs/go     | 9 ++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/lfs/Config b/lfs/Config
index 7d98e303b..06c79ed63 100644
--- a/lfs/Config
+++ b/lfs/Config
@@ -138,6 +138,14 @@ ifeq "$(BUILD_ARCH)" "aarch64"
 	GOARCH = arm64
 endif
 
+ifeq "$(BUILD_ARCH)" "armv6l"
+	GOARCH = armv6l
+endif
+
+ifeq "$(BUILD_ARCH)" "i586"
+	GOARCH = 386
+endif
+
 ###############################################################################
 # Common Macro Definitions
 ###############################################################################
diff --git a/lfs/go b/lfs/go
index 6ebb37080..487ad8486 100644
--- a/lfs/go
+++ b/lfs/go
@@ -28,10 +28,10 @@ VER        = 1.15.4
 
 THISAPP    = go-$(VER)
 DL_FILE    = go$(VER).$(GOOS)-$(GOARCH).tar.gz
-DL_FROM    = $(URL_IPFIRE)
+DL_FROM    = https://golang.org/dl/
 DIR_APP    = $(DIR_SRC)/go
 TARGET     = $(DIR_INFO)/$(THISAPP)
-SUP_ARCH   = x86_64
+SUP_ARCH   = x86_64 i586 aarch64 armv5tel
 
 ###############################################################################
 # Top-level Rules
@@ -41,7 +41,10 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 8e9d11a16f03372c82c5134278a0bd7d
+go$(VER).$(GOOS)-amd64.tar.gz_MD5 = 8e9d11a16f03372c82c5134278a0bd7d
+go$(VER).$(GOOS)-386.tar.gz_MD5 = 8d1c3539c88710273f61b0c810b7448c
+go$(VER).$(GOOS)-arm64.tar.gz_MD5 = b1846fb093f0261707bda44e158bc5be
+go$(VER).$(GOOS)-armv6l.tar.gz_MD5 = cf04e0d84de6cbb7d224be1f42a83f02
 
 install : $(TARGET)
 
-- 
2.30.2


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-07-27  9:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-24 18:56 [PATCH 0/3] Reworked patches introducing node_exporter on master Holger Sunke
2021-07-24 18:56 ` [PATCH 1/3] Added x86_64 i586 aarch64 armv5tel support for GO language required for node_exporter compilation Holger Sunke
2021-07-26 14:22   ` Michael Tremer
2021-07-24 18:56 ` [PATCH 3/3] Added new node_exporter 1.2.0 package Holger Sunke
2021-07-26 15:26   ` Michael Tremer
2021-07-26 19:27     ` Holger Sunke
2021-07-27  9:00       ` Michael Tremer
2021-07-26 14:20 ` [PATCH 0/3] Reworked patches introducing node_exporter on master Michael Tremer
2021-07-26 19:46 [PATCH 1/3] Added x86_64 i586 aarch64 armv5tel support for GO language required for node_exporter compilation Holger Sunke
2021-07-27  9:01 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox