.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. # Secrets
  2. gcs-credentials.json
  3. .deps
  4. .libs
  5. .dirstamp
  6. .project
  7. .pydevproject
  8. # local dev outputs
  9. dist/
  10. *.o
  11. *.a
  12. config.h.in
  13. Makefile.in
  14. *~
  15. .*.swp
  16. *.old
  17. *.log
  18. !src/collectors/log2journal/tests.d/*.log
  19. *.pyc
  20. netdata.spec
  21. sha256sums.txt
  22. upload/
  23. artifacts/
  24. ebpf.plugin
  25. src/collectors/ebpf.plugin/reset_netdata_trace.sh
  26. !ebpf.plugin/
  27. src/libnetdata/ebpf/includes/
  28. # protoc generated files
  29. *.pb.cc
  30. *.pb.h
  31. # installation artifacts
  32. packaging/installer/.environment.sh
  33. *.tar.*
  34. *.run
  35. # netdata makeself downloads
  36. packaging/makeself/tmp/
  37. # coverity
  38. cov-int/
  39. netdata-coverity-analysis.tgz
  40. .coverity-scan.conf
  41. .cproject/
  42. .idea/
  43. .vscode/*
  44. !.vscode/settings.default.json
  45. .project/
  46. .settings/
  47. README
  48. TODO.md
  49. TODO.txt
  50. src/web/gui/chart-info/
  51. src/web/gui/control.html
  52. src/web/gui/dashboard.js
  53. src/web/gui/datasource.css
  54. src/web/gui/gadget.xml
  55. src/web/gui/index_new.html
  56. src/web/gui/version.txt
  57. # related to karma/javascript/node
  58. /node_modules/
  59. /coverage/
  60. system/install-service.sh
  61. system/netdata.logrotate
  62. system/cron/netdata-updater-daily
  63. system/freebsd/rc.d/netdata
  64. system/initd/init.d/netdata
  65. system/launchd/netdata.plist
  66. system/lsb/init.d/netdata
  67. system/openrc/init.d/netdata
  68. system/runit/run
  69. system/systemd/netdata.service
  70. system/systemd/netdata.service.*
  71. system/systemd/netdata-updater.service
  72. !system/systemd/netdata.service.in
  73. !system/systemd/netdata.service.*.in
  74. src/health/notifications/alarm-notify.sh
  75. claim/netdata-claim.sh
  76. src/collectors/cgroups.plugin/cgroup-name.sh
  77. src/collectors/cgroups.plugin/cgroup-network-helper.sh
  78. src/collectors/tc.plugin/tc-qos-helper.sh
  79. src/collectors/charts.d.plugin/charts.d.plugin
  80. src/collectors/python.d.plugin/python.d.plugin
  81. src/collectors/ioping.plugin/ioping.plugin
  82. src/collectors/go.d.plugin
  83. src/web/netdata-switch-dashboard.sh
  84. src/logsmanagement/stress_test/stress_test
  85. # installer generated files
  86. /netdata-uninstaller.sh
  87. /netdata-updater.sh
  88. # cmake files
  89. cmake-build-debug/
  90. cmake-build-release/
  91. CMakeCache.txt
  92. CMakeFiles/
  93. cmake_install.cmake
  94. .cmake
  95. compile_commands.json
  96. # jetbrains IDE
  97. .jetbrains*
  98. .DS_Store
  99. webcopylocal*
  100. # converted diagrams
  101. diagrams/*.png
  102. diagrams/*.svg
  103. diagrams/*.atxt
  104. diagrams/plantuml.jar
  105. # python virtual environment
  106. venv/
  107. # debugging / profiling
  108. makeself/debug/
  109. tests/profile/benchmark-dictionary
  110. tests/profile/benchmark-registry
  111. tests/profile/test-eval
  112. tests/profile/benchmark-line-parsing
  113. tests/profile/benchmark-procfile-parser
  114. tests/profile/benchmark-value-pairs
  115. tests/profile/statsd-stress
  116. tests/health_mgmtapi/health-cmdapi-test.sh
  117. oprofile_data/
  118. vgcore.*
  119. callgrind.out.*
  120. gmon.out
  121. gmon.txt
  122. sitespeed-result/
  123. tests/acls/acl.sh
  124. tests/urls/request.sh
  125. tests/alarm_repetition/alarm.sh
  126. tests/template_dimension/template_dim.sh
  127. tests/ebpf/ebpf_thread_function.sh
  128. aclk/legacy/tests/install-fake-charts.d.sh
  129. # tests and temp files
  130. test-driver
  131. **/tests/*_testdriver
  132. **/tests/*_testdriver.trs
  133. python.d/python-modules-installer.sh
  134. # documentation generated files
  135. docs/generator/src
  136. docs/generator/build
  137. docs/generator/doc
  138. docs/generator/localization
  139. docs/generator/mkdocs.yml
  140. .environment.sh
  141. #CLion files
  142. netdata.cbp
  143. # External dependencies
  144. externaldeps/
  145. # vim sessions
  146. Session.vim
  147. Session.*.vim
  148. # clangd cache
  149. .cache/
  150. # Special exceptions
  151. !packaging/repoconfig/Makefile
  152. # Jupyter notebook checkpoints
  153. .ipynb_checkpoints
  154. # gorilla benchmark & fuzz binaries
  155. src/libnetdata/gorilla/gorilla_benchmark
  156. src/libnetdata/gorilla/gorilla_fuzzer
  157. src/libnetdata/gorilla/fuzz-*.log
  158. # ignore build/ directory (default dir for many IDEs/LSPs)
  159. build/