0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-03 04:55:33 +00:00
Commit graph

714 commits

Author SHA1 Message Date
ycdtosa
15a9a0e645
Improve kickstart so it can add the netdata user/group on Synology DSM ()
* attempt to create user/group using synology CLI tools.

* Update functions.sh

fix spellcheck warning

* Update functions.sh

improve support for Synology command synogroup
so it can add user to group keeping former members

* fix bug closing if too soon

* remove redundant test

* fix shellcheck warning

* use run to run synogroup

* add DSM support to remove user/group

* silence shellcheck warning: this needs to be expanded.

* fix: the variable has to be expanded.

* fix: parameter has to be expanded.
silence shellcheck warning

* Update packaging/installer/functions.sh

---------

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2025-04-02 14:27:16 +03:00
ycdtosa
b70a62a931
kickstart.sh: add missing option --offline-install-source to USAGE ()
* kickstart.sh: add missing option --offline-install-source to USAGE

* Update packaging/installer/kickstart.sh

---------

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2025-04-01 19:18:32 +00:00
ycdtosa
4e9a9891ba
Update synology.md ()
* Update synology.md

My previous change was not correct.

Actually the kickstart install failed to create the netdata user and group, thus it has to be created manually

* update wording

---------

Co-authored-by: ilyam8 <ilya@netdata.cloud>
2025-03-31 12:05:30 +00:00
Fotis Voutsas
cecd5d8c0b
Update synology.md () 2025-03-31 10:39:31 +03:00
Ilya Mashchenko
5dfdda6cca
docs: improve Synology NAS installation documentation clarity () 2025-03-29 16:04:01 +02:00
ycdtosa
2194455aef
Update synology.md ()
some steps are required only for older versions of DSM
2025-03-29 15:11:55 +02:00
kanelatechnical
532450d162
Installation + docker, improvements ()
* Installation + docker, improvements

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Update packaging/docker/README.md

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

* Address review comments

---------

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2025-03-28 12:45:10 +02:00
kanelatechnical
50f4686133
Installation section Improvements ()
* Doc Ansible installation improved wording

* Ansible Improved Wording

* Kickstart reorganized footerless

* AWS, AZURE, K8S, Improved wording
2025-03-27 12:31:27 +02:00
kanelatechnical
2d7d34e109
Doc Linux improved order in kickstart ()
Improved order "what does kickstart do"
2025-03-26 14:53:20 +00:00
Ralph Meijer
ffe6fe8d89
Fix path to copy drop-in crontab from () 2025-03-21 20:31:16 +00:00
Austin S. Hemmelgarn
4cc357372c
Bump repoconfig version used in kickstart script to 5-1. ()
Needed to make installs work in some cases due to the rotated signing
keys.
2025-03-19 08:54:54 -04:00
Austin S. Hemmelgarn
c748b65849
Update DEB/RPM package signing key info. () 2025-03-17 11:09:53 -04:00
Ilya Mashchenko
c718bca80d
netdata-uninstaller: improve input prompt with more descriptive guidance () 2025-03-13 22:50:26 +02:00
Ilya Mashchenko
a8c738c7d7
fix updating on RPi2+ () 2025-03-13 12:36:38 +00:00
Austin S. Hemmelgarn
717df9f39f
Restructure shutdown logic used during updates. ()
- Don’t blindly trust that the service manager actually shut down the
  agent.
- Bump timeouts between each method of shutting down the agent to 30
  seconds to make it more likely that the agent actually shuts down
  before we try to shut it down a different way.
- Add logic to handle different possible locations for netdatacli pipe.
2025-03-05 19:04:17 +02:00
Ilya Mashchenko
08ae765c7c
kickstart: install native pkg on RPi2+ () 2025-03-05 14:24:58 +02:00
Costa Tsaousis
6d90975e02
change the moto and the description of netdata ()
* change the moto and the description of netdata

* Update netdata-installer.sh

* Update netdata.spec.in

* Update Packaging.cmake

* Update makeself-help-header.txt

* Update makeself-license.txt

* Update main.c

* Update netdata.service.in

* Update netdata.service.v235.in
2025-02-23 13:02:22 +02:00
Austin S. Hemmelgarn
1786e91e91
Fix native package installation on RHEL. ()
- On all RHEL versions, correctly pull the EPEL release package from
  the Fedora project, since RHEL does not include it in their repos.
- On RHEL 9 and newer, as well as clones, enable the CodeReady Builder
  repo, which is apparently required there to make EPEL work at all,
  before installing EPEL.
2025-02-19 10:11:27 -05:00
Austin S. Hemmelgarn
10815cb24a
Add LTO support in CMake build system. ()
* Add LTO support in CMake build system.

Internally, CMake calls LTO ‘Interprocedural Optimization’, and it
provides functionality for checking for support for this as well as
enabling it by default for targets. This leverages that support to
auto-detect LTO and enable it if it’s supported.

* Default to disabling LTO for Debug builds.

* Add handling for LTO to netdata installer code.

* Switch back to DISABLE_LTO as option name.

Using `ENABLE_LTO` leads to a possibility for confusion among users, as it
does behave in the most intuitive manner. Instead of ensuring that LTO
is used (and thus behaving like every other `ENABLE_*` option we have),
it allows the usage LTO if it’s supported. Thus a build with
`-DENABLE_LTO=True` may not actually be built with LTO.

By instead using `DISABLE_LTO`, the behavior matches up directly with
how most people are likely to interpret the meaning, because a build
with `-DDISABLE_LTO=True` will _never_ have LTO flags added to the
compiler/linker flags.

* Fix condition for determining default for DISABLE_LTO.

* Turn off LTO auto-detection in RPM package builds.

On pretty much all RPM platforms, the RPM build process itself will
correctly add the required compiler flags when building, so we don’t
actually need to auto-detect LTO support in CMake here.

Additionally, on at least some RPM platforms, CMake’s auto-detection
for LTO support actually breaks the build when used.

* Disable function and data sections when using LTO.

On at least some systems, `-fdata-sections` combined with LTO reliably
causes failures at link time with our code.

The final binary size on systems where the combination _works_ differs by
no more than a few KiB on average (tested on 64-bit x86 on Ubuntu 22.04,
Debian 12, Fedora 39, and Rocky Linux 9), so we’re not actually getting
almost any benefit out of using both with things as they are now, but
LTO gives us a meaasurable performance improvement that per-function and
per-data sections do not.

* Restructure in-line with current repo state.

* Disable LTO on Windows builds since it doesn’t work there.

* Fix compiler flag handling order.

* Switch LTO option name to USE_LTO for consistency with USE_MOLD.
2025-01-31 08:22:23 -05:00
Austin S. Hemmelgarn
8649e9daea
Query systemd for unit file paths on install/uninstall. ()
* Query systemd for unit file paths on install/uninstall.

This makes our installation code more portable and more concise, and
should make the uninstallation code significantly more robust.

Also includes a number of other improvements to systemd handling and
updater handling in the uninstaller that should make it much more
thorough and reliable.

* Fix issues brought up in code review, and better support old systemd versions.

* Replace sed with AWK for readability.

* Fix uninstaller loop.

* Fix unit file detection in updater code.
2025-01-16 07:58:39 -05:00
Austin S. Hemmelgarn
86ba563cc4
Revert "Update kickstart script to use new repository host." ()
Revert "Update kickstart script to use new repository host. ()"

This reverts commit 291f2b8001.
2025-01-14 18:56:30 -05:00
Austin S. Hemmelgarn
291f2b8001
Update kickstart script to use new repository host. ()
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2025-01-14 07:45:46 -05:00
Austin S. Hemmelgarn
db31a10503
Fix issues with $PATH and netdatacli detection. ()
- Account for Debian/Ubuntu still not including sbin directories in user
  $PATH.
- Report an inability to detect netdatacli location instead of trying to
  invoke an empty string when claiming.
2025-01-13 10:04:20 -05:00
Austin S. Hemmelgarn
40ab14d0d5
Assorted systemd detection fixes ()
Assorted systemd detection fixes:

- Properly scope `set -e` changes to only affect `systemctl
  is-system-running` invocation.
- Skip checking for hard-coded unit file paths. Other paths may
  technically be used for unit files instead of what we hard-code, and
  the presence or abscence of any specific unit file path _does not_
  reliably indicate the presence or abscence of systemd.
2025-01-08 08:37:42 -05:00
Austin S. Hemmelgarn
64b9f5e280
Add option to updater to report status of auto-updates on the system. ()
* Add option to updater to report status of auto-updates on the system.

* Improve systemd detection.

The _official_ way to check if a system is running systemd is to call
`systemctl is-system-running` and check the output. This adds that
checking to places where we are otherwise looking for systemd.

* Remove pointless subshell.
2025-01-08 06:37:57 -05:00
Ilya Mashchenko
13e6302728
fix(netdata-updater.sh): use explicit paths for temp dir creation () 2025-01-06 14:41:21 +02:00
Ilya Mashchenko
aa535b4317
fix(kickstart.sh): correct wrong function name in perpare_offline_install () 2025-01-06 11:50:19 +02:00
Ilya Mashchenko
080de4e4a5
build(deps): add bison and flex () 2024-12-28 18:09:13 +02:00
Ilya Mashchenko
3f1a1bd55e
fix(netdata-updater.sh): ensure tmpdir-path argument is always passed () 2024-12-27 20:08:33 +02:00
Ilya Mashchenko
cfd832964e
fix(netdata-updater.sh): remove commit_check_file directory () 2024-12-27 16:01:24 +02:00
Costa Tsaousis
5928070239
Updated copyright notices ()
* updated copyright notices everywhere (I hope)

* Update makeself.lsm

* Update coverity-scan.sh

* make all newlines be linux, not windows

* remove copyright from all files (the take it from the repo), unless it is printed to users
2024-12-20 15:25:45 +02:00
Ilya Mashchenko
c66992fdfe
disable h20 () 2024-12-16 10:20:15 +02:00
Ilya Mashchenko
96b5e8b12f
add pcre2 dev to install-requires-packages.sh ()
* add pcre2 dev to install-requires-packages.sh

* add rhel

---------

Co-authored-by: Costa Tsaousis <costa@netdata.cloud>
2024-12-15 22:01:51 +02:00
Ilya Mashchenko
d83b2cc908
fix(kickstart): netdata_avail_check on Ubuntu () 2024-12-11 12:28:14 +02:00
Austin S. Hemmelgarn
89179d3dde
Fixup URLs in package repo documentation to use index files. () 2024-12-11 08:43:57 +02:00
Ilya Mashchenko
d37130d640
Bump repository config fetched by kickstart to latest version () 2024-12-10 22:46:58 +02:00
thiagoftsm
dcbcf71743
Address installer minor issues (Windows) ()
* fix_msis2: remove unused file

* fix_msis2: Create empty directories ignored by WIX

* fix_msis2: Add nano as default editor

* fix_msis2: Add missing reference
2024-12-04 13:10:09 +02:00
Fotis Voutsas
173646d381
Edit the organize doc ()
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-11-28 13:49:34 +02:00
Fotis Voutsas
a2cbfa5290
claim -> connect in docs ()
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2024-11-22 21:25:31 +02:00
Fotis Voutsas
81b646268a
Windows doc updates ()
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2024-11-21 14:14:04 +02:00
Austin S. Hemmelgarn
bfbb27a5c5
Update documentation about our native package repos. ()
* Update documentation about our native package repos.

* Apply suggestions from code review

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>

---------

Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2024-11-21 07:00:35 -05:00
Fotis Voutsas
32a6cd38e7
Capitalize the word "Agent" ()
* Capitalize the word Agent

* yaml -> json

* fix uppercase keys

* json update
2024-11-20 15:27:03 +02:00
Fotis Voutsas
d8daa5527a
Capitalize the word "cloud" ()
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2024-11-20 11:14:52 +02:00
thiagoftsm
dea559c7d4
Update Windows Documentation ()
* update_doc: Upate user documentation with current MSI

* update_doc: Rename CLOUDLICENSE to CLOUDUILICENSE

* Update WINDOWS_INSTALLER.md

* Update UPDATE.md

* Update UNINSTALL.md

* update_doc: remove unnecessary lines

* update_doc: remove slash before arguemtn

* update

* update

* yamllint please

---------

Co-authored-by: Fotis Voutsas <fotis@netdata.cloud>
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-11-07 16:34:59 -05:00
Fotis Voutsas
a4201c88dc
Installation section simplification ()
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-11-04 11:18:34 +02:00
Fotis Voutsas
4b8a945df9
Docs: small fixes and pass on sizing Agents ()
* small fixes and pass on sizing Agents

* improvements

* grammar

* simplify innovations

* update title

---------

Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-11-01 13:45:31 +02:00
Fotis Voutsas
1e6a57adf5
uninstall docs edits ()
Co-authored-by: Ilya Mashchenko <ilya@netdata.cloud>
2024-10-31 11:09:06 +02:00
Fotis Voutsas
55aaa2e856
Update uninstallation docs and remove reinstallation page ()
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-10-31 10:50:37 +02:00
Fotis Voutsas
73f52709cf
Updating Netdata docs ()
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2024-10-30 21:57:50 +02:00
Ilya Mashchenko
fb6cf45661
fix(packaging): fix installing libcurl_dev on FreeBSD () 2024-10-22 17:54:57 +03:00