mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
15 lines
509 B
Ruby
15 lines
509 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-nginx-performance-report
|
|
# about: Analyzing Discourse Performance using NGINX logs
|
|
# version: 0.1
|
|
# url: https://github.com/discourse/discourse/tree/master/plugins/discourse-nginx-performance-report
|
|
|
|
enabled_site_setting :daily_performance_report
|
|
enabled_site_setting_filter "daily_performance_report"
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
|
|
|
after_initialize do
|
|
load File.expand_path("../app/jobs/scheduled/daily_performance_report.rb", __FILE__)
|
|
end
|