From be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:57:58 +0200 Subject: Adding upstream version 1.44.3. Signed-off-by: Daniel Baumann --- .gitignore | 258 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 258 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..a53025c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,258 @@ +# Secrets +gcs-credentials.json + +.deps +.libs +.dirstamp +.project +.pydevproject + +# local dev outputs +dist/ + +*.o +*.a +config.h.in +Makefile.in +*~ +.*.swp +*.old +*.log +!collectors/log2journal/tests.d/*.log +*.pyc + +Makefile +aclocal.m4 +autom4te.cache +compile +config.guess +config.h +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +missing +stamp-h1 +netdata.spec +sha256sums.txt + +# netdata binaries +netdata +netdatacli +systemd-cat-native +log2journal +!log2journal/ +!netdata/ +upload/ +artifacts/ + +apps.plugin +!apps.plugin/ + +freeipmi.plugin +!freeipmi.plugin/ + +cups.plugin +!cups.plugin/ + +nfacct.plugin +!nfacct.plugin/ + +xenstat.plugin +!xenstat.plugin/ + +perf.plugin +!perf.plugin/ + +slabinfo.plugin +!slabinfo.plugin/ + +cgroup-network +!cgroup-network/ + +local-listeners +!local-listeners/ + +ebpf.plugin +collectors/ebpf.plugin/reset_netdata_trace.sh +!ebpf.plugin/ +collectors/ebpf.plugin/includes/ + +debugfs.plugin +!debugfs.plugin/ + +systemd-journal.plugin +!systemd-journal.plugin/ + +logs-management.plugin +!logs-management.plugin/ + +# protoc generated files +*.pb.cc +*.pb.h + +# installation artifacts +packaging/installer/.environment.sh +*.tar.* +*.run + +# netdata makeself downloads +packaging/makeself/tmp/ + +# coverity +cov-int/ +netdata-coverity-analysis.tgz +.coverity-scan.conf + +.cproject/ +.idea/ +.vscode/* +!.vscode/settings.default.json +.project/ +.settings/ +README +TODO.md +TODO.txt + +web/gui/chart-info/ +web/gui/control.html +web/gui/dashboard.js +web/gui/datasource.css +web/gui/gadget.xml +web/gui/index_new.html +web/gui/version.txt + +# related to karma/javascript/node +/node_modules/ +/coverage/ + +system/install-service.sh +system/netdata.logrotate +system/cron/netdata-updater-daily +system/freebsd/rc.d/netdata +system/initd/init.d/netdata +system/launchd/netdata.plist +system/lsb/init.d/netdata +system/openrc/init.d/netdata +system/runit/run +system/systemd/netdata.service +system/systemd/netdata.service.* +system/systemd/netdata-updater.service +!system/systemd/netdata.service.in +!system/systemd/netdata.service.*.in + +daemon/anonymous-statistics.sh +daemon/get-kubernetes-labels.sh + +health/notifications/alarm-notify.sh +claim/netdata-claim.sh +collectors/cgroups.plugin/cgroup-name.sh +collectors/cgroups.plugin/cgroup-network-helper.sh +collectors/tc.plugin/tc-qos-helper.sh +collectors/charts.d.plugin/charts.d.plugin +collectors/python.d.plugin/python.d.plugin +collectors/ioping.plugin/ioping.plugin +collectors/go.d.plugin +web/netdata-switch-dashboard.sh + +logsmanagement/stress_test/stress_test + +# installer generated files +/netdata-uninstaller.sh +/netdata-updater.sh + +# cmake files +cmake-build-debug/ +cmake-build-release/ +CMakeCache.txt +CMakeFiles/ +cmake_install.cmake +.cmake +compile_commands.json + +# jetbrains IDE +.jetbrains* + +.DS_Store +webcopylocal* + +# converted diagrams +diagrams/*.png +diagrams/*.svg +diagrams/*.atxt +diagrams/plantuml.jar + +# cppcheck +cppcheck-build/ + +# python virtual environment +venv/ + +# debugging / profiling +makeself/debug/ +tests/profile/benchmark-dictionary +tests/profile/benchmark-registry +tests/profile/test-eval +tests/profile/benchmark-line-parsing +tests/profile/benchmark-procfile-parser +tests/profile/benchmark-value-pairs +tests/profile/statsd-stress +tests/health_mgmtapi/health-cmdapi-test.sh +oprofile_data/ +vgcore.* +callgrind.out.* +gmon.out +gmon.txt +sitespeed-result/ +tests/acls/acl.sh +tests/urls/request.sh +tests/alarm_repetition/alarm.sh +tests/template_dimension/template_dim.sh +tests/ebpf/ebpf_thread_function.sh +aclk/legacy/tests/install-fake-charts.d.sh + +# tests and temp files +test-driver +**/tests/*_testdriver +**/tests/*_testdriver.trs +python.d/python-modules-installer.sh + +# documentation generated files +docs/generator/src +docs/generator/build +docs/generator/doc +docs/generator/localization +docs/generator/mkdocs.yml + +.environment.sh + +#CLion files +netdata.cbp + +# External dependencies +externaldeps/ + +# vim sessions +Session.vim +Session.*.vim + +# clangd cache +.cache/ + +# Special exceptions +!packaging/repoconfig/Makefile + +# Jupyter notebook checkpoints +.ipynb_checkpoints + +# m4 generated ksys +database/engine/journalfile_v2.ksy +database/engine/journalfile_v2_virtmemb.ksy + +# gorilla benchmark & fuzz binaries +libnetdata/gorilla/gorilla_benchmark +libnetdata/gorilla/gorilla_fuzzer +libnetdata/gorilla/fuzz-*.log -- cgit v1.2.3