Skip to content

Varnish jemalloc statistics vmod

License

Unlicense, Unknown licenses found

Licenses found

Unlicense
LICENSE
Unknown
COPYING
Notifications You must be signed in to change notification settings

rezan/libvmod-jemalloc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vmod_jemalloc

Varnish jemalloc VMOD

Date: 2016-03-29
Version: 1.1
Manual section:3

SYNOPSIS

import jemalloc;

DESCRIPTION

Get internal jemalloc statistics

FUNCTIONS

print_stats

Prototype
print_stats(STRING options = "a")
Return value
VOID
Description
Prints jemalloc stats to varnishlog. Supports optional jemalloc print options. Default option omits per arena stats ("a").
Example
jemalloc.print_stats();

get_stats

Prototype
get_stats(STRING options = "a")
Return value
STRING
Description
Gets jemalloc stats as a STRING (not header safe, requires ~50k workspace). Supports optional jemalloc print options.
Example
synthetic(jemalloc.get_stats(options = ""));

USAGE EXAMPLE

In your VCL you could then use this vmod along the following lines:

import jemalloc;

sub vcl_recv {
        if(req.url == "/jemalloc") {
                return (synth(200, "JEMALLOC"));
        }
}

sub vcl_synth {
        set resp.http.Content-Type = "text/plain; charset=utf-8";
        synthetic(jemalloc.get_stats());
        return (deliver);
}

sub vcl_deliver {
        if (req.http.jemalloc) {
                jemalloc.print_stats();
        }
}

About

Varnish jemalloc statistics vmod

Resources

License

Unlicense, Unknown licenses found

Licenses found

Unlicense
LICENSE
Unknown
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published