graphite-nginx-module icon indicating copy to clipboard operation
graphite-nginx-module copied to clipboard

An nginx module for collecting stats into Graphite

Results 7 graphite-nginx-module issues
Sort by recently updated
recently updated
newest added

Hello, I've noticed that this part of code breaks nginx tests ``` #if (NGX_SSL) static ngx_int_t ngx_http_graphite_ssl_session_reused(ngx_http_request_t *r, ngx_http_variable_value_t *v, uintptr_t data) { ngx_str_t s; if (r->connection->requests == 1) {...

I try this one with custom variable ` graphite_data $locationName; ` but in graphite data source there is $location too

What's the protocol of sending data over TCP to the specified host in the `graphite_config` directive ? What if I implement my own TCP server to receive the stats data...

Resolved a buffer overflow bug in ngx_http_graphite_location() when parsing uri entirely made up of underscores. The loop incorrectly traverses past the buffer's boundary: while (split->len > 0 && split->data[0] ==...

Fix heap-buffer-overflow issue that occurs during the initialization of the http {} block. It is incorrect to call ngx_http_conf_get_module_main_conf() within create_loc_conf. This is because the ctx, where the main structures...

Example config: ``` http { graphite_config ...; graphite_default_data nginx.$location; server { server_name _; # can also be ___ or @@@ ... location / { # no graphite_data directive here ......

is there a debian/ubuntu package for this? building a webserver on my own without following updates seems not to be the best solution.