gitlab-org--gitlab-foss/Gemfile.lock

964 lines
24 KiB
Plaintext
Raw Normal View History

2011-10-08 21:36:38 +00:00
GEM
remote: https://rubygems.org/
2011-10-08 21:36:38 +00:00
specs:
RedCloth (4.3.2)
ace-rails-ap (4.1.0)
actionmailer (4.2.7.1)
actionpack (= 4.2.7.1)
actionview (= 4.2.7.1)
activejob (= 4.2.7.1)
mail (~> 2.5, >= 2.5.4)
2015-11-25 16:18:44 +00:00
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.7.1)
actionview (= 4.2.7.1)
activesupport (= 4.2.7.1)
2015-11-25 16:18:44 +00:00
rack (~> 1.6)
rack-test (~> 0.6.2)
2015-11-25 16:18:44 +00:00
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.7.1)
activesupport (= 4.2.7.1)
2014-05-29 12:13:01 +00:00
builder (~> 3.1)
erubis (~> 2.7.0)
2015-11-25 16:18:44 +00:00
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (4.2.7.1)
activesupport (= 4.2.7.1)
2015-11-25 16:18:44 +00:00
globalid (>= 0.3.0)
activemodel (4.2.7.1)
activesupport (= 4.2.7.1)
2014-05-29 12:13:01 +00:00
builder (~> 3.1)
activerecord (4.2.7.1)
activemodel (= 4.2.7.1)
activesupport (= 4.2.7.1)
2015-11-25 16:18:44 +00:00
arel (~> 6.0)
activerecord_sane_schema_dumper (0.2)
rails (>= 4, < 5)
activesupport (4.2.7.1)
2015-11-25 16:18:44 +00:00
i18n (~> 0.7)
2014-05-29 12:13:01 +00:00
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
2015-11-25 16:18:44 +00:00
thread_safe (~> 0.3, >= 0.3.4)
2014-05-29 12:13:01 +00:00
tzinfo (~> 1.1)
acts-as-taggable-on (4.0.0)
activerecord (>= 4.0)
addressable (2.3.8)
2015-11-25 16:18:44 +00:00
after_commit_queue (1.3.0)
activerecord (>= 3.0)
akismet (2.0.0)
allocations (1.0.5)
2015-11-25 16:18:44 +00:00
arel (6.0.3)
2015-11-25 22:03:30 +00:00
asana (0.4.0)
faraday (~> 0.9)
faraday_middleware (~> 0.9)
faraday_middleware-multi_json (~> 0.0)
oauth2 (~> 1.0)
2015-11-25 16:18:44 +00:00
asciidoctor (1.5.3)
ast (2.3.0)
attr_encrypted (3.0.3)
encryptor (~> 3.0.0)
2014-12-19 14:15:29 +00:00
attr_required (1.0.0)
2016-01-02 02:11:39 +00:00
autoprefixer-rails (6.2.3)
2015-02-19 23:02:49 +00:00
execjs
json
2013-09-29 12:44:49 +00:00
awesome_print (1.2.0)
2015-08-26 01:42:46 +00:00
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
2016-07-25 14:59:41 +00:00
babel-source (5.8.35)
babel-transpiler (0.7.0)
babel-source (>= 4.0, < 6)
execjs (~> 2.0)
babosa (1.0.2)
2016-05-02 11:29:17 +00:00
base32 (0.3.2)
bcrypt (3.1.11)
benchmark-ips (2.3.0)
2013-09-29 12:44:49 +00:00
better_errors (1.0.1)
coderay (>= 1.0.0)
2013-05-01 10:29:29 +00:00
erubis (>= 2.6.6)
2013-06-24 19:03:32 +00:00
binding_of_caller (0.7.2)
debug_inspector (>= 0.0.1)
2016-01-02 02:11:39 +00:00
bootstrap-sass (3.3.6)
autoprefixer-rails (>= 5.2.1)
sass (>= 3.3.4)
brakeman (3.3.2)
browser (2.2.0)
2014-05-29 12:13:01 +00:00
builder (3.2.2)
bullet (5.2.0)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.10.0)
bundler-audit (0.5.0)
bundler (~> 1.2)
thor (~> 0.18)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
byebug (8.2.1)
2016-03-14 05:52:19 +00:00
capybara (2.6.2)
addressable
2011-10-08 21:36:38 +00:00
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (~> 2.0)
2015-08-26 01:42:46 +00:00
capybara-screenshot (1.0.11)
2015-04-25 18:10:09 +00:00
capybara (>= 1.0, < 3)
launchy
2016-03-04 01:32:18 +00:00
carrierwave (0.10.0)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
2016-03-04 01:32:18 +00:00
mime-types (>= 1.16)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
cause (0.1)
2015-11-10 15:56:05 +00:00
charlock_holmes (0.7.3)
chronic (0.10.2)
2016-05-18 20:21:51 +00:00
chronic_duration (0.10.6)
numerizer (~> 0.1.1)
2015-11-25 16:18:44 +00:00
chunky_png (1.3.5)
cliver (0.3.2)
coderay (1.1.0)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
coffee-rails (4.1.1)
2011-10-08 21:36:38 +00:00
coffee-script (>= 2.2.0)
railties (>= 4.0.0, < 5.1.x)
2015-05-29 04:05:14 +00:00
coffee-script (2.4.1)
2011-10-08 21:36:38 +00:00
coffee-script-source
execjs
coffee-script-source (1.10.0)
colorize (0.7.7)
2016-05-05 16:17:46 +00:00
concurrent-ruby (1.0.2)
2015-08-26 01:42:46 +00:00
connection_pool (2.2.0)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
crack (0.4.3)
safe_yaml (~> 1.0.0)
2015-11-24 20:42:42 +00:00
creole (0.5.0)
css_parser (1.4.1)
addressable
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
d3_rails (3.5.11)
railties (>= 3.1.0)
2015-08-26 01:42:46 +00:00
daemons (1.2.3)
database_cleaner (1.5.3)
debug_inspector (0.0.2)
debugger-ruby_core_source (1.3.8)
deckar01-task_list (1.0.6)
activesupport (~> 4.0)
html-pipeline
rack (~> 1.0)
default_value_for (3.0.2)
activerecord (>= 3.2.0, < 5.1)
2015-08-26 01:42:46 +00:00
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (4.2.0)
2014-07-09 11:17:45 +00:00
bcrypt (~> 3.0)
2012-07-06 06:50:24 +00:00
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 5.1)
2015-09-20 01:12:32 +00:00
responders
warden (~> 1.2.3)
devise-two-factor (3.0.0)
2015-03-27 22:35:26 +00:00
activesupport
attr_encrypted (>= 1.3, < 4, != 2)
devise (~> 4.0)
2015-08-26 01:42:46 +00:00
railties
rotp (~> 2.0)
diff-lcs (1.2.5)
diffy (3.1.0)
2014-09-02 20:13:14 +00:00
docile (1.1.5)
doorkeeper (4.2.0)
railties (>= 4.2)
2015-11-25 16:18:44 +00:00
dropzonejs-rails (0.7.2)
rails (> 3.1)
2015-08-19 00:02:26 +00:00
email_reply_parser (0.5.8)
email_spec (1.6.0)
2012-11-18 20:51:49 +00:00
launchy (~> 2.1)
mail (~> 2.2)
encryptor (3.0.0)
2015-08-26 01:42:46 +00:00
equalizer (0.0.11)
2011-10-08 21:36:38 +00:00
erubis (2.7.0)
escape_utils (1.1.1)
2015-08-26 01:42:46 +00:00
eventmachine (1.0.8)
excon (0.52.0)
2015-08-26 01:42:46 +00:00
execjs (2.6.0)
2014-07-28 09:47:27 +00:00
expression_parser (0.9.0)
2015-12-28 02:04:06 +00:00
factory_girl (4.5.0)
2012-08-28 05:28:09 +00:00
activesupport (>= 3.0.0)
2015-12-28 02:04:06 +00:00
factory_girl_rails (4.6.0)
factory_girl (~> 4.5.0)
2012-08-28 05:28:09 +00:00
railties (>= 3.0.0)
2015-10-08 01:54:15 +00:00
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
2015-08-26 01:42:46 +00:00
faraday_middleware (0.10.0)
faraday (>= 0.7.4, < 0.10)
2015-11-25 22:03:30 +00:00
faraday_middleware-multi_json (0.0.6)
faraday_middleware
multi_json
ffaker (2.0.0)
2015-08-26 01:42:46 +00:00
ffi (1.9.10)
flay (2.6.1)
ruby_parser (~> 3.0)
sexp_processor (~> 4.0)
2015-11-25 16:18:44 +00:00
flowdock (0.7.1)
httparty (~> 0.7)
multi_json
fog-aws (0.11.0)
fog-core (~> 1.38)
2016-01-11 16:41:11 +00:00
fog-json (~> 1.0)
fog-xml (~> 0.1)
ipaddress (~> 0.8)
fog-core (1.42.0)
2013-07-08 06:47:31 +00:00
builder
excon (~> 0.49)
formatador (~> 0.2)
fog-json (1.0.2)
fog-core (~> 1.0)
multi_json (~> 1.10)
fog-local (0.3.0)
2016-01-11 16:41:11 +00:00
fog-core (~> 1.27)
fog-openstack (0.1.6)
fog-core (>= 1.39)
fog-json (>= 1.0)
ipaddress (>= 0.8)
fog-rackspace (0.1.1)
fog-core (>= 1.35)
fog-json (>= 1.0)
fog-xml (>= 0.1)
ipaddress (>= 0.8)
fog-xml (0.1.2)
fog-core
nokogiri (~> 1.5, >= 1.5.11)
2016-06-13 12:05:08 +00:00
font-awesome-rails (4.6.1.0)
railties (>= 3.2, < 5.1)
2015-08-26 01:42:46 +00:00
foreman (0.78.0)
thor (~> 0.19.1)
formatador (0.2.5)
2015-06-26 01:43:24 +00:00
fuubar (2.0.0)
rspec (~> 3.0)
ruby-progressbar (~> 1.4)
gemnasium-gitlab-service (0.2.6)
2015-02-25 15:14:10 +00:00
rugged (~> 0.21)
gemojione (3.0.1)
2015-03-11 23:05:01 +00:00
json
2015-08-26 01:42:46 +00:00
get_process_mem (0.2.0)
gherkin-ruby (0.3.2)
github-linguist (4.7.6)
charlock_holmes (~> 0.7.3)
escape_utils (~> 1.1.0)
mime-types (>= 1.19)
rugged (>= 0.23.0b)
github-markup (1.4.0)
gitlab-flowdock-git-hook (1.0.1)
flowdock (~> 0.7)
gitlab-grit (>= 2.4.1)
multi_json
gitlab-grit (2.8.1)
charlock_holmes (~> 0.6)
diff-lcs (~> 1.1)
mime-types (>= 1.16, < 3)
posix-spawn (~> 0.3)
gitlab-markup (1.5.0)
gitlab_git (10.7.0)
2016-02-02 14:04:50 +00:00
activesupport (~> 4.0)
charlock_holmes (~> 0.7.3)
github-linguist (~> 4.7.0)
rugged (~> 0.24.0)
2015-03-17 16:15:39 +00:00
gitlab_omniauth-ldap (1.2.1)
net-ldap (~> 0.9)
omniauth (~> 1.0)
pyu-ruby-sasl (~> 0.0.3.1)
rubyntlm (~> 0.3)
globalid (0.3.7)
2015-11-25 16:18:44 +00:00
activesupport (>= 4.1.0)
gollum-grit_adapter (1.0.1)
2015-03-20 13:15:56 +00:00
gitlab-grit (~> 2.7, >= 2.7.1)
gollum-lib (4.2.1)
github-markup (~> 1.4.0)
2015-08-26 01:42:46 +00:00
gollum-grit_adapter (~> 1.0)
nokogiri (~> 1.6.4)
rouge (~> 2.0)
sanitize (~> 2.1.0)
stringex (~> 2.5.1)
2016-02-28 12:11:43 +00:00
gollum-rugged_adapter (0.4.2)
mime-types (>= 1.15)
rugged (~> 0.24.0, >= 0.21.3)
gon (6.1.0)
2015-11-24 20:36:36 +00:00
actionpack (>= 3.0)
json
2015-11-24 20:36:36 +00:00
multi_json
request_store (>= 1.0)
grape (0.15.0)
2012-11-18 20:51:49 +00:00
activesupport
builder
hashie (>= 2.1.0)
2012-11-18 20:51:49 +00:00
multi_json (>= 1.3.2)
multi_xml (>= 0.5.2)
2013-05-01 10:29:29 +00:00
rack (>= 1.3.0)
2012-11-18 20:51:49 +00:00
rack-accept
2012-06-27 09:26:16 +00:00
rack-mount
2013-12-09 19:50:36 +00:00
virtus (>= 1.0.0)
2016-11-21 08:09:19 +00:00
grape-entity (0.6.0)
activesupport
multi_json (>= 1.3.2)
haml (4.0.7)
tilt
haml_lint (0.18.2)
haml (~> 4.0)
rake (>= 10, < 12)
rubocop (>= 0.36.0)
sysexits (~> 1.1)
hamlit (2.6.1)
temple (~> 0.7.6)
thor
2013-03-01 13:09:11 +00:00
tilt
2016-09-13 11:09:04 +00:00
hashie (3.4.4)
health_check (2.2.1)
rails (>= 4.0)
2015-08-26 01:42:46 +00:00
hipchat (1.5.2)
2013-06-24 19:03:32 +00:00
httparty
2015-03-30 22:53:24 +00:00
mimemagic
html-pipeline (1.11.0)
activesupport (>= 2)
nokogiri (~> 1.4)
html2text (0.2.0)
nokogiri (~> 1.6)
htmlentities (4.3.4)
2015-11-25 16:18:44 +00:00
httparty (0.13.7)
json (~> 1.8)
2013-02-28 19:11:12 +00:00
multi_xml (>= 0.5.2)
httpclient (2.8.2)
i18n (0.7.0)
2015-08-26 01:42:46 +00:00
ice_nine (0.11.1)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
influxdb (0.2.3)
cause
json
ipaddress (0.8.3)
2016-10-19 21:58:48 +00:00
jira-ruby (1.1.2)
activesupport
oauth (~> 0.5, >= 0.5.0)
jquery-atwho-rails (1.3.2)
jquery-rails (4.1.1)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
jquery-turbolinks (2.1.0)
2013-04-29 07:10:45 +00:00
railties (>= 3.1.0)
turbolinks
jquery-ui-rails (5.0.5)
railties (>= 3.2.16)
json (1.8.3)
2016-08-01 17:38:46 +00:00
json-schema (2.6.2)
addressable (~> 2.3.8)
jwt (1.5.4)
kaminari (0.17.0)
2012-02-11 18:34:25 +00:00
actionpack (>= 3.0.0)
activesupport (>= 3.0.0)
2015-11-25 16:18:44 +00:00
kgio (2.10.0)
2016-06-03 15:15:00 +00:00
knapsack (1.11.0)
2016-05-22 01:17:15 +00:00
rake
timecop (>= 0.1.0)
launchy (2.4.3)
2012-11-18 20:51:49 +00:00
addressable (~> 2.3)
letter_opener (1.4.1)
2013-06-24 19:03:32 +00:00
launchy (~> 2.2)
letter_opener_web (1.3.0)
actionmailer (>= 3.2)
letter_opener (~> 1.0)
railties (>= 3.2)
license_finder (2.1.0)
bundler
httparty
rubyzip
thor
xml-simple
licensee (8.0.0)
rugged (>= 0.24b)
listen (3.0.5)
2013-05-01 10:29:29 +00:00
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
2015-11-25 16:18:44 +00:00
loofah (2.0.3)
nokogiri (>= 1.5.9)
2016-03-28 19:37:53 +00:00
mail (2.6.4)
mime-types (>= 1.16, < 4)
mail_room (0.9.0)
method_source (0.8.2)
2016-09-09 13:19:48 +00:00
mime-types (2.99.3)
2015-03-30 22:53:24 +00:00
mimemagic (0.3.0)
mini_portile2 (2.1.0)
2015-08-26 01:42:46 +00:00
minitest (5.7.0)
2014-08-21 08:14:31 +00:00
mousetrap-rails (1.4.6)
multi_json (1.12.1)
multi_xml (0.5.5)
2015-10-08 01:54:15 +00:00
multipart-post (2.0.0)
2015-08-26 01:42:46 +00:00
mysql2 (0.3.20)
2015-11-25 16:18:44 +00:00
net-ldap (0.12.1)
net-ssh (3.0.1)
newrelic_rpm (3.16.0.318)
nokogiri (1.6.8)
mini_portile2 (~> 2.1.0)
pkg-config (~> 1.1.7)
2016-05-18 20:21:51 +00:00
numerizer (0.1.1)
oauth (0.5.1)
oauth2 (1.2.0)
2015-08-26 01:42:46 +00:00
faraday (>= 0.8, < 0.10)
jwt (~> 1.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
2016-04-17 15:32:31 +00:00
octokit (4.3.0)
sawyer (~> 0.7.0, >= 0.5.3)
oj (2.17.4)
omniauth (1.3.1)
hashie (>= 1.2, < 4)
rack (>= 1.0, < 3)
omniauth-auth0 (1.4.1)
omniauth-oauth2 (~> 1.1)
2016-01-07 17:27:01 +00:00
omniauth-azure-oauth2 (0.0.6)
jwt (~> 1.0)
omniauth (~> 1.0)
omniauth-oauth2 (~> 1.1)
2015-02-17 15:59:50 +00:00
omniauth-bitbucket (0.0.2)
multi_json (~> 1.7)
omniauth (~> 1.1)
omniauth-oauth (~> 1.0)
2015-11-12 04:25:31 +00:00
omniauth-cas3 (1.1.3)
addressable (~> 2.3)
nokogiri (~> 1.6.6)
omniauth (~> 1.2)
2016-09-13 11:09:04 +00:00
omniauth-facebook (4.0.0)
2015-11-03 16:58:12 +00:00
omniauth-oauth2 (~> 1.2)
2015-08-26 01:42:46 +00:00
omniauth-github (1.1.2)
2012-09-12 04:48:22 +00:00
omniauth (~> 1.0)
omniauth-oauth2 (~> 1.1)
omniauth-gitlab (1.0.2)
2015-01-27 23:37:19 +00:00
omniauth (~> 1.0)
omniauth-oauth2 (~> 1.0)
2016-06-23 14:15:10 +00:00
omniauth-google-oauth2 (0.4.1)
2015-11-25 16:18:44 +00:00
addressable (~> 2.3)
jwt (~> 1.0)
multi_json (~> 1.3)
omniauth (>= 1.1.1)
omniauth-oauth2 (~> 1.3.1)
2015-10-07 01:48:19 +00:00
omniauth-kerberos (0.3.0)
2014-12-16 11:57:40 +00:00
omniauth-multipassword
timfel-krb5-auth (~> 0.8)
2015-08-26 01:42:46 +00:00
omniauth-multipassword (0.4.2)
2014-12-16 11:57:40 +00:00
omniauth (~> 1.0)
2015-08-26 01:42:46 +00:00
omniauth-oauth (1.1.0)
2012-09-12 04:48:22 +00:00
oauth
omniauth (~> 1.0)
2015-08-26 01:42:46 +00:00
omniauth-oauth2 (1.3.1)
oauth2 (~> 1.0)
omniauth (~> 1.2)
omniauth-saml (1.7.0)
omniauth (~> 1.3)
ruby-saml (~> 1.4)
2015-10-07 02:03:42 +00:00
omniauth-shibboleth (1.2.1)
omniauth (>= 1.0.0)
2015-10-07 01:42:32 +00:00
omniauth-twitter (1.2.1)
json (~> 1.3)
omniauth-oauth (~> 1.1)
2015-08-31 10:59:52 +00:00
omniauth_crowd (2.2.3)
activesupport
nokogiri (>= 1.4.4)
omniauth (~> 1.0)
2014-12-29 06:22:56 +00:00
org-ruby (0.9.12)
2014-08-13 13:45:48 +00:00
rubypants (~> 0.2)
orm_adapter (0.5.0)
2015-11-25 16:18:44 +00:00
paranoia (2.1.4)
2015-08-26 01:42:46 +00:00
activerecord (~> 4.0)
parser (2.3.1.4)
ast (~> 2.2)
2015-11-25 16:18:44 +00:00
pg (0.18.4)
pkg-config (1.1.7)
2016-03-07 20:03:55 +00:00
poltergeist (1.9.0)
capybara (~> 2.1)
cliver (~> 0.3.1)
multi_json (~> 1.0)
websocket-driver (>= 0.2.0)
2015-08-26 01:42:46 +00:00
posix-spawn (0.3.11)
2015-12-14 19:18:32 +00:00
powerpack (0.1.1)
premailer (1.8.6)
css_parser (>= 1.3.6)
htmlentities (>= 4.0.0)
premailer-rails (1.9.2)
actionmailer (>= 3, < 6)
premailer (~> 1.7, >= 1.7.9)
2015-11-25 16:18:44 +00:00
pry (0.10.3)
2015-08-26 01:42:46 +00:00
coderay (~> 1.1.0)
method_source (~> 0.8.1)
2013-03-27 20:21:32 +00:00
slop (~> 3.4)
2015-08-26 01:42:46 +00:00
pry-rails (0.3.4)
pry (>= 0.9.10)
2012-01-21 18:36:14 +00:00
pyu-ruby-sasl (0.0.3.3)
2015-11-25 16:18:44 +00:00
rack (1.6.4)
2012-11-18 20:51:49 +00:00
rack-accept (0.4.5)
rack (>= 0.4)
rack-attack (4.4.1)
2013-09-24 18:13:25 +00:00
rack
2015-10-08 02:08:30 +00:00
rack-cors (0.4.0)
2012-06-27 09:26:16 +00:00
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-oauth2 (1.2.3)
2014-12-19 14:15:29 +00:00
activesupport (>= 2.3)
attr_required (>= 0.0.5)
2015-08-26 01:42:46 +00:00
httpclient (>= 2.4)
2014-12-19 14:15:29 +00:00
multi_json (>= 1.3.6)
rack (>= 1.1)
2015-08-26 01:42:46 +00:00
rack-protection (1.5.3)
2011-10-08 21:36:38 +00:00
rack
rack-test (0.6.3)
2011-10-08 21:36:38 +00:00
rack (>= 1.0)
rails (4.2.7.1)
actionmailer (= 4.2.7.1)
actionpack (= 4.2.7.1)
actionview (= 4.2.7.1)
activejob (= 4.2.7.1)
activemodel (= 4.2.7.1)
activerecord (= 4.2.7.1)
activesupport (= 4.2.7.1)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.7.1)
2015-11-25 16:18:44 +00:00
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.7)
activesupport (>= 4.2.0.beta, < 5.0)
nokogiri (~> 1.6.0)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.3)
2015-11-25 16:18:44 +00:00
loofah (~> 2.0)
railties (4.2.7.1)
actionpack (= 4.2.7.1)
activesupport (= 4.2.7.1)
2011-10-08 21:36:38 +00:00
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rainbow (2.1.0)
raindrops (0.17.0)
2016-01-18 21:39:31 +00:00
rake (10.5.0)
2015-11-25 16:18:44 +00:00
rb-fsevent (0.9.6)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rblineprof (0.3.6)
debugger-ruby_core_source (~> 1.3)
rdoc (4.2.2)
json (~> 1.4)
recaptcha (3.0.0)
json
redcarpet (3.3.3)
redis (3.2.2)
redis-actionpack (5.0.1)
actionpack (>= 4.0, < 6)
redis-rack (>= 1, < 3)
redis-store (>= 1.1.0, < 1.4.0)
redis-activesupport (5.0.1)
activesupport (>= 3, < 6)
redis-store (~> 1.2.0)
2015-08-26 01:42:46 +00:00
redis-namespace (1.5.2)
2014-11-28 18:06:21 +00:00
redis (~> 3.0, >= 3.0.4)
redis-rack (1.6.0)
rack (~> 1.5)
redis-store (~> 1.2.0)
redis-rails (5.0.1)
redis-actionpack (~> 5.0.0)
redis-activesupport (~> 5.0.0)
redis-store (~> 1.2.0)
redis-store (1.2.0)
2013-08-29 17:32:40 +00:00
redis (>= 2.2)
request_store (1.3.1)
rerun (0.11.0)
listen (~> 3.0)
responders (2.3.0)
2016-01-18 21:39:31 +00:00
railties (>= 4.2.0, < 5.1)
2016-07-04 10:25:09 +00:00
rinku (2.0.0)
rotp (2.1.2)
rouge (2.0.7)
2015-08-26 01:42:46 +00:00
rqrcode (0.7.0)
chunky_png
2015-03-27 22:35:26 +00:00
rqrcode-rails3 (0.1.7)
rqrcode (>= 0.4.2)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-core (3.5.0)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-mocks (3.5.0)
2015-06-17 22:05:48 +00:00
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-rails (3.5.0)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-support (~> 3.5.0)
2015-11-12 09:52:20 +00:00
rspec-retry (0.4.5)
rspec-core
rspec-support (3.5.0)
rubocop (0.43.0)
parser (>= 2.3.1.1, < 3.0)
2015-12-14 19:18:32 +00:00
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
2015-12-14 19:18:32 +00:00
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
rubocop-rspec (1.5.0)
rubocop (>= 0.40.0)
2015-09-15 20:09:32 +00:00
ruby-fogbugz (0.2.1)
crack (~> 0.4)
ruby-prof (0.16.2)
2016-05-23 18:03:04 +00:00
ruby-progressbar (1.8.1)
ruby-saml (1.4.1)
nokogiri (>= 1.5.10)
ruby_parser (3.8.2)
2015-03-03 01:28:47 +00:00
sexp_processor (~> 4.1)
2015-08-26 01:42:46 +00:00
rubyntlm (0.5.2)
2014-05-28 10:23:03 +00:00
rubypants (0.2.0)
rubyzip (1.2.0)
rufus-scheduler (3.1.10)
2016-02-28 12:11:43 +00:00
rugged (0.24.0)
safe_yaml (1.0.4)
sanitize (2.1.0)
nokogiri (>= 1.4.4)
sass (3.4.22)
2016-09-27 08:50:35 +00:00
sass-rails (5.0.6)
railties (>= 4.0.0, < 6)
2015-12-22 22:04:41 +00:00
sass (~> 3.1)
sprockets (>= 2.8, < 4.0)
sprockets-rails (>= 2.0, < 4.0)
tilt (>= 1.1, < 3)
2016-04-17 15:32:31 +00:00
sawyer (0.7.0)
addressable (>= 2.3.5, < 2.5)
2014-12-31 13:07:48 +00:00
faraday (~> 0.8, < 0.10)
scss_lint (0.47.1)
rake (>= 0.9, < 11)
sass (~> 3.4.15)
seed-fu (2.3.6)
activerecord (>= 3.1)
activesupport (>= 3.1)
2015-06-24 21:13:21 +00:00
select2-rails (3.5.9.3)
2013-03-13 19:36:26 +00:00
thor (~> 0.14)
sentry-raven (2.0.2)
faraday (>= 0.7.6, < 0.10.x)
settingslogic (2.0.9)
sexp_processor (4.7.0)
2015-08-04 22:21:12 +00:00
sham_rack (1.3.6)
rack
shoulda-matchers (2.8.0)
2012-06-08 10:28:19 +00:00
activesupport (>= 3.0.0)
sidekiq (4.2.1)
2015-12-10 17:45:36 +00:00
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
rack-protection (~> 1.5)
redis (~> 3.2, >= 3.2.1)
2015-12-10 17:45:36 +00:00
sidekiq-cron (0.4.0)
redis-namespace (>= 1.5.2)
rufus-scheduler (>= 2.0.24)
2015-12-10 17:45:36 +00:00
sidekiq (>= 4.0.0)
sidekiq-limit_fetch (3.4.0)
sidekiq (>= 4)
2016-07-04 13:02:27 +00:00
simplecov (0.12.0)
docile (~> 1.1.0)
2016-07-04 13:02:27 +00:00
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
2015-10-08 01:51:05 +00:00
slack-notifier (1.2.1)
slop (3.6.0)
2015-08-26 01:42:46 +00:00
spinach (0.8.10)
colorize
gherkin-ruby (>= 0.3.2)
json
2013-05-01 10:29:29 +00:00
spinach-rails (0.2.1)
capybara (>= 2.0.0)
2012-09-10 07:42:36 +00:00
railties (>= 3)
spinach (>= 0.4)
2016-03-09 13:12:08 +00:00
spinach-rerun-reporter (0.0.2)
spinach (~> 0.8)
spring (1.7.2)
spring-commands-rspec (1.0.4)
2014-02-15 19:46:15 +00:00
spring (>= 0.9.1)
spring-commands-spinach (1.1.0)
2014-02-15 19:46:15 +00:00
spring (>= 0.9.1)
2015-05-06 20:50:47 +00:00
spring-commands-teaspoon (0.0.2)
spring (>= 0.9.1)
sprockets (3.7.0)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
2016-09-27 08:50:35 +00:00
sprockets-es6 (0.9.2)
2016-07-25 14:59:41 +00:00
babel-source (>= 5.8.11)
babel-transpiler
sprockets (>= 3.0.0)
sprockets-rails (3.1.1)
2016-03-28 19:37:53 +00:00
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
2015-11-09 14:11:42 +00:00
state_machines (0.4.0)
state_machines-activemodel (0.4.0)
activemodel (>= 4.1, < 5.1)
2015-11-09 14:11:42 +00:00
state_machines (>= 0.4.0)
state_machines-activerecord (0.4.0)
activerecord (>= 4.1, < 5.1)
2015-11-09 14:11:42 +00:00
state_machines-activemodel (>= 0.3.0)
stringex (2.5.2)
sys-filesystem (1.1.6)
ffi
sysexits (1.2.0)
teaspoon (1.1.5)
railties (>= 3.2.5, < 6)
2015-05-06 20:50:47 +00:00
teaspoon-jasmine (2.2.0)
teaspoon (>= 1.0.0)
temple (0.7.7)
2015-11-26 09:57:04 +00:00
test_after_commit (0.4.2)
2015-08-26 01:42:46 +00:00
activerecord (>= 3.2)
thin (1.7.0)
2015-08-26 01:42:46 +00:00
daemons (~> 1.0, >= 1.0.9)
2015-11-25 16:18:44 +00:00
eventmachine (~> 1.0, >= 1.0.4)
rack (>= 1, < 3)
thor (0.19.1)
thread_safe (0.3.5)
tilt (2.0.5)
2016-05-22 01:17:15 +00:00
timecop (0.8.1)
timfel-krb5-auth (0.8.3)
truncato (0.7.8)
htmlentities (~> 4.3.1)
nokogiri (~> 1.6.1)
2015-05-29 04:05:14 +00:00
turbolinks (2.5.3)
2013-04-29 07:10:45 +00:00
coffee-rails
tzinfo (1.2.2)
2014-05-29 12:13:01 +00:00
thread_safe (~> 0.1)
u2f (0.2.1)
2015-10-14 06:39:59 +00:00
uglifier (2.7.2)
2011-10-08 21:36:38 +00:00
execjs (>= 0.3.0)
json (>= 1.8.0)
underscore-rails (1.8.3)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.2)
2016-09-14 19:49:32 +00:00
unicode-display_width (1.1.1)
unicorn (5.1.0)
2013-07-08 06:47:31 +00:00
kgio (~> 2.6)
raindrops (~> 0.7)
2015-11-25 16:18:44 +00:00
unicorn-worker-killer (0.4.4)
2015-08-26 01:42:46 +00:00
get_process_mem (~> 0)
2015-11-25 16:18:44 +00:00
unicorn (>= 4, < 6)
uniform_notifier (1.10.0)
version_sorter (2.1.0)
2015-08-26 01:42:46 +00:00
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
2015-08-26 01:42:46 +00:00
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
vmstat (2.2.0)
warden (1.2.6)
2011-10-08 21:36:38 +00:00
rack (>= 1.0)
web-console (2.3.0)
2015-11-25 16:18:44 +00:00
activemodel (>= 4.0)
binding_of_caller (>= 0.7.2)
railties (>= 4.0)
sprockets-rails (>= 2.0, < 4.0)
webmock (1.21.0)
addressable (>= 2.3.6)
2013-05-01 10:29:29 +00:00
crack (>= 0.3.2)
2015-11-25 16:18:44 +00:00
websocket-driver (0.6.3)
2015-06-19 02:14:41 +00:00
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.2)
2015-09-09 08:06:35 +00:00
wikicloth (0.8.1)
2014-07-28 09:47:27 +00:00
builder
expression_parser
2015-09-09 08:06:35 +00:00
rinku
xml-simple (1.1.5)
xpath (2.0.0)
2011-10-08 21:36:38 +00:00
nokogiri (~> 1.3)
PLATFORMS
ruby
DEPENDENCIES
RedCloth (~> 4.3.2)
ace-rails-ap (~> 4.1.0)
activerecord_sane_schema_dumper (= 0.2)
acts-as-taggable-on (~> 4.0)
2015-08-26 01:42:46 +00:00
addressable (~> 2.3.8)
after_commit_queue (~> 1.3.0)
akismet (~> 2.0)
allocations (~> 1.0)
2015-11-25 22:03:30 +00:00
asana (~> 0.4.0)
asciidoctor (~> 1.5.2)
attr_encrypted (~> 3.0.0)
2015-08-26 01:42:46 +00:00
awesome_print (~> 1.2.0)
babosa (~> 1.0.2)
2016-05-02 11:29:17 +00:00
base32 (~> 0.3.0)
benchmark-ips (~> 2.3.0)
2015-08-26 01:42:46 +00:00
better_errors (~> 1.0.1)
binding_of_caller (~> 0.7.2)
2016-01-02 02:11:39 +00:00
bootstrap-sass (~> 3.3.0)
brakeman (~> 3.3.0)
browser (~> 2.2)
bullet (~> 5.2.0)
bundler-audit (~> 0.5.0)
byebug (~> 8.2.1)
2016-03-14 05:52:19 +00:00
capybara (~> 2.6.2)
2015-04-25 18:10:09 +00:00
capybara-screenshot (~> 1.0.0)
2016-03-04 01:32:18 +00:00
carrierwave (~> 0.10.0)
charlock_holmes (~> 0.7.3)
chronic (~> 0.10.2)
2016-05-18 20:21:51 +00:00
chronic_duration (~> 0.10.6)
2015-08-26 01:42:46 +00:00
coffee-rails (~> 4.1.0)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
connection_pool (~> 2.0)
2015-11-24 20:42:42 +00:00
creole (~> 0.5.0)
2016-01-02 02:34:49 +00:00
d3_rails (~> 3.5.0)
database_cleaner (~> 1.5.0)
deckar01-task_list (= 1.0.6)
default_value_for (~> 3.0.0)
devise (~> 4.2)
devise-two-factor (~> 3.0.0)
diffy (~> 3.1.0)
doorkeeper (~> 4.2.0)
2015-08-26 01:42:46 +00:00
dropzonejs-rails (~> 0.7.1)
email_reply_parser (~> 0.5.8)
email_spec (~> 1.6.0)
2015-12-28 02:04:06 +00:00
factory_girl_rails (~> 4.6.0)
ffaker (~> 2.0.0)
flay (~> 2.6.1)
fog-aws (~> 0.9)
fog-core (~> 1.40)
fog-local (~> 0.3)
fog-openstack (~> 0.1)
fog-rackspace (~> 0.1.1)
2016-06-13 12:05:08 +00:00
font-awesome-rails (~> 4.6.1)
foreman (~> 0.78.0)
2015-06-26 01:43:24 +00:00
fuubar (~> 2.0.0)
gemnasium-gitlab-service (~> 0.2)
gemojione (~> 3.0)
github-linguist (~> 4.7.0)
gitlab-flowdock-git-hook (~> 1.0.1)
gitlab-markup (~> 1.5.0)
gitlab_git (~> 10.7.0)
2015-08-26 01:42:46 +00:00
gitlab_omniauth-ldap (~> 1.2.1)
gollum-lib (~> 4.2)
2016-02-28 12:11:43 +00:00
gollum-rugged_adapter (~> 0.4.2)
gon (~> 6.1.0)
grape (~> 0.15.0)
2016-11-21 08:09:19 +00:00
grape-entity (~> 0.6.0)
haml_lint (~> 0.18.2)
hamlit (~> 2.6.1)
health_check (~> 2.2.0)
2015-03-30 22:53:24 +00:00
hipchat (~> 1.5.0)
html-pipeline (~> 1.11.0)
html2text
2015-08-26 01:42:46 +00:00
httparty (~> 0.13.3)
Storing of application metrics in InfluxDB This adds the ability to write application metrics (e.g. SQL timings) to InfluxDB. These metrics can in turn be visualized using Grafana, or really anything else that can read from InfluxDB. These metrics can be used to track application performance over time, between different Ruby versions, different GitLab versions, etc. == Transaction Metrics Currently the following is tracked on a per transaction basis (a transaction is a Rails request or a single Sidekiq job): * Timings per query along with the raw (obfuscated) SQL and information about what file the query originated from. * Timings per view along with the path of the view and information about what file triggered the rendering process. * The duration of a request itself along with the controller/worker class and method name. * The duration of any instrumented method calls (more below). == Sampled Metrics Certain metrics can't be directly associated with a transaction. For example, a process' total memory usage is unrelated to any running transactions. While a transaction can result in the memory usage going up there's no accurate way to determine what transaction is to blame, this becomes especially problematic in multi-threaded environments. To solve this problem there's a separate thread that takes samples at a fixed interval. This thread (using the class Gitlab::Metrics::Sampler) currently tracks the following: * The process' total memory usage. * The number of file descriptors opened by the process. * The amount of Ruby objects (using ObjectSpace.count_objects). * GC statistics such as timings, heap slots, etc. The default/current interval is 15 seconds, any smaller interval might put too much pressure on InfluxDB (especially when running dozens of processes). == Method Instrumentation While currently not yet used methods can be instrumented to track how long they take to run. Unlike the likes of New Relic this doesn't require modifying the source code (e.g. including modules), it all happens from the outside. For example, to track `User.by_login` we'd add the following code somewhere in an initializer: Gitlab::Metrics::Instrumentation. instrument_method(User, :by_login) to instead instrument an instance method: Gitlab::Metrics::Instrumentation. instrument_instance_method(User, :save) Instrumentation for either all public model methods or a few crucial ones will be added in the near future, I simply haven't gotten to doing so just yet. == Configuration By default metrics are disabled. This means users don't have to bother setting anything up if they don't want to. Metrics can be enabled by editing one's gitlab.yml configuration file (see config/gitlab.yml.example for example settings). == Writing Data To InfluxDB Because InfluxDB is still a fairly young product I expect the worse. Data loss, unexpected reboots, the database not responding, you name it. Because of this data is _not_ written to InfluxDB directly, instead it's queued and processed by Sidekiq. This ensures that users won't notice anything when InfluxDB is giving trouble. The metrics worker can be started in a standalone manner as following: bundle exec sidekiq -q metrics The corresponding class is called MetricsWorker.
2015-12-09 15:45:51 +00:00
influxdb (~> 0.2)
2016-10-19 21:58:48 +00:00
jira-ruby (~> 1.1.2)
jquery-atwho-rails (~> 1.3.2)
jquery-rails (~> 4.1.0)
jquery-turbolinks (~> 2.1.0)
jquery-ui-rails (~> 5.0.0)
2016-08-01 17:38:46 +00:00
json-schema (~> 2.6.2)
jwt
kaminari (~> 0.17.0)
knapsack (~> 1.11.0)
letter_opener_web (~> 1.3.0)
license_finder (~> 2.1.0)
licensee (~> 8.0.0)
loofah (~> 2.0.3)
mail_room (~> 0.9.0)
method_source (~> 0.8)
2015-08-26 01:42:46 +00:00
minitest (~> 5.7.0)
mousetrap-rails (~> 1.4.6)
mysql2 (~> 0.3.16)
2015-11-25 16:18:44 +00:00
net-ssh (~> 3.0.1)
newrelic_rpm (~> 3.16)
2016-02-25 11:46:06 +00:00
nokogiri (~> 1.6.7, >= 1.6.7.2)
oauth2 (~> 1.2.0)
2016-04-17 15:32:31 +00:00
octokit (~> 4.3.0)
oj (~> 2.17.4)
omniauth (~> 1.3.1)
omniauth-auth0 (~> 1.4.1)
omniauth-azure-oauth2 (~> 0.0.6)
2015-08-26 01:42:46 +00:00
omniauth-bitbucket (~> 0.0.2)
2015-11-12 04:25:31 +00:00
omniauth-cas3 (~> 1.1.2)
2016-09-13 11:09:04 +00:00
omniauth-facebook (~> 4.0.0)
2015-08-26 01:42:46 +00:00
omniauth-github (~> 1.1.1)
omniauth-gitlab (~> 1.0.2)
2016-06-23 14:15:10 +00:00
omniauth-google-oauth2 (~> 0.4.1)
2015-10-07 01:48:19 +00:00
omniauth-kerberos (~> 0.3.0)
omniauth-saml (~> 1.7.0)
2015-10-07 02:03:42 +00:00
omniauth-shibboleth (~> 1.2.0)
2015-10-07 01:42:32 +00:00
omniauth-twitter (~> 1.2.0)
omniauth_crowd (~> 2.2.0)
2015-08-26 01:42:46 +00:00
org-ruby (~> 0.9.12)
paranoia (~> 2.0)
pg (~> 0.18.2)
2016-03-07 20:03:55 +00:00
poltergeist (~> 1.9.0)
premailer-rails (~> 1.9.0)
pry-rails (~> 0.3.4)
rack-attack (~> 4.4.1)
2015-10-08 02:08:30 +00:00
rack-cors (~> 0.4.0)
2015-11-24 20:48:49 +00:00
rack-oauth2 (~> 1.2.1)
rails (= 4.2.7.1)
2015-11-26 13:48:01 +00:00
rails-deprecated_sanitizer (~> 1.0.3)
rainbow (~> 2.1.0)
rblineprof (~> 0.3.6)
rdoc (~> 4.2)
recaptcha (~> 3.0)
redcarpet (~> 3.3.3)
redis (~> 3.2)
redis-namespace (~> 1.5.2)
redis-rails (~> 5.0.1)
request_store (~> 1.3)
rerun (~> 0.11.0)
2015-11-25 16:18:44 +00:00
responders (~> 2.0)
rouge (~> 2.0)
2015-08-26 01:42:46 +00:00
rqrcode-rails3 (~> 0.1.7)
rspec-rails (~> 3.5.0)
rspec-retry (~> 0.4.5)
rubocop (~> 0.43.0)
rubocop-rspec (~> 1.5.0)
2015-09-15 20:09:32 +00:00
ruby-fogbugz (~> 0.2.1)
ruby-prof (~> 0.16.2)
sanitize (~> 2.0)
2016-09-27 08:50:35 +00:00
sass-rails (~> 5.0.6)
scss_lint (~> 0.47.0)
2015-08-26 01:42:46 +00:00
seed-fu (~> 2.3.5)
2015-06-24 21:13:21 +00:00
select2-rails (~> 3.5.9)
sentry-raven (~> 2.0.0)
2015-08-26 01:42:46 +00:00
settingslogic (~> 2.0.9)
sham_rack (~> 1.3.6)
shoulda-matchers (~> 2.8.0)
sidekiq (~> 4.2)
2015-12-10 17:45:36 +00:00
sidekiq-cron (~> 0.4.0)
sidekiq-limit_fetch (~> 3.4)
simplecov (= 0.12.0)
2015-10-08 01:51:05 +00:00
slack-notifier (~> 1.2.0)
2015-08-26 01:42:46 +00:00
spinach-rails (~> 0.2.1)
2016-03-09 13:12:08 +00:00
spinach-rerun-reporter (~> 0.0.2)
spring (~> 1.7.0)
2015-08-26 01:42:46 +00:00
spring-commands-rspec (~> 1.0.4)
spring-commands-spinach (~> 1.1.0)
2015-05-06 20:50:47 +00:00
spring-commands-teaspoon (~> 0.0.2)
sprockets (~> 3.7.0)
2016-09-27 08:50:35 +00:00
sprockets-es6 (~> 0.9.2)
state_machines-activerecord (~> 0.4.0)
sys-filesystem (~> 1.1.6)
teaspoon (~> 1.1.0)
2015-08-26 01:42:46 +00:00
teaspoon-jasmine (~> 2.2.0)
2015-11-26 09:57:04 +00:00
test_after_commit (~> 0.4.2)
thin (~> 1.7.0)
timecop (~> 0.8.0)
truncato (~> 0.7.8)
2015-05-29 04:05:14 +00:00
turbolinks (~> 2.5.0)
u2f (~> 0.2.1)
2015-10-14 06:39:59 +00:00
uglifier (~> 2.7.2)
underscore-rails (~> 1.8.0)
2015-08-26 01:42:46 +00:00
unf (~> 0.1.4)
unicorn (~> 5.1.0)
unicorn-worker-killer (~> 0.4.4)
version_sorter (~> 2.1.0)
2015-08-26 01:42:46 +00:00
virtus (~> 1.0.1)
vmstat (~> 2.2)
2015-11-25 16:18:44 +00:00
web-console (~> 2.0)
webmock (~> 1.21.0)
2015-09-09 08:06:35 +00:00
wikicloth (= 0.8.1)
BUNDLED WITH
1.13.6