]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/logstash/templates/default/logstash.conf.erb
Tweak logstash expiry
[chef.git] / cookbooks / logstash / templates / default / logstash.conf.erb
index 7608e2b5b2555fd63a574cd5d0827c4ef56425f3..cd5a7d24ab901095d28cfe3239b57932eb815f41 100644 (file)
@@ -14,12 +14,39 @@ filter {
     date {
       match => [ "timestamp", "dd/MMM/yyyy:HH:mm:ss Z" ]
     }
+    if [agent] == "-" {
+      mutate {
+        remove_field => [ "agent" ]
+      }
+    } else {
+      useragent {
+        source => "agent"
+        target => "useragent"
+      }
+      mutate {
+        rename => { "agent" => "[useragent][raw]" }
+      }
+    }
   } else if [type] == "rails" {
     json {
       source => "message"
+      remove_field => [
+        "message",
+        "[parameters][authenticity_token]",
+        "[parameters][pass_crypt]",
+        "[parameters][pass_crypt_confirmation]",
+        "[parameters][utf8]"
+      ]
+    }
+  }
+
+  if [host] =~ /^spike-/ {
+    mutate {
+      add_tag => [ "frontend" ]
     }
+  } else if [host] =~ /^thorn-/ {
     mutate {
-      remove_field => [ "message" ]
+      add_tag => [ "backend" ]
     }
   }
 }