Code Monkey home page Code Monkey logo

filebeat's Introduction

Filebeat

Filebeat harvest file logs by line and send to output. Only Linux is supported.

Features:

  • Harvest from last offset.
  • Automatically discover new log files.
  • Harvest until file is deleted or moved.
  • Donot depend on file path. If a file has been moved or recreated, harvest will not be affected.

Config

Config is a json file.

{
    "input": [
        "/var/log/nginx/*.log"
    ],
    "output": {
        "type": "udp",
        "settings": {
            "address": ""
        }
    },
    "filter": {
        "type": "regex",
        "settings": {
            "pattern": ""
        }
    },
    "harvest_inteval": 1,
    "dump_inteval": 30,
    "discover": true
}
  • input: Input file paths, support glob.
  • output: Support only udp address now.
  • filter: Mismatched lines are discarded.
    • regex: match by regex.
    "filter": {
        "type": "regex",
        "settings": {
            "pattern": ""
        }
    }
    • in/notin: match by word in/notin line.
    "filter": {
        "type": "in",
        "settings": {
            "word": ""
        }
    }
  • harvest_inteval: Harvest interval, default 1 seconds.
  • dump_inteval: Interval of dump offset to file, default 30 seconds.
  • discover: Auto discover log files matched by glob, default true.

Usage

-c string
    config file (default "config.json")

filebeat's People

Contributors

justlovediaodiao avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.