Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 12月 16, 2022
  2. 7月 06, 2022
    • Matthias Kaeppler's avatar
      Add heap fragmentation metric · 57e7e0b0
      Matthias Kaeppler 创作于
      We need to know to what extent the Ruby heap is
      fragmented since this can lead to higher and sustained
      memory use in production.
      
      We add this metric to the existing RubySampler.
      
      Changelog: added
      57e7e0b0
  3. 6月 30, 2022
  4. 5月 09, 2022
    • Matthias Käppler's avatar
      Address several edge cases in ProcessSupervisor · 625e38e0
      Matthias Käppler 创作于
      Fixed:
      - Do not determine `alive` status from the pidset returned
        by caller, since this can lead to "bouncing" state.
      - Swap loop-check with sleep call, since sleep suspends
        the calling thread, which may lead to the callback
        being invoked if `alive` is invalidated by another
        thread.
      - Do not trap INT and TERM by default; this was swallowing
        these signals for the Puma master.
      
      Changelog: fixed
      625e38e0
    • Matthias Kaeppler's avatar
      Configure gitlab-metrics-exporter logs · 93f3c1d9
      Matthias Kaeppler 创作于
      This is not in use yet, but we should already
      pass in the correct settings.
      93f3c1d9
  5. 5月 06, 2022
    • Matthias Kaeppler's avatar
      Separate Sidekiq metrics and health-checks server · 57ab5abd
      Matthias Kaeppler 创作于
      It has been a long-standing issue that for Sidekiq,
      serving metrics and health-checks was coupled into
      a single server.
      
      We had already separated settings keys for these two
      concerns previously, in anticipation of splitting
      these endpoints apart, which is a breaking change.
      
      We can now do this with 15.0.
      
      Changelog: changed
      57ab5abd
  6. 4月 25, 2022
    • Matthias Kaeppler's avatar
      Integrate Golang metrics server with Puma · 906d53f5
      Matthias Kaeppler 创作于
      This change:
      
      - Adds a rake task to install gitlab-metrics-exporter
        into a given directory.
      - Allows to run it in place of the existing Ruby based
        exporters; this is guarded by an environment variable.
      - Extends the existing end-to-end test to test both
        Ruby and Go implementations.
      906d53f5
  7. 3月 25, 2022
    • Matthias Käppler's avatar
      Fix missing metrics for Sidekiq exporter server · 0e77c181
      Matthias Käppler 创作于
      We were accidentally deleting metrics the exporter
      server exported about itself. Actual sidekiq worker
      metrics were not affected.
      
      This happened because we would wipe the metrics dir
      whenever sidekiq_0 starts up, but this happens after
      the metrics server starts, so the worker was deleting
      those existing metrics.
      
      Changelog: fixed
      0e77c181
  8. 3月 17, 2022
  9. 3月 15, 2022
  10. 2月 15, 2022
  11. 2月 11, 2022
    • Matthias Käppler's avatar
      Allow metrics_server to target Puma · ae94c880
      Matthias Käppler 创作于
      So far we had only tested this with Sidekiq.
      This change makes sure that WebExporter and
      the puma metrics directory can be used.
      
      This is a prerequisite for extracting WebExporter
      into a separate process.
      ae94c880
  12. 1月 19, 2022
  13. 1月 12, 2022
  14. 1月 10, 2022
  15. 12月 20, 2021
  16. 12月 16, 2021
  17. 12月 08, 2021
  18. 12月 03, 2021
加载中