├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## MAC OS 2 | .DS_Store 3 | 4 | ## TEXTMATE 5 | *.tmproj 6 | tmtags 7 | 8 | ## EMACS 9 | *~ 10 | \#* 11 | .\#* 12 | 13 | ## VIM 14 | *.swp 15 | 16 | ## RUBYMINE 17 | .idea/ 18 | 19 | ## CTAGS 20 | tags 21 | TAGS 22 | 23 | ## PROJECT::GENERAL 24 | coverage 25 | rdoc 26 | docs/ 27 | pkg 28 | log 29 | Gemfile.lock 30 | 31 | ## PROJECT::SPECIFIC 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Archived header](https://github.com/newrelic/open-source-office/raw/master/examples/categories/images/Archived.png)](https://github.com/newrelic/open-source-office/blob/master/examples/categories/index.md#archived) 2 | 3 | # rpm_contrib is deprecated 4 | 5 | Please see [extends_newrelic_rpm](https://github.com/newrelic/extends_newrelic_rpm) for a list of custom, third party instrumentation for New Relic. 6 | --------------------------------------------------------------------------------