1. 02 7月, 2016 2 次提交
  2. 01 7月, 2016 2 次提交
    • J
      use has_many relationship with events · f29c3047
      James Lopez 提交于
      f29c3047
    • E
      Import from Github using Personal Access Tokens. · 12aa1f89
      Eric K Idema 提交于
      This stands as an alternative to using OAuth to access a user's Github
      repositories.  This is setup in such a way that it can be used without OAuth
      configuration.
      
      From a UI perspective, the how to import modal has been replaced by a full
      page, which includes a form for posting a personal access token back to the
      Import::GithubController.
      
      If the user has logged in via GitHub, skip the Personal Access Token and go
      directly to Github for an access token via OAuth.
      12aa1f89
  3. 30 6月, 2016 5 次提交
  4. 29 6月, 2016 4 次提交
  5. 28 6月, 2016 6 次提交
  6. 23 6月, 2016 3 次提交
  7. 21 6月, 2016 2 次提交
  8. 18 6月, 2016 2 次提交
    • Y
      Track method call times/counts as a single metric · be3b8784
      Yorick Peterse 提交于
      Previously we'd create a separate Metric instance for every method call
      that would exceed the method call threshold. This is problematic because
      it doesn't provide us with information to accurately get the _total_
      execution time of a particular method. For example, if the method
      "Foo#bar" was called 4 times with a runtime of ~10 milliseconds we'd end
      up with 4 different Metric instances. If we were to then get the
      average/95th percentile/etc of the timings this would be roughly 10
      milliseconds. However, the _actual_ total time spent in this method
      would be around 40 milliseconds.
      
      To solve this problem we now create a single Metric instance per method.
      This Metric instance contains the _total_ real/CPU time and the call
      count for every instrumented method.
      be3b8784
    • P
      Filter out sensitive parameters of metrics data · 2e552c6b
      Paco Guzman 提交于
      2e552c6b
  9. 17 6月, 2016 3 次提交
  10. 16 6月, 2016 4 次提交
  11. 15 6月, 2016 6 次提交
  12. 14 6月, 2016 1 次提交
    • P
      Instrument private/protected methods · dadc5313
      Paco Guzman 提交于
      By default instrumentation will instrument public,
      protected and private methods, because usually
      heavy work is done on private method or at least
      that’s what facts is showing
      dadc5313