Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 796 Bytes

File metadata and controls

34 lines (26 loc) · 796 Bytes

mackerel-plugin-plack

Plack custom metrics plugin for mackerel.io agent.

Synopsis

mackerel-plugin-plack [-host=<host>] [-port=<port>] [-path=<path?json>] [-scheme=<http|https>]

Requirements

This plugin requires Plack::Middleware::ServerStatus::Lite > 0.07. Enable ServerStatus::Lite as below.

use Plack::Builder;
builder {
    enable "Plack::Middleware::ServerStatus::Lite",
    path => '/server-status',
    allow => [ '127.0.0.1' ],
    counter_file => '/tmp/counter_file',
    scoreboard => '/var/run/server';
    $app;
};

Example of mackerel-agent.conf

[plugin.metrics.plack]
command = "/path/to/mackerel-plugin-plack -port=8000 -path='/status?auto'"