2019-01-07 20:08:27 +00:00
|
|
|
# Keep editor-specific, non-project specific ignore rules in global .gitignore:
|
|
|
|
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
|
|
|
|
|
2018-05-14 16:26:38 +00:00
|
|
|
vendor
|
|
|
|
.netrc
|
2018-07-30 18:32:33 +00:00
|
|
|
.vscode
|
2018-07-24 15:02:51 +00:00
|
|
|
.vs
|
2018-08-17 21:54:14 +00:00
|
|
|
.tern-project
|
2018-11-19 19:30:26 +00:00
|
|
|
.DS_Store
|
2019-10-07 17:50:42 +00:00
|
|
|
.idea
|
2019-12-11 03:45:25 +00:00
|
|
|
.cgo_ldflags
|
2018-05-14 16:26:38 +00:00
|
|
|
|
2018-05-15 18:28:08 +00:00
|
|
|
# binary databases
|
2018-08-31 17:52:40 +00:00
|
|
|
influxd.bolt
|
2020-01-06 17:05:25 +00:00
|
|
|
*.db
|
2021-06-02 23:07:53 +00:00
|
|
|
*.sqlite
|
2018-05-15 18:28:08 +00:00
|
|
|
|
2021-07-20 19:11:46 +00:00
|
|
|
# Files generated in CI
|
|
|
|
rustup-init.sh
|
2020-10-14 21:02:44 +00:00
|
|
|
private.key
|
|
|
|
|
2021-03-16 14:45:27 +00:00
|
|
|
# TLS keys generated for testing
|
|
|
|
test.crt
|
|
|
|
test.key
|
|
|
|
|
2019-04-17 20:30:22 +00:00
|
|
|
# Project distribution
|
2018-05-22 20:42:32 +00:00
|
|
|
/dist
|
|
|
|
|
2018-05-14 16:26:38 +00:00
|
|
|
# Project binaries.
|
2018-05-24 17:34:39 +00:00
|
|
|
/influx
|
2018-08-31 17:52:40 +00:00
|
|
|
/influxd
|
2018-06-08 20:02:59 +00:00
|
|
|
/fluxd
|
2018-05-30 18:46:50 +00:00
|
|
|
/transpilerd
|
2018-08-17 21:54:14 +00:00
|
|
|
/bin
|
2022-06-16 18:48:06 +00:00
|
|
|
/internal/cmd/kvmigrate/kvmigrate
|
2018-08-17 21:54:14 +00:00
|
|
|
|
2019-02-16 00:58:20 +00:00
|
|
|
# Project tools that you might install with go build.
|
|
|
|
/editorconfig-checker
|
2019-01-31 21:43:55 +00:00
|
|
|
/staticcheck
|
2019-02-16 00:58:20 +00:00
|
|
|
|
2021-07-06 17:54:01 +00:00
|
|
|
# Generated static assets
|
|
|
|
/static/data
|
|
|
|
/static/static_gen.go
|
2021-11-16 19:38:30 +00:00
|
|
|
/changelog_artifacts
|
2019-01-22 23:22:51 +00:00
|
|
|
|
2019-01-16 01:45:38 +00:00
|
|
|
# The below files are generated with make generate
|
|
|
|
# These are used with the assests go build tag.
|
|
|
|
chronograf/canned/bin_gen.go
|
|
|
|
chronograf/dist/dist_gen.go
|
|
|
|
chronograf/server/swagger_gen.go
|
|
|
|
|
2020-07-22 15:29:22 +00:00
|
|
|
# Ignore TSM/TSI testdata binary files
|
|
|
|
tsdb/tsi1/testdata
|
|
|
|
tsdb/testdata
|
2020-07-17 15:31:29 +00:00
|
|
|
|
2019-01-07 20:08:27 +00:00
|
|
|
# The rest of the file is the .gitignore from the original influxdb repository,
|
|
|
|
# copied here to prevent mistakenly checking in any binary files
|
|
|
|
# that may be present but previously ignored if you cloned/developed before v2.
|
|
|
|
|
|
|
|
*~
|
|
|
|
|
|
|
|
config.json
|
|
|
|
/bin/
|
|
|
|
|
|
|
|
/query/a.out*
|
|
|
|
|
|
|
|
# ignore generated files.
|
|
|
|
cmd/influxd/version.go
|
|
|
|
|
|
|
|
# executables
|
|
|
|
|
|
|
|
*.test
|
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influx_tsm
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influx_tsm/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influx_stress
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influx_stress/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influxd
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influxd/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influx
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influx/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influxdb
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influxdb/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
2020-06-08 14:26:58 +00:00
|
|
|
**/influx_inspect
|
2020-06-10 14:47:26 +00:00
|
|
|
!**/influx_inspect/
|
2019-01-07 20:08:27 +00:00
|
|
|
|
|
|
|
/benchmark-tool
|
|
|
|
/main
|
|
|
|
/benchmark-storage
|
|
|
|
godef
|
|
|
|
gosym
|
|
|
|
gocode
|
|
|
|
inspect-raft
|
|
|
|
|
|
|
|
# dependencies
|
|
|
|
out_rpm/
|
|
|
|
packages/
|
|
|
|
|
|
|
|
# autconf
|
|
|
|
autom4te.cache/
|
|
|
|
config.log
|
|
|
|
config.status
|
|
|
|
|
|
|
|
# log file
|
|
|
|
influxdb.log
|
|
|
|
benchmark.log
|
|
|
|
|
|
|
|
# config file
|
|
|
|
config.toml
|
|
|
|
|
|
|
|
# test data files
|
|
|
|
integration/migration_data/
|
|
|
|
test-logs/
|
|
|
|
|
|
|
|
# man outputs
|
|
|
|
man/*.xml
|
|
|
|
man/*.1
|
|
|
|
man/*.1.gz
|
|
|
|
|
|
|
|
# test outputs
|
|
|
|
/test-results.xml
|
2019-02-19 23:47:19 +00:00
|
|
|
junit-results
|
2019-01-07 20:08:27 +00:00
|
|
|
|
|
|
|
# profile data
|
|
|
|
/prof
|
|
|
|
|
|
|
|
# vendored files
|
|
|
|
/vendor
|
2020-05-12 13:57:49 +00:00
|
|
|
|
|
|
|
# DShell Ignores
|
|
|
|
.ash_history
|
|
|
|
.bash_history
|
|
|
|
.cache/
|
|
|
|
.cargo/
|
|
|
|
.dockerignore
|
|
|
|
.influxdbv2/
|
|
|
|
.profile
|
|
|
|
.rustup/
|
|
|
|
go/
|
2020-05-26 17:14:37 +00:00
|
|
|
goreleaser-install
|