* Initial Windows CI support.
This also adds a proper set of production-focused packaging scripts
for working with building Netdata on Windows.
* Pivot to using existing tooling and fixing that up as required.
* General script cleanup.
* Auto-detect location of repository based on script location.
This makes the scripts properly independent of the current working
directory, allowing them to be more resilient to possible changes in the
build environment.
* Make dependency handling entirely separate from build.
* Remove development-only packages from dependency list.
They only waste time in CI, and it’s reasonable to assume that anybody
who needs them can install them themselves, just like we do with all
other platforms.
* Use absolute path for makensis.
This way it actually works without needing manual modification of the
environment.
* Add PowerShell scripts to invoke the build and package scripts.
* Clean up build directory handling.
* Fix fetching of msys2 installer.
* Further cleanup.
* Tidy up build output
* Provide proper output grouping in GitHub Actions.
* Use correct command name for makensis.
* Fix installer script path.
* Do not try to install MSYS2 using Chocolatey.
* Fix CPU architecture check.
* Add more detailed messages for MSYS2 install.
* Fix release fetching logic.
* Further release check logic fixes.
* Complete Windows CI support.
* Move second update pass into dependency handling script.
* Fix handling of icon for Windows installer.
* Default to using a working configuration for release builds.
And provide a way to pass extra options to CMake without needing to
modify the script.
* Fix expansion of optionally defined variable.
* initial commit for icecast port (dir only) + ipfs meta minor fix
* icecast dir edits
* nuke old icecast collector, cmakelists, readme additions, listeners and tie up loose ends
* simplify
* update go.d.conf and readme
---------
Co-authored-by: ilyam8 <ilya@netdata.cloud>
* Hold alert version history
Add health version 2
Calculate alert version and store in database
Add alert capability
Add some checks
* Add do_eval_expression
* Check point add version and point in time
* Fix version calculations
* Remove unused field
Code cleanup
* Update aclk schemas
* Add alerts in queue only if claimed
Always process pending queue
* Handle processing of alert queue for archived hosts
* Rework snapshot, update aclk-state
* Fix correct order for alert / checkpoint count
* Fix compile without cloud
* Remove unused parameter
* Skip ACLK alert processing if still initializing
* Remove extra bind (use UNIXEPOCH())
Cleanup table aliases
Add DEFINEs for alert delays
Add missing newline
* Make sure config exists
* Properly support CMake 3.30.
As of CMake 3.30, calling `FetchContent_Populate` is officially
deprecated, and you get a warning about eventual removal.
We end up calling this function to compensate for the fact that CMake
prior to 3.28 provides no other way to make an external project managed
through FetchContent available without adding it to the `all` target and
thus installing the files from it, which we need to avoid doing for our
vendored libraries.
This changes things to check for CMake 3.28 or newer, and use the
preferred method on those systems. Unfortunately, this is handled in a
different place than the old workaround needed it to be handled in, so
we need checks in multiple places to make this work.
* Bump supported CMake versions to 3.16-3.30.
The last system we supported that shipped 3.13 was Debian 10, which we
no longer support, and 3.30 is the latest version.
* spawn server reopens the log files after closing all sockets
* close all sockets only when we run an external command
* the spawn server disables all log methods except daemon and collectors