We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a96b739 commit ac1edd4Copy full SHA for ac1edd4
2 files changed
README.md
@@ -377,6 +377,7 @@ Or just `./run.sh &` which is recommended.
377
- Add IPC and TCP support
378
- Add json support
379
- PID reuse detection (validate process start time to prevent false positives when PIDs are recycled)
380
+- Configurable timeouts (resource sampling interval, stats write interval, process termination timeout)
381
382
## :snowman: Author
383
Eray Öztürk ([@diffstorm](https://github.com/diffstorm))
src/stats.c
@@ -29,7 +29,7 @@
29
#include <unistd.h>
30
31
#define STATS_MAGIC ((uint32_t)0xA50FAA55)
32
-#define MAX_FILENAME_LENGTH MAX_APP_NAME_LENGTH
+#define MAX_FILENAME_LENGTH (MAX_APP_NAME_LENGTH + 16) // "stats_" + name + ".log" + null
33
34
/**
35
@brief Structure that holds data for each application.
0 commit comments