Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multiple updates #2

Merged
merged 8 commits into from Sep 27, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions Changes
@@ -0,0 +1,12 @@
Revision history for Mojolicious-Plugin-ServerStatus

0.03 2015-04-30
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iakuf please update this date whenever you make the release to CPAN :)

- improved documentation
- updated dist meta information
- removed unneeded dependencies

0.02 2014-03-19
- improved query string handling
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I got this from MetaCPAN's diff tool. Please change it if I got it wrong :)


0.01 2014-03-19
- initial release
6 changes: 6 additions & 0 deletions MANIFEST
@@ -0,0 +1,6 @@
lib/Mojolicious/Plugin/ServerStatus.pm
Makefile.PL
MANIFEST This list of files
README.md
Changes
t/00_compile.t
42 changes: 42 additions & 0 deletions Makefile.PL
@@ -0,0 +1,42 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Mojolicious::Plugin::ServerStatus',
AUTHOR => 'fu kai <iakuf@163.com>',
EXE_FILES => [],
PL_FILES => {},
LICENSE => 'perl',
DISTNAME => 'Mojolicious-Plugin-ServerStatus',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/ServerStatus.pm',
VERSION_FROM => 'lib/Mojolicious/Plugin/ServerStatus.pm',
($ExtUtils::MakeMaker::VERSION > 6.48
? (MIN_PERL_VERSION => 5.010001) # mojolicious
: ()
),
PREREQ_PM => {
'Mojolicious' => '4.90',
'Net::CIDR::Lite' => 0,
'Parallel::Scoreboard' => '0.03',
'JSON' => '2.53',
'Fcntl' => 0,
'IO::Handle' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0.90,
},
META_MERGE => {
requires => { perl => '5.010001' }, # mojolicious
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'https://github.com/iakuf/mojolicious-plugin-serverstatus',
bugtracker => 'https://github.com/iakuf/mojolicious-plugin-serverstatus/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mojolicious-Plugin-ServerStatus-*' },
#test => {
# TESTS => 't/*.t',
#},
);
70 changes: 67 additions & 3 deletions README.md
@@ -1,4 +1,68 @@
mojolicious-plugin-serverstatus
===============================
Mojolicious::Plugin::ServerStatus
---------------------------------

This is a [Mojolicious](http://mojolicio.us) plugin to show server status, like Apache's
mod\_status. It displays server status information
in multiprocess Mojolicious servers such as morbo and hypnotoad.

It is based on [Plack::Middleware::ServerStatus::Lite](https://metacpan.org/pod/Plack::Middleware::ServerStatus::Lite).

This module changes status only before and after executing the applications,
so it cannot monitor keepalive session and network I/O wait.

#### Installation ####

cpanm Mojolicious::Plugin::ServerStatus

or manually:

perl Makefile.PL
make test
make install

#### Synopsis ####

```perl
plugin 'ServerStatus' => {
path => '/server-status',
allow => [ '127.0.0.1', '192.168.0.0/16' ],
};
```


% curl http://server:port/server-status
Uptime: 1234567789
Total Accesses: 123
BusyWorkers: 2
IdleWorkers: 3
--
pid status remote_addr host method uri protocol ss
20060 A 127.0.0.1 localhost:10001 GET / HTTP/1.1 1
20061 .
20062 A 127.0.0.1 localhost:10001 GET /server-status HTTP/1.1 0
20063 .
20064 .

# JSON format
% curl http://server:port/server-status?json
{"Uptime":"1332476669","BusyWorkers":"2",
"stats":[
{"protocol":null,"remote_addr":null,"pid":"78639",
"status":".","method":null,"uri":null,"host":null,"ss":null},
{"protocol":"HTTP/1.1","remote_addr":"127.0.0.1","pid":"78640",
"status":"A","method":"GET","uri":"/","host":"localhost:10226","ss":0},
...
],"IdleWorkers":"3"}


For extra information, please refer to [the full documentation for Mojolicious::Plugin::ServerStatus](https://metacpan.org/pod/Mojolicious::Plugin::ServerStatus) on CPAN.

#### Author ####

fu kai (iakuf {at} 163.com)

#### License ####

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

mojolicious-plugin-serverstatus