summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-12-10 22:29:25 -0500
committerGitHub <noreply@github.com>2020-12-10 22:29:25 -0500
commitfd003f84da5582327a9d34ce82b01d2b3b5bf353 (patch)
treec7e29d956b3f4ac311befa480d63db81cfa2f01d /.gitignore
parent030f4ddd6a9b48050215f5513883fa0d4f167c47 (diff)
bug: Fix some performance regressions (#344)
Fixes some performance regressions and forgotten cleanup. Changes to attempt to improve performance to match 0.4.x: - Remove `trace!` and `--debug` for now. These were a significant hog. Removing this dropped initial memory usage by about half. - Add additional cleaning step for `pid_mapping` during process harvesting. This should hopefully improve memory usage as time goes on. - Slightly change how we do sorting to hopefully be a bit more optimal? This was just an easy change to make that I spotted. - Fix broken cleaning child thread task.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore10
1 files changed, 9 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 5a2a9a98..a0196a55 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,13 +5,21 @@
# These are backup files generated by rustfmt
**/*.rs.bk
-# Stuff to really ignore
+# Logging
*.log
+
+# Flamegraph stuff
rust-unmangle
*.svg
*.data
+
+# IntelliJ
.idea/
+# Heaptrack files
+*.zst
+
+# For testing
sample_configs/testing.toml
# Wix