mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
netdata: 1.45.4 -> 1.46.1
This commit is contained in:
parent
741f201bee
commit
cba1e458a8
4 changed files with 53 additions and 17 deletions
|
@ -247,7 +247,8 @@ in {
|
||||||
++ lib.optional cfg.python.enable (pkgs.python3.withPackages cfg.python.extraPackages)
|
++ lib.optional cfg.python.enable (pkgs.python3.withPackages cfg.python.extraPackages)
|
||||||
++ lib.optional config.virtualisation.libvirtd.enable config.virtualisation.libvirtd.package
|
++ lib.optional config.virtualisation.libvirtd.enable config.virtualisation.libvirtd.package
|
||||||
++ lib.optional config.virtualisation.docker.enable config.virtualisation.docker.package
|
++ lib.optional config.virtualisation.docker.enable config.virtualisation.docker.package
|
||||||
++ lib.optionals config.virtualisation.podman.enable [ pkgs.jq config.virtualisation.podman.package ];
|
++ lib.optionals config.virtualisation.podman.enable [ pkgs.jq config.virtualisation.podman.package ]
|
||||||
|
++ lib.optional config.boot.zfs.enabled config.boot.zfs.package;
|
||||||
environment = {
|
environment = {
|
||||||
PYTHONPATH = "${cfg.package}/libexec/netdata/python.d/python_modules";
|
PYTHONPATH = "${cfg.package}/libexec/netdata/python.d/python_modules";
|
||||||
NETDATA_PIPENAME = "/run/netdata/ipc";
|
NETDATA_PIPENAME = "/run/netdata/ipc";
|
||||||
|
|
25
pkgs/tools/system/netdata/dashboard-v2-removal.patch
Normal file
25
pkgs/tools/system/netdata/dashboard-v2-removal.patch
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Original: https://github.com/netdata/netdata/pull/17240
|
||||||
|
|
||||||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index f37cbd18a..6db4c9f52 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -134,6 +134,7 @@ mark_as_advanced(DEFAULT_FEATURE_STATE)
|
||||||
|
# High-level features
|
||||||
|
option(ENABLE_ACLK "Enable Netdata Cloud support (ACLK)" ${DEFAULT_FEATURE_STATE})
|
||||||
|
option(ENABLE_CLOUD "Enable Netdata Cloud by default at runtime" ${DEFAULT_FEATURE_STATE})
|
||||||
|
+option(ENABLE_DASHBOARD_V2 "enable dashboard v2" True)
|
||||||
|
option(ENABLE_ML "Enable machine learning features" ${DEFAULT_FEATURE_STATE})
|
||||||
|
option(ENABLE_DBENGINE "Enable dbengine metrics storage" True)
|
||||||
|
|
||||||
|
@@ -2946,7 +2947,9 @@ endif()
|
||||||
|
#
|
||||||
|
|
||||||
|
include(src/web/gui/v1/dashboard_v1.cmake)
|
||||||
|
-include(src/web/gui/v2/dashboard_v2.cmake)
|
||||||
|
+if(ENABLE_DASHBOARD_V2)
|
||||||
|
+ include(src/web/gui/v2/dashboard_v2.cmake)
|
||||||
|
+endif()
|
||||||
|
include(src/web/gui/gui.cmake)
|
||||||
|
|
||||||
|
function(cat IN_FILE OUT_FILE)
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, makeWrapper
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, makeWrapper
|
||||||
, CoreFoundation, IOKit, libossp_uuid
|
, CoreFoundation, IOKit, libossp_uuid
|
||||||
, nixosTests
|
, nixosTests
|
||||||
, bash, curl, jemalloc, json_c, libuv, zlib, libyaml, libelf, libbpf
|
, bash, curl, jemalloc, json_c, libuv, zlib, libyaml, libelf, libbpf
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.45.4";
|
version = "1.46.1";
|
||||||
pname = "netdata";
|
pname = "netdata";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -28,9 +28,9 @@ stdenv.mkDerivation rec {
|
||||||
repo = "netdata";
|
repo = "netdata";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = if withCloudUi
|
hash = if withCloudUi
|
||||||
then "sha256-g/wxKtpNsDw/ZaUokdip39enQHMysJE6pYGsApuL4po="
|
then "sha256-tFjczhJ7bIEUDZx3MxYBu4tGkJhoQn5V79D4sLV2o8U="
|
||||||
# we delete the v2 GUI after fetching
|
# we delete the v2 GUI after fetching
|
||||||
else "sha256-Mkrmvdr19sWzFOkdpt46mcsbA3CNpXy4w8um95xaWlo=";
|
else "sha256-uW3jRiJjFIFSfmmavM3KVF985F8nMKa+lQAgNBZvKyE=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
|
|
||||||
# Remove v2 dashboard distributed under NCUL1. Make sure an empty
|
# Remove v2 dashboard distributed under NCUL1. Make sure an empty
|
||||||
|
@ -60,18 +60,12 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optionals withSsl [ openssl ];
|
++ lib.optionals withSsl [ openssl ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
# Allow ndsudo to use non-hardcoded `PATH`
|
||||||
|
# See https://github.com/netdata/netdata/pull/17377#issuecomment-2183017868
|
||||||
|
# https://github.com/netdata/netdata/security/advisories/GHSA-pmhq-4cxq-wj93
|
||||||
|
./ndsudo-fix-path.patch
|
||||||
# Allow building without non-free v2 dashboard.
|
# Allow building without non-free v2 dashboard.
|
||||||
(fetchpatch {
|
./dashboard-v2-removal.patch
|
||||||
url = "https://github.com/netdata/netdata/pull/17240/commits/b108df72281633234b731b223d99ec99f1d36adf.patch";
|
|
||||||
hash = "sha256-tgsnbNY0pxFU3bz1J1qPaAeVsozsk2bpHV2mNy8A9is=";
|
|
||||||
})
|
|
||||||
# Allow for go.d plugins to access the right directory.
|
|
||||||
# Can be removed once > v1.45.4 is released
|
|
||||||
# https://github.com/netdata/netdata/pull/17661
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://patch-diff.githubusercontent.com/raw/netdata/netdata/pull/17661.patch";
|
|
||||||
sha256 = "sha256-j+mrwkibQio2KO8UnV7sxzCoHmkcsalHNzP+YvrRz74=";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Guard against unused buld-time development inputs in closure. Without
|
# Guard against unused buld-time development inputs in closure. Without
|
||||||
|
@ -186,7 +180,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
sourceRoot = "${src.name}/src/go/collectors/go.d.plugin";
|
sourceRoot = "${src.name}/src/go/collectors/go.d.plugin";
|
||||||
|
|
||||||
vendorHash = "sha256-KO+xMk6fpZCYRyxxKrsGfOHJ2bwjBaSmkgz1jIUHaZs=";
|
vendorHash = "sha256-fK6pboXgJom77iakb+CJvNuweQjLIrpS7suWRNY/KM4=";
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
proxyVendor = true;
|
proxyVendor = true;
|
||||||
|
|
||||||
|
|
16
pkgs/tools/system/netdata/ndsudo-fix-path.patch
Normal file
16
pkgs/tools/system/netdata/ndsudo-fix-path.patch
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# See https://github.com/netdata/netdata/pull/17377#issuecomment-2183017868
|
||||||
|
# https://github.com/netdata/netdata/security/advisories/GHSA-pmhq-4cxq-wj93
|
||||||
|
|
||||||
|
diff --git a/src/collectors/plugins.d/ndsudo.c b/src/collectors/plugins.d/ndsudo.c
|
||||||
|
index 8b4d76f46..68fa52d38 100644
|
||||||
|
--- a/src/collectors/plugins.d/ndsudo.c
|
||||||
|
+++ b/src/collectors/plugins.d/ndsudo.c
|
||||||
|
@@ -357,9 +357,6 @@ int main(int argc, char *argv[]) {
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
- char new_path[] = "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin";
|
||||||
|
- putenv(new_path);
|
||||||
|
-
|
||||||
|
bool found = false;
|
||||||
|
char filename[FILENAME_MAX];
|
Loading…
Add table
Add a link
Reference in a new issue