.gitignore 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. *.pyc
  19. Makefile
  20. aclocal.m4
  21. autom4te.cache
  22. compile
  23. config.guess
  24. config.h
  25. config.status
  26. config.sub
  27. configure
  28. depcomp
  29. install-sh
  30. libtool
  31. ltmain.sh
  32. missing
  33. stamp-h1
  34. netdata.spec
  35. sha256sums.txt
  36. # netdata binaries
  37. netdata
  38. netdatacli
  39. !netdata/
  40. upload/
  41. artifacts/
  42. apps.plugin
  43. !apps.plugin/
  44. freeipmi.plugin
  45. !freeipmi.plugin/
  46. cups.plugin
  47. !cups.plugin/
  48. nfacct.plugin
  49. !nfacct.plugin/
  50. xenstat.plugin
  51. !xenstat.plugin/
  52. perf.plugin
  53. !perf.plugin/
  54. slabinfo.plugin
  55. !slabinfo.plugin/
  56. cgroup-network
  57. !cgroup-network/
  58. ebpf.plugin
  59. collectors/ebpf.plugin/reset_netdata_trace.sh
  60. !ebpf.plugin/
  61. collectors/ebpf.plugin/includes/
  62. # protoc generated files
  63. *.pb.cc
  64. *.pb.h
  65. # installation artifacts
  66. packaging/installer/.environment.sh
  67. *.tar.*
  68. *.run
  69. # netdata makeself downloads
  70. packaging/makeself/tmp/
  71. # Libbpf is always overwritten depending of kernel version
  72. packaging/libbpf.*
  73. # coverity
  74. cov-int/
  75. netdata-coverity-analysis.tgz
  76. .coverity-scan.conf
  77. .cproject/
  78. .idea/
  79. .vscode/
  80. .project/
  81. .settings/
  82. README
  83. TODO.md
  84. TODO.txt
  85. web/gui/chart-info/
  86. web/gui/control.html
  87. web/gui/dashboard.js
  88. web/gui/datasource.css
  89. web/gui/gadget.xml
  90. web/gui/index_new.html
  91. web/gui/version.txt
  92. # related to karma/javascript/node
  93. /node_modules/
  94. /coverage/
  95. system/netdata-lsb
  96. system/netdata-openrc
  97. system/netdata-init-d
  98. system/netdata.logrotate
  99. system/netdata.service
  100. system/netdata.service.*
  101. system/netdata-updater.service
  102. !system/netdata.service.in
  103. !system/netdata.service.*.in
  104. system/netdata.plist
  105. system/netdata-freebsd
  106. system/netdata.crontab
  107. system/install-service.sh
  108. daemon/anonymous-statistics.sh
  109. daemon/get-kubernetes-labels.sh
  110. health/notifications/alarm-notify.sh
  111. claim/netdata-claim.sh
  112. collectors/tc.plugin/tc-qos-helper.sh
  113. collectors/charts.d.plugin/charts.d.plugin
  114. collectors/python.d.plugin/python.d.plugin
  115. collectors/ioping.plugin/ioping.plugin
  116. collectors/go.d.plugin
  117. web/netdata-switch-dashboard.sh
  118. # installer generated files
  119. /netdata-uninstaller.sh
  120. /netdata-updater.sh
  121. # cmake files
  122. cmake-build-debug/
  123. cmake-build-release/
  124. CMakeCache.txt
  125. CMakeFiles/
  126. cmake_install.cmake
  127. .cmake
  128. compile_commands.json
  129. # jetbrains IDE
  130. .jetbrains*
  131. .DS_Store
  132. webcopylocal*
  133. # converted diagrams
  134. diagrams/*.png
  135. diagrams/*.svg
  136. diagrams/*.atxt
  137. diagrams/plantuml.jar
  138. # cppcheck
  139. cppcheck-build/
  140. # python virtual environment
  141. venv/
  142. # debugging / profiling
  143. makeself/debug/
  144. tests/profile/benchmark-dictionary
  145. tests/profile/benchmark-registry
  146. tests/profile/test-eval
  147. tests/profile/benchmark-line-parsing
  148. tests/profile/benchmark-procfile-parser
  149. tests/profile/benchmark-value-pairs
  150. tests/profile/statsd-stress
  151. tests/health_mgmtapi/health-cmdapi-test.sh
  152. oprofile_data/
  153. vgcore.*
  154. callgrind.out.*
  155. gmon.out
  156. gmon.txt
  157. sitespeed-result/
  158. tests/acls/acl.sh
  159. tests/urls/request.sh
  160. tests/alarm_repetition/alarm.sh
  161. tests/template_dimension/template_dim.sh
  162. aclk/legacy/tests/install-fake-charts.d.sh
  163. # tests and temp files
  164. test-driver
  165. **/tests/*_testdriver
  166. **/tests/*_testdriver.trs
  167. python.d/python-modules-installer.sh
  168. # documentation generated files
  169. docs/generator/src
  170. docs/generator/build
  171. docs/generator/doc
  172. docs/generator/localization
  173. docs/generator/mkdocs.yml
  174. .environment.sh
  175. #CLion files
  176. netdata.cbp
  177. # External dependencies
  178. externaldeps/
  179. # vim sessions
  180. Session.vim
  181. Session.*.vim
  182. # clangd cache
  183. .cache/
  184. # Special exceptions
  185. !packaging/repoconfig/Makefile
  186. # Jupyter notebook checkpoints
  187. .ipynb_checkpoints
  188. # Judy stuff
  189. JudyLTables.c
  190. judyltablesgen