Sha256: 565e7600638d4fe9fb1e6f12bdeda4d5c383df4650bd60a87fd3a92a1cbf452d

Contents?: true

Size: 553 Bytes

Versions: 4

Compression:

Stored size: 553 Bytes

Contents

# Logstash Plugin

## To install for use
```
${LS_HOME}/bin/plugin install logstash-input-proc
```

## Example Config all features enabled
```ruby
input {
    proc {
        interval=>60
        vmstats =>{ }
        loadavg =>{ }
        meminfo =>{ }
        pidstats =>{ 
            user => "root"
        }
        
    }
}

output { 
    stdout{ 
        codec=>"rubydebug"
    }
}
```
##Example Minimal

```ruby
input {
    proc {
        interval=>60
        meminfo =>{ }
    }
}

output { 
    stdout{ 
        codec=>"rubydebug"
    }
}
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
logstash-input-proc-0.3.1 quickstart.md
logstash-input-proc-0.3.0 quickstart.md
logstash-input-proc-0.2.0 quickstart.md
logstash-input-proc-0.1.2 quickstart.md