]> arthur.barton.de Git - netdata.git/commitdiff
lowered the log file history to 2000 entries
authorCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Oct 2016 08:17:22 +0000 (11:17 +0300)
committerCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Oct 2016 08:17:22 +0000 (11:17 +0300)
src/health.c

index e79ce95a39dc0e5cb6a3961b4ae6d1543a4bed01..5c458baf480265e62f8a9a1450f37f28bd8c9bb0 100644 (file)
@@ -51,7 +51,7 @@ static inline void health_log_rotate(void) {
     static size_t rotate_every = 0;
 
     if(unlikely(rotate_every == 0)) {
-        rotate_every = (size_t)config_get_number("health", "rotate log every lines", 10000);
+        rotate_every = (size_t)config_get_number("health", "rotate log every lines", 2000);
         if(rotate_every < 100) rotate_every = 100;
     }