prometheus-splash 0.4.0 → 0.4.1

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: 7d75be43cdbdc1c7e5cd951946d8ff25bf0da4225c65d2f1150b986179a2be6a
4
- data.tar.gz: 6f10a62124372883c15723a1e28d9e439d105cf70b7e30162e7dd16cfd09e0a7
3
+ metadata.gz: '077039115f392fbd38926a2ee429950652caac2a0ee6424545d1c4ac75934b09'
4
+ data.tar.gz: 73ea0a566cbdc3a7e683246196b11dcc2e8fe3589349ae4eaaae2f07deee5e78
5
5
  SHA512:
6
- metadata.gz: b55b81edb62e943d53393a9b2dbafecb94e82ff7aacd9feb35480b8184c82585d2267ae97e5d67f6797f2a9df8b67424f04912721d97dea3512a7edb597fad99
7
- data.tar.gz: '059dc2af31e92868090913afe9ae8044b4d995e4df6ea6a0ca9492ba4a341aada92a684d79857c04a77ad7b675106fc9a21719933d7e4ef2b352c6505e7771a9'
6
+ metadata.gz: 2c598e79e306f989be84e9079485283d4118fdf26765b660f1e55eccda1ee8158460dccc50532c53679d7b1a1c1da91b59a8fdc9484fe9df61a19f27a6e108a2
7
+ data.tar.gz: 357c372f2a82323af9866d3cc63d7e13355a04bd494911d78bcb743a73133ebb5cc212e658e066b6ac88fb264221a24ce946cb076801bb31cb1bbba3fc82bfe1
File without changes
@@ -16,7 +16,7 @@
16
16
  :stores:
17
17
  :execution_trace:
18
18
  :type: :file
19
- :path: /var/run/splash
19
+ :path: /var/run/splash/executions
20
20
  # :execution_trace:
21
21
  # :type: :redis
22
22
  # :host: localhost
@@ -36,8 +36,8 @@
36
36
  :every: 20s
37
37
  :process_name: "Splash : daemon."
38
38
  :paths:
39
- :pid_path: /var/run
40
- :trace_path: /tmp/splash
39
+ :pid_path: /var/run/splash
40
+ :trace_path: /var/run/splash/traces
41
41
  :files:
42
42
  :stdout_trace: stdout.txt
43
43
  :stderr_trace: stderr.txt
@@ -24,7 +24,7 @@ module Splash
24
24
  end
25
25
 
26
26
  target = "PID Path : #{config[:pid_path]}"
27
- res = verify_folder(name: config[:pid_path], mode: "644", owner: config.user_root, group: config.group_root)
27
+ res = verify_folder(name: config[:pid_path], mode: "755", owner: config.user_root, group: config.group_root)
28
28
  if res.empty? then
29
29
  log.ok target
30
30
  else
@@ -35,7 +35,7 @@ module Splash
35
35
  end
36
36
 
37
37
  target = "Trace Path : #{config[:trace_path]}"
38
- res = verify_folder(name: config[:trace_path], mode: "644", owner: config.user_root, group: config.group_root)
38
+ res = verify_folder(name: config[:trace_path], mode: "755", owner: config.user_root, group: config.group_root)
39
39
  if res.empty? then
40
40
  log.ok target
41
41
  else
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  module Splash
3
3
  module Constants
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
 
6
6
  # the path to th config file, not overridable by config
7
7
  CONFIG_FILE = "/etc/splash.yml"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prometheus-splash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain GEORGES
@@ -230,7 +230,7 @@ extensions: []
230
230
  extra_rdoc_files: []
231
231
  files:
232
232
  - ".github/workflows/ruby.yml"
233
- - CHANGELOG
233
+ - CHANGELOG.md
234
234
  - Gemfile
235
235
  - LICENSE.txt
236
236
  - README.md