diff options
Diffstat (limited to 'syntax/modules/statsd.vim')
-rw-r--r-- | syntax/modules/statsd.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/syntax/modules/statsd.vim b/syntax/modules/statsd.vim new file mode 100644 index 00000000..358d0682 --- /dev/null +++ b/syntax/modules/statsd.vim @@ -0,0 +1,11 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 + +" Statsd Module <https://github.com/zebrafishlabs/nginx-statsd> +" An nginx module for sending statistics to statsd +syn keyword ngxDirectiveThirdParty statsd_server +syn keyword ngxDirectiveThirdParty statsd_sample_rate +syn keyword ngxDirectiveThirdParty statsd_count +syn keyword ngxDirectiveThirdParty statsd_timing + + +endif |