foreman_supervisory_authority 0.0.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be1f8c9ced87807349ce51f4ec7dc04f74b3470a7fb3c301f805fe84c884bb31
4
- data.tar.gz: 7ebdcd43a76542aaae880877c3137596f01e2719f4ba15c5beaf39bd710ed8dc
3
+ metadata.gz: 338286f228044a32cd31578dbb23d130d594e170f8ef3ac037d243e2f2f653d3
4
+ data.tar.gz: 0d66f361e0434269244d452e2c4c92a6cae5466c2e5a7136489ce5054ea6a988
5
5
  SHA512:
6
- metadata.gz: '0004686ce4258986fc4ebe78fc8f9938a1d08930c990b4031d7a289a59c98cd024d0956cc4762474d4f57c2a02e730edff168e6e3933204158d2b14ae8ce0f29'
7
- data.tar.gz: 67fe067dd6e41216bba5dcda15a8a19721d7bc3e88954fdd6aed259050ce6f4756ec198722145e5a1d646ee96eb51060ca164f87846377c519c71a736c6b1051
6
+ metadata.gz: dcb4f2d8ee0bdf31c03ec5b26e492d1b9adc283e0d8fbc14eedb5ffe763943b4e91d5575cbea38bffaa26fde1529f2f480c916cf77b089d8cd07b2c8198a3cfb
7
+ data.tar.gz: 85aceff62912603b36ef4b38535199e13ac5dc251007597d72cbd56e2fcfe0533e4e53b4181119506cf6e8a18878abb281abe93399cfee7663cb059762a8cfdc
data/README.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This Foreman plug-in adds support for reporting data to the Elastic APM.
4
4
 
5
+ ## Compatibility
6
+
7
+ | Foreman Version | Plugin Version |
8
+ | --------------- | -------------- |
9
+ | >= 1.20 | ~> 0.0.2 |
10
+ | >= 3.0 | ~> 0.1.0 |
11
+ | >= 3.10 | ~> 0.2.0 |
12
+
5
13
  ## Installation
6
14
 
7
15
  See [How_to_Install_a_Plugin](http://projects.theforeman.org/projects/foreman/wiki/How_to_Install_a_Plugin)
@@ -16,10 +24,10 @@ Below you can find an example config file. All the possible parameters are docum
16
24
  [on the Elastic site](https://www.elastic.co/guide/en/apm/agent/ruby/current/configuration.html#_options).
17
25
 
18
26
  ```yaml
19
- :foreman_supervisory_authoriy:
27
+ :foreman_supervisory_authority:
20
28
  server_url: https://elastic-apm.example.com
21
- secret_token: '12345verysecret'
22
- service_name: 'foreman'
29
+ secret_token: "12345verysecret"
30
+ service_name: "foreman"
23
31
  transaction_max_spans: 100
24
32
  ```
25
33
 
@@ -38,9 +46,8 @@ the Free Software Foundation, either version 3 of the License, or
38
46
 
39
47
  This program is distributed in the hope that it will be useful,
40
48
  but WITHOUT ANY WARRANTY; without even the implied warranty of
41
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
49
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42
50
  GNU General Public License for more details.
43
51
 
44
52
  You should have received a copy of the GNU General Public License
45
- along with this program. If not, see <http://www.gnu.org/licenses/>.
46
-
53
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -1,4 +1,4 @@
1
- :foreman_supervisory_authoriy:
1
+ :foreman_supervisory_authority:
2
2
  server_url: https://elastic-apm.example.com
3
3
  secret_token: '12345verysecret'
4
4
  service_name: 'foreman'
@@ -10,30 +10,25 @@ module ForemanSupervisoryAuthority
10
10
 
11
11
  initializer 'foreman_supervisory_authority.register_plugin', before: :finisher_hook do
12
12
  Foreman::Plugin.register :foreman_supervisory_authority do
13
- requires_foreman '>= 1.20'
13
+ requires_foreman '>= 3.10'
14
14
  end
15
15
  end
16
16
 
17
- # we need to disable the 'net_http' spy, see
18
- # https://github.com/elastic/apm-agent-ruby/issues/379
19
- # for reasoning
20
- config.elastic_apm.disabled_spies = %w[json net_http]
17
+ config.elastic_apm.disable_instrumentations = %w[json]
21
18
 
22
19
  # map user context methods to what we use in Foreman
23
20
  config.elastic_apm.current_user_email_method = :mail
24
21
  config.elastic_apm.current_user_username_method = :login
25
22
 
26
- config.elastic_apm.merge!(SETTINGS[:foreman_supervisory_authoriy]) if SETTINGS[:foreman_supervisory_authoriy]
23
+ config.elastic_apm.merge!(SETTINGS[:foreman_supervisory_authority]) if SETTINGS[:foreman_supervisory_authority]
27
24
 
28
25
  # Include concerns in this config.to_prepare block
29
26
  config.to_prepare do
30
- begin
31
- ::ApplicationController.send(:include, ForemanSupervisoryAuthority::SetElasticApmContext)
32
- ::Api::BaseController.send(:include, ForemanSupervisoryAuthority::SetElasticApmContext)
33
- ::Api::GraphqlController.send(:include, ForemanSupervisoryAuthority::SetElasticApmContext) if defined?(::Api::GraphqlController)
34
- rescue StandardError => e
35
- Rails.logger.warn "ForemanSupervisoryAuthority: skipping engine hook (#{e})"
36
- end
27
+ ::ApplicationController.include ForemanSupervisoryAuthority::SetElasticApmContext
28
+ ::Api::BaseController.include ForemanSupervisoryAuthority::SetElasticApmContext
29
+ ::Api::GraphqlController.include ForemanSupervisoryAuthority::SetElasticApmContext
30
+ rescue StandardError => e
31
+ Rails.logger.warn "ForemanSupervisoryAuthority: skipping engine hook (#{e})"
37
32
  end
38
33
  end
39
34
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanSupervisoryAuthority
4
- VERSION = '0.0.1'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -15,7 +15,7 @@ namespace :test do
15
15
  end
16
16
 
17
17
  namespace :foreman_supervisory_authority do
18
- task :rubocop do
18
+ task rubocop: :environment do
19
19
  begin
20
20
  require 'rubocop/rake_task'
21
21
  RuboCop::RakeTask.new(:rubocop_foreman_supervisory_authority) do |task|
@@ -34,4 +34,7 @@ end
34
34
  Rake::Task[:test].enhance ['test:foreman_supervisory_authority']
35
35
 
36
36
  load 'tasks/jenkins.rake'
37
- Rake::Task['jenkins:unit'].enhance ['test:foreman_supervisory_authority', 'foreman_supervisory_authority:rubocop'] if Rake::Task.task_defined?(:'jenkins:unit')
37
+ if Rake::Task.task_defined?(:'jenkins:unit')
38
+ Rake::Task['jenkins:unit'].enhance ['test:foreman_supervisory_authority',
39
+ 'foreman_supervisory_authority:rubocop']
40
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_supervisory_authority
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Goebel
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-19 00:00:00.000000000 Z
11
+ date: 2024-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: elastic-apm
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.0'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.0'
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '6.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: '6.0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rubocop
42
+ name: theforeman-rubocop
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.64.0
47
+ version: 0.1.2
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.64.0
54
+ version: 0.1.2
55
55
  description: This plug-in for Foreman sends data to Elastic APM.
56
56
  email:
57
57
  - mail@timogoebel.name
@@ -68,13 +68,13 @@ files:
68
68
  - lib/foreman_supervisory_authority/engine.rb
69
69
  - lib/foreman_supervisory_authority/version.rb
70
70
  - lib/tasks/foreman_supervisory_authority_tasks.rake
71
- - test/test_plugin_helper.rb
72
- - test/unit/foreman_supervisory_authority_test.rb
73
- homepage: https://github.com/timogoebel/foreman_supervisory_authority
71
+ homepage: https://github.com/theforeman/foreman_supervisory_authority
74
72
  licenses:
75
73
  - GPL-3.0
76
- metadata: {}
77
- post_install_message:
74
+ metadata:
75
+ rubygems_mfa_required: 'true'
76
+ is_foreman_plugin: 'true'
77
+ post_install_message:
78
78
  rdoc_options: []
79
79
  require_paths:
80
80
  - lib
@@ -82,18 +82,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="
84
84
  - !ruby/object:Gem::Version
85
- version: '0'
85
+ version: '2.5'
86
+ - - "<"
87
+ - !ruby/object:Gem::Version
88
+ version: '4'
86
89
  required_rubygems_version: !ruby/object:Gem::Requirement
87
90
  requirements:
88
91
  - - ">="
89
92
  - !ruby/object:Gem::Version
90
93
  version: '0'
91
94
  requirements: []
92
- rubyforge_project:
93
- rubygems_version: 2.7.6.2
94
- signing_key:
95
+ rubygems_version: 3.5.3
96
+ signing_key:
95
97
  specification_version: 4
96
98
  summary: This Foreman plug-in integrates with Elastic APM.
97
- test_files:
98
- - test/unit/foreman_supervisory_authority_test.rb
99
- - test/test_plugin_helper.rb
99
+ test_files: []
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # This calls the main test_helper in Foreman-core
4
- require 'test_helper'
@@ -1,13 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'test_plugin_helper'
4
-
5
- class ForemanSupervisoryAuthorityTest < ActiveSupport::TestCase
6
- setup do
7
- User.current = User.find_by login: 'admin'
8
- end
9
-
10
- test 'the truth' do
11
- assert true
12
- end
13
- end