fluent-plugin-azuremonitormetrics 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 316b0b3ac280185c4e006b8baa53cad80bb82eaa
4
- data.tar.gz: 4aa30f29e6c173fdfa4b91f15d9ca44906f148f0
3
+ metadata.gz: 104e01a956302dd8182518c77ee2587646d6cba4
4
+ data.tar.gz: 416a1e4c42d95470f46a70b8364669878c460067
5
5
  SHA512:
6
- metadata.gz: fe130cd30fffc192d094f3d8fc222d43594c77a3e9dabaac7cf16d21e36b3f7a8490482fb71ee0e7411ef94e83cecd7edfe686ecb5b1aff9699bdc2a74390e97
7
- data.tar.gz: 97e70e25755622aa86b662fb94ff17c1e61f4ccc1d5310413119c91a5dbd5e19f7fbf62278a6b1f8f9b1b97d69950f9e0783757449ada599daf4bba2ca5810fb
6
+ metadata.gz: 6c880b47e75f1bb1029dd6e47875cf15f419e6c857194c9bec75753aecc4ca966c40f915b0a0245cc1faac58eee3f4205cabe6795d99a64280902bb2afb7fee4
7
+ data.tar.gz: 8611b976a843d2588b9b4a0fff042ebf66afa6c3077c680945f914b2535f5e87b126d01194b91448517eefd338a593c649862c3d7dcb092a4cfd500f77af8fbb
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+
2
+ vendor/
3
+
4
+ \.idea/
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-azuremonitormetrics (0.0.10)
4
+ fluent-plugin-azuremonitormetrics (0.0.2)
5
5
  azure_mgmt_monitor (~> 0.11.0)
6
6
  fluentd (>= 0.10.30)
7
7
 
@@ -11,7 +11,7 @@ GEM
11
11
  azure_mgmt_monitor (0.11.0)
12
12
  ms_rest_azure (~> 0.8.0)
13
13
  concurrent-ruby (1.0.5)
14
- cool.io (1.5.1)
14
+ cool.io (1.5.3)
15
15
  domain_name (0.5.20170404)
16
16
  unf (>= 0.0.5, < 1.0.0)
17
17
  faraday (0.13.1)
@@ -19,7 +19,7 @@ GEM
19
19
  faraday-cookie_jar (0.0.6)
20
20
  faraday (>= 0.7.4)
21
21
  http-cookie (~> 1.0.0)
22
- fluentd (0.14.21)
22
+ fluentd (0.14.23)
23
23
  cool.io (>= 1.4.5, < 2.0.0)
24
24
  http_parser.rb (>= 0.5.1, < 0.7.0)
25
25
  msgpack (>= 0.7.0, < 2.0.0)
@@ -33,7 +33,7 @@ GEM
33
33
  http-cookie (1.0.3)
34
34
  domain_name (~> 0.5)
35
35
  http_parser.rb (0.6.0)
36
- ms_rest (0.7.1)
36
+ ms_rest (0.7.2)
37
37
  concurrent-ruby (~> 1.0)
38
38
  faraday (~> 0.9)
39
39
  timeliness (~> 0.3)
@@ -55,14 +55,14 @@ GEM
55
55
  power_assert
56
56
  thread_safe (0.3.6)
57
57
  timeliness (0.3.8)
58
- tzinfo (1.2.3)
58
+ tzinfo (1.2.4)
59
59
  thread_safe (~> 0.1)
60
60
  tzinfo-data (1.2017.3)
61
61
  tzinfo (>= 1.0.0)
62
62
  unf (0.1.4)
63
63
  unf_ext
64
64
  unf_ext (0.0.7.4)
65
- yajl-ruby (1.3.0)
65
+ yajl-ruby (1.3.1)
66
66
 
67
67
  PLATFORMS
68
68
  ruby
data/README.md CHANGED
@@ -33,7 +33,7 @@ $ gem install fluent-plugin-azuremonitormetrics
33
33
  orderby [The aggregation to use for sorting] (example: sum asc)
34
34
  filter [filter to reduce metric data] (example A eq 'a1' and B eq '*')
35
35
  result_type [reduces the set of data collected]
36
- metric [The name of the metric to retrive]
36
+ metrics [The name of the metrics to retrive, sperated by commas] (example: Network Out,Percentage CPU)
37
37
  api_version [api version] (default: "2017-05-01-preview")
38
38
  </source>
39
39
  ```
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "fluent-plugin-azuremonitormetrics"
7
- gem.version = "0.0.1"
7
+ gem.version = "0.0.2"
8
8
  gem.authors = ["Ilana Kantorov"]
9
9
  gem.email = ["ilanak@microsoft.com"]
10
10
  gem.description = %q{Input plugin for Azure Monitor Metrics.}
@@ -28,8 +28,8 @@ class Fluent::AzureMonitorMetricsInput < Fluent::Input
28
28
  config_param :orderby, :string, :default => nil
29
29
  config_param :filter, :string, :default => nil
30
30
  config_param :result_type, :string, :default => nil
31
- config_param :metric, :string, :default => nil
32
- config_param :api_version, :string, :default => "2017-05-01-preview"
31
+ config_param :metrics, :string, :default => nil
32
+ config_param :api_version, :string, :default => "2016-09-01"
33
33
 
34
34
  def initialize
35
35
  super
@@ -54,26 +54,42 @@ class Fluent::AzureMonitorMetricsInput < Fluent::Input
54
54
  @watcher.join
55
55
  end
56
56
 
57
- def set_path_options(timespan, custom_headers)
58
- fail ArgumentError, 'timespan is nil' if timespan.nil?
57
+ def get_param_string(original_param, query_string)
58
+ array = original_param.split(',')
59
+ param_string = ''
60
+ array.each {|var|
61
+ if param_string.empty?
62
+ param_string += "#{query_string} eq '#{var}'"
63
+ else
64
+ param_string += " or #{query_string} eq '#{var}'"
65
+ end
66
+ }
67
+
68
+ "and (#{param_string})"
69
+
70
+ end
71
+
72
+ def set_path_options(start_time, end_time, custom_headers)
73
+ fail ArgumentError, 'start_time is nil' if start_time.nil?
59
74
  request_headers = {}
60
75
 
61
76
  # Set Headers
62
77
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
63
78
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
64
79
 
80
+ metrics_string = get_param_string(@metrics, "name.value")
81
+ aggregation_string = @aggregation.empty? ? '' : get_param_string(@aggregation, "aggregationType")
82
+
83
+ filter = "timeGrain eq duration'#{@interval}' #{metrics_string} #{aggregation_string} and startTime eq #{start_time.utc.iso8601} and endTime eq #{end_time.utc.iso8601}"
84
+ log.debug filter
65
85
  {
66
86
  middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
67
87
  path_params: {'resourceUri' => @resource_uri},
68
88
  query_params: {'api-version' => @api_version,
69
- 'timespan' => timespan,
70
- 'interval' => @interval,
71
- 'aggregation' => @aggregation,
72
89
  '$top' => @top,
73
90
  '$orderby' => @orderby,
74
- '$filter' => @filter,
75
- 'resultType' => @result_type,
76
- 'metric' => @metric},
91
+ '$filter' => filter,
92
+ 'resultType' => @result_type},
77
93
  headers: request_headers.merge(custom_headers || {}),
78
94
  base_url: @client.base_url
79
95
  }
@@ -90,9 +106,9 @@ class Fluent::AzureMonitorMetricsInput < Fluent::Input
90
106
  end_time = @next_fetch_time
91
107
 
92
108
  log.debug "start time: #{start_time}, end time: #{end_time}"
93
- timespan_string = "#{start_time.utc.iso8601}/#{end_time.utc.iso8601}"
94
109
 
95
- monitor_metrics_promise = get_monitor_metrics_async(timespan_string)
110
+
111
+ monitor_metrics_promise = get_monitor_metrics_async(start_time, end_time)
96
112
  monitor_metrics = monitor_metrics_promise.value!
97
113
 
98
114
  router.emit(@tag, Time.now.to_i, monitor_metrics.body['value'])
@@ -102,10 +118,10 @@ class Fluent::AzureMonitorMetricsInput < Fluent::Input
102
118
 
103
119
  end
104
120
 
105
- def get_monitor_metrics_async(timespan,filter = nil, custom_headers = nil)
121
+ def get_monitor_metrics_async(start_time, end_time,filter = nil, custom_headers = nil)
106
122
  path_template = '/{resourceUri}/providers/microsoft.insights/metrics'
107
123
 
108
- options = set_path_options(timespan, custom_headers)
124
+ options = set_path_options(start_time, end_time, custom_headers)
109
125
  promise = @client.make_request_async(:get, path_template, options)
110
126
 
111
127
  promise = promise.then do |result|
@@ -13,15 +13,14 @@ class AzureMonitorMetricsInputTest < Test::Unit::TestCase
13
13
  client_secret test_client_secret
14
14
 
15
15
  timespan 300
16
+ aggregation Average,count
16
17
  interval PT1M
17
18
  resource_uri /subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity
18
- aggregation Average,count
19
19
  top 20
20
20
  orderby sum asc
21
- filter A eq 'a1' and B eq '*'
21
+ filter timeGrain eq duration'PT1M' and (name.value eq 'Network Out' or name.value eq 'Percentage CPU') and (aggregationType eq 'Average' or aggregationType eq 'Count') and startTime eq 2017-10-11T23:00:00Z and endTime eq 2017-11-22T15:00:00Z
22
22
  result_type Success
23
- metric Percentage CPU
24
- api_version 2017-05-01-preview
23
+ api_version 2016-09-01
25
24
  ]
26
25
 
27
26
  def create_driver_monitor_metrics(conf = CONFIG_MONITOR_METRICS)
@@ -34,28 +33,24 @@ class AzureMonitorMetricsInputTest < Test::Unit::TestCase
34
33
  assert_equal 'test_tenant_id', d.instance.tenant_id
35
34
  assert_equal 'test_client_id', d.instance.client_id
36
35
  assert_equal 300, d.instance.timespan
37
- assert_equal 'PT1M', d.instance.interval
38
36
  assert_equal '/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity', d.instance.resource_uri
39
- assert_equal 'Average,count', d.instance.aggregation
40
37
  assert_equal 20, d.instance.top
41
38
  assert_equal 'sum asc', d.instance.orderby
42
- assert_equal 'A eq \'a1\' and B eq \'*\'', d.instance.filter
39
+ assert_equal "timeGrain eq duration'PT1M' and (name.value eq 'Network Out' or name.value eq 'Percentage CPU') and (aggregationType eq 'Average' or aggregationType eq 'Count') and startTime eq 2017-10-11T23:00:00Z and endTime eq 2017-11-22T15:00:00Z", d.instance.filter
43
40
  assert_equal 'Success', d.instance.result_type
44
- assert_equal 'Percentage CPU', d.instance.metric
45
- assert_equal '2017-05-01-preview', d.instance.api_version
41
+ assert_equal '2016-09-01', d.instance.api_version
46
42
  end
47
43
 
48
44
  def test_set_query_options
49
45
  d = create_driver_monitor_metrics
50
- query_options = d.instance.set_path_options(d.instance.filter, {})
51
- assert_equal '2017-05-01-preview', query_options[:query_params]['api-version']
52
- assert_equal 'A eq \'a1\' and B eq \'*\'', query_options[:query_params]['$filter']
53
- assert_equal 'Average,count', query_options[:query_params]['aggregation']
54
- assert_equal 'PT1M', query_options[:query_params]['interval']
46
+ start_time = Time.now - 1000
47
+ end_time = Time.now
48
+ query_options = d.instance.set_path_options(start_time, end_time, {})
49
+ assert_equal '2016-09-01', query_options[:query_params]['api-version']
50
+ assert_equal "timeGrain eq duration'PT1M' and (name.value eq 'Network Out' or name.value eq 'Percentage CPU') and (aggregationType eq 'Average' or aggregationType eq 'Count') and startTime eq #{start_time.utc.iso8601} and endTime eq #{end_time.utc.iso8601}", query_options[:query_params]['$filter']
55
51
  assert_equal 20, query_options[:query_params]['$top']
56
52
  assert_equal 'sum asc', query_options[:query_params]['$orderby']
57
53
  assert_equal 'Success', query_options[:query_params]['resultType']
58
- assert_equal 'Percentage CPU', query_options[:query_params]['metric']
59
54
  assert_equal '/subscriptions/b324c52b-4073-4807-93af-e07d289c093e/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/larryshoebox/blobServices/default/providers/Microsoft.Insights/metrics/BlobCapacity', query_options[:path_params]['resourceUri']
60
55
  end
61
56
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-azuremonitormetrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilana Kantorov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-29 00:00:00.000000000 Z
11
+ date: 2017-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -74,13 +74,7 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".bundle/config"
77
- - ".idea/.rakeTasks"
78
- - ".idea/fluent-plugin-azuremonitormetrics.iml"
79
- - ".idea/inspectionProfiles/Project_Default.xml"
80
- - ".idea/misc.xml"
81
- - ".idea/modules.xml"
82
- - ".idea/vcs.xml"
83
- - ".idea/workspace.xml"
77
+ - ".gitignore"
84
78
  - Gemfile
85
79
  - Gemfile.fluentd.0.12
86
80
  - Gemfile.lock
data/.idea/.rakeTasks DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
7
- --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build fluent-plugin-azuremonitormetrics-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install fluent-plugin-azuremonitormetrics-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install fluent-plugin-azuremonitormetrics-0.0.1.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.0.1 and build and push fluent-plugin-azuremonitormetrics-0.0.1.gem to Rubygems" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /></RakeGroup></Settings>
@@ -1,35 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
9
- </content>
10
- <orderEntry type="inheritedJdk" />
11
- <orderEntry type="sourceFolder" forTests="false" />
12
- <orderEntry type="library" scope="PROVIDED" name="azure_mgmt_monitor (v0.11.0, ruby-2.3.1-p112) [gem]" level="application" />
13
- <orderEntry type="library" scope="PROVIDED" name="bundler (v1.15.4, ruby-2.3.1-p112) [gem]" level="application" />
14
- <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.0.5, ruby-2.3.1-p112) [gem]" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="cool.io (v1.5.1, ruby-2.3.1-p112) [gem]" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.20170404, ruby-2.3.1-p112) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="faraday (v0.13.1, ruby-2.3.1-p112) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="faraday-cookie_jar (v0.0.6, ruby-2.3.1-p112) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="fluentd (v0.12.40, ruby-2.3.1-p112) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.3, ruby-2.3.1-p112) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="http_parser.rb (v0.6.0, ruby-2.3.1-p112) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="ms_rest (v0.7.1, ruby-2.3.1-p112) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="ms_rest_azure (v0.8.2, ruby-2.3.1-p112) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="msgpack (v1.1.0, ruby-2.3.1-p112) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="multipart-post (v2.0.0, ruby-2.3.1-p112) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="rake (v12.1.0, ruby-2.3.1-p112) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.4, ruby-2.3.1-p112) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, ruby-2.3.1-p112) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="timeliness (v0.3.8, ruby-2.3.1-p112) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.3, ruby-2.3.1-p112) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, ruby-2.3.1-p112) [gem]" level="application" />
32
- <orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.4, ruby-2.3.1-p112) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="yajl-ruby (v1.3.0, ruby-2.3.1-p112) [gem]" level="application" />
34
- </component>
35
- </module>
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
5
- </profile>
6
- </component>
data/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.3.1-p112" project-jdk-type="RUBY_SDK" />
4
- </project>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/fluent-plugin-azuremonitormetrics.iml" filepath="$PROJECT_DIR$/.idea/fluent-plugin-azuremonitormetrics.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
data/.idea/workspace.xml DELETED
@@ -1,457 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="c7d31bc6-4041-4af4-8e88-da27a4a2c9ae" name="Default" comment="">
5
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.bundle/config" />
6
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/.rakeTasks" />
7
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/fluent-plugin-azuremonitormetrics.iml" />
8
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" />
9
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
10
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
11
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
12
- <change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
13
- </list>
14
- <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
15
- <option name="TRACKING_ENABLED" value="true" />
16
- <option name="SHOW_DIALOG" value="false" />
17
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
18
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
19
- <option name="LAST_RESOLUTION" value="IGNORE" />
20
- </component>
21
- <component name="CoverageDataManager">
22
- <SUITE FILE_PATH="coverage/fluent_plugin_azuremonitormetrics@test_configure_monitor_metrics__fluent_plugin_azuremonitormetrics.coverage" NAME="test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics Coverage Results" MODIFIED="1508856254112" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="fluent-plugin-azuremonitormetrics" />
23
- <SUITE FILE_PATH="coverage/fluent_plugin_azuremonitormetrics@activtylog.coverage" NAME="activtylog Coverage Results" MODIFIED="1508854594844" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="fluent-plugin-azuremonitormetrics" />
24
- <SUITE FILE_PATH="coverage/fluent_plugin_azuremonitormetrics@test_set_query_options__fluent_plugin_azuremonitormetrics.coverage" NAME="test_set_query_options: fluent-plugin-azuremonitormetrics Coverage Results" MODIFIED="1508856260804" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="fluent-plugin-azuremonitormetrics" />
25
- </component>
26
- <component name="FileEditorManager">
27
- <leaf>
28
- <file leaf-file-name="in_azuremonitormetrics.rb" pinned="false" current-in-tab="false">
29
- <entry file="file://$PROJECT_DIR$/lib/fluent/plugin/in_azuremonitormetrics.rb">
30
- <provider selected="true" editor-type-id="text-editor">
31
- <state relative-caret-position="440">
32
- <caret line="99" column="23" lean-forward="true" selection-start-line="99" selection-start-column="23" selection-end-line="99" selection-end-column="23" />
33
- <folding />
34
- </state>
35
- </provider>
36
- </entry>
37
- </file>
38
- <file leaf-file-name="fluent-plugin-azuremonitormetrics.gemspec" pinned="false" current-in-tab="true">
39
- <entry file="file://$PROJECT_DIR$/fluent-plugin-azuremonitormetrics.gemspec">
40
- <provider selected="true" editor-type-id="text-editor">
41
- <state relative-caret-position="234">
42
- <caret line="13" column="34" lean-forward="true" selection-start-line="13" selection-start-column="34" selection-end-line="13" selection-end-column="34" />
43
- <folding />
44
- </state>
45
- </provider>
46
- </entry>
47
- </file>
48
- <file leaf-file-name="Gemfile.fluentd.0.12" pinned="false" current-in-tab="false">
49
- <entry file="file://$PROJECT_DIR$/Gemfile.fluentd.0.12">
50
- <provider selected="true" editor-type-id="text-editor">
51
- <state relative-caret-position="0">
52
- <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
53
- <folding />
54
- </state>
55
- </provider>
56
- </entry>
57
- </file>
58
- <file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
59
- <entry file="file://$PROJECT_DIR$/Gemfile">
60
- <provider selected="true" editor-type-id="text-editor">
61
- <state relative-caret-position="0">
62
- <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
63
- <folding />
64
- </state>
65
- </provider>
66
- </entry>
67
- </file>
68
- <file leaf-file-name="" pinned="false" current-in-tab="false">
69
- <entry file="mock:///">
70
- <provider selected="true" editor-type-id="text-editor">
71
- <state relative-caret-position="0">
72
- <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="34" selection-end-column="1" />
73
- <folding />
74
- </state>
75
- </provider>
76
- </entry>
77
- </file>
78
- <file leaf-file-name="README.md" pinned="false" current-in-tab="false">
79
- <entry file="file://$PROJECT_DIR$/README.md">
80
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
81
- <state split_layout="SPLIT">
82
- <first_editor relative-caret-position="371">
83
- <caret line="52" column="0" lean-forward="true" selection-start-line="52" selection-start-column="0" selection-end-line="52" selection-end-column="0" />
84
- <folding />
85
- </first_editor>
86
- <second_editor />
87
- </state>
88
- </provider>
89
- </entry>
90
- </file>
91
- <file leaf-file-name="test_in_azuremonitormetrics.rb" pinned="false" current-in-tab="false">
92
- <entry file="file://$PROJECT_DIR$/test/plugin/test_in_azuremonitormetrics.rb">
93
- <provider selected="true" editor-type-id="text-editor">
94
- <state relative-caret-position="432">
95
- <caret line="47" column="28" lean-forward="false" selection-start-line="47" selection-start-column="28" selection-end-line="47" selection-end-column="28" />
96
- <folding />
97
- </state>
98
- </provider>
99
- </entry>
100
- </file>
101
- </leaf>
102
- </component>
103
- <component name="Git.Settings">
104
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
105
- </component>
106
- <component name="IdeDocumentHistory">
107
- <option name="CHANGED_PATHS">
108
- <list>
109
- <option value="$PROJECT_DIR$/Gemfile" />
110
- <option value="$PROJECT_DIR$/LICENSE" />
111
- <option value="$PROJECT_DIR$/test/plugin/test_in_azuremonitormetrics.rb" />
112
- <option value="$PROJECT_DIR$/activtylog.rb" />
113
- <option value="$PROJECT_DIR$/fluent-plugin-azuremonitormetrics.gemspec" />
114
- <option value="$PROJECT_DIR$/README.md" />
115
- <option value="$PROJECT_DIR$/lib/fluent/plugin/in_azuremonitormetrics.rb" />
116
- </list>
117
- </option>
118
- </component>
119
- <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
120
- <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
121
- <component name="JsGulpfileManager">
122
- <detection-done>true</detection-done>
123
- <sorting>DEFINITION_ORDER</sorting>
124
- </component>
125
- <component name="ProjectFrameBounds" extendedState="6">
126
- <option name="x" value="292" />
127
- <option name="y" value="44" />
128
- <option name="width" value="1400" />
129
- <option name="height" value="883" />
130
- </component>
131
- <component name="ProjectView">
132
- <navigator currentView="ProjectPane" proportions="" version="1">
133
- <flattenPackages />
134
- <showMembers />
135
- <showModules />
136
- <showLibraryContents />
137
- <hideEmptyPackages />
138
- <abbreviatePackageNames />
139
- <autoscrollToSource />
140
- <autoscrollFromSource />
141
- <sortByType />
142
- <manualOrder />
143
- <foldersAlwaysOnTop value="true" />
144
- </navigator>
145
- <panes>
146
- <pane id="Scope" />
147
- <pane id="Scratches" />
148
- <pane id="ProjectPane">
149
- <subPane>
150
- <expand>
151
- <path>
152
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
153
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
154
- </path>
155
- <path>
156
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
157
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
158
- <item name="lib" type="462c0819:PsiDirectoryNode" />
159
- </path>
160
- <path>
161
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
162
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
163
- <item name="lib" type="462c0819:PsiDirectoryNode" />
164
- <item name="fluent" type="462c0819:PsiDirectoryNode" />
165
- </path>
166
- <path>
167
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
168
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
169
- <item name="lib" type="462c0819:PsiDirectoryNode" />
170
- <item name="fluent" type="462c0819:PsiDirectoryNode" />
171
- <item name="plugin" type="462c0819:PsiDirectoryNode" />
172
- </path>
173
- <path>
174
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
175
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
176
- <item name="test" type="462c0819:PsiDirectoryNode" />
177
- </path>
178
- <path>
179
- <item name="fluent-plugin-azuremonitormetrics" type="b2602c69:ProjectViewProjectNode" />
180
- <item name="fluent-plugin-azuremonitormetrics" type="462c0819:PsiDirectoryNode" />
181
- <item name="test" type="462c0819:PsiDirectoryNode" />
182
- <item name="plugin" type="462c0819:PsiDirectoryNode" />
183
- </path>
184
- </expand>
185
- <select />
186
- </subPane>
187
- </pane>
188
- </panes>
189
- </component>
190
- <component name="PropertiesComponent">
191
- <property name="WebServerToolWindowFactoryState" value="false" />
192
- <property name="last_opened_file_path" value="$PROJECT_DIR$/../../fluent-plugin-azureactivitylog" />
193
- </component>
194
- <component name="RunDashboard">
195
- <option name="ruleStates">
196
- <list>
197
- <RuleState>
198
- <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
199
- </RuleState>
200
- <RuleState>
201
- <option name="name" value="StatusDashboardGroupingRule" />
202
- </RuleState>
203
- </list>
204
- </option>
205
- </component>
206
- <component name="RunManager" selected="Test::Unit/Shoulda/Minitest.test_set_query_options: fluent-plugin-azuremonitormetrics">
207
- <configuration name="activtylog" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
208
- <module name="fluent-plugin-azuremonitormetrics" />
209
- <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
210
- <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$" />
211
- <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
212
- <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
213
- <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
214
- <envs />
215
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
216
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
217
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
218
- <COVERAGE_PATTERN ENABLED="true">
219
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
220
- </COVERAGE_PATTERN>
221
- </EXTENSION>
222
- <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/activtylog.rb" />
223
- <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
224
- </configuration>
225
- <configuration name="test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
226
- <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
227
- <module name="fluent-plugin-azuremonitormetrics" />
228
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
229
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
230
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
231
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
232
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
233
- <envs>
234
- <env name="JRUBY_OPTS" value="-X+O" />
235
- </envs>
236
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
237
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
238
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
239
- <COVERAGE_PATTERN ENABLED="true">
240
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
241
- </COVERAGE_PATTERN>
242
- </EXTENSION>
243
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
244
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_in_azuremonitormetrics.rb" />
245
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
246
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_configure_monitor_metrics" />
247
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
248
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
249
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
250
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
251
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
252
- </configuration>
253
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
254
- <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
255
- <module name="fluent-plugin-azuremonitormetrics" />
256
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
257
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
258
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
259
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
260
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
261
- <envs>
262
- <env name="JRUBY_OPTS" value="-X+O" />
263
- </envs>
264
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
265
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
266
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
267
- <COVERAGE_PATTERN ENABLED="true">
268
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
269
- </COVERAGE_PATTERN>
270
- </EXTENSION>
271
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
272
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_in_azuremonitormetrics.rb" />
273
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
274
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_set_query_options" />
275
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
276
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
277
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
278
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
279
- <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
280
- </configuration>
281
- <list size="3">
282
- <item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_set_query_options: fluent-plugin-azuremonitormetrics" />
283
- <item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics" />
284
- <item index="2" class="java.lang.String" itemvalue="Ruby.activtylog" />
285
- </list>
286
- <recent_temporary>
287
- <list size="3">
288
- <item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_set_query_options: fluent-plugin-azuremonitormetrics" />
289
- <item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics" />
290
- <item index="2" class="java.lang.String" itemvalue="Ruby.activtylog" />
291
- </list>
292
- </recent_temporary>
293
- </component>
294
- <component name="ShelveChangesManager" show_recycled="false">
295
- <option name="remove_strategy" value="false" />
296
- </component>
297
- <component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
298
- <component name="TaskManager">
299
- <task active="true" id="Default" summary="Default task">
300
- <changelist id="c7d31bc6-4041-4af4-8e88-da27a4a2c9ae" name="Default" comment="" />
301
- <created>1508741060343</created>
302
- <option name="number" value="Default" />
303
- <option name="presentableId" value="Default" />
304
- <updated>1508741060343</updated>
305
- <workItem from="1508741061579" duration="1036000" />
306
- <workItem from="1508844897798" duration="12349000" />
307
- </task>
308
- <servers />
309
- </component>
310
- <component name="TestHistory">
311
- <history-entry file="test_configure_monitor_metrics__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 33m 09s.xml">
312
- <configuration name="test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
313
- </history-entry>
314
- <history-entry file="test_configure_monitor_metrics__fluent-plugin-azuremonitormetrics - 2017.10.24 at 14h 44m 15s.xml">
315
- <configuration name="test_configure_monitor_metrics: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
316
- </history-entry>
317
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 29m 27s.xml">
318
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
319
- </history-entry>
320
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 30m 02s.xml">
321
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
322
- </history-entry>
323
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 30m 13s.xml">
324
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
325
- </history-entry>
326
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 32m 01s.xml">
327
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
328
- </history-entry>
329
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 32m 16s.xml">
330
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
331
- </history-entry>
332
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 33m 05s.xml">
333
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
334
- </history-entry>
335
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 12h 35m 53s.xml">
336
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
337
- </history-entry>
338
- <history-entry file="test_set_query_options__fluent-plugin-azuremonitormetrics - 2017.10.24 at 14h 44m 21s.xml">
339
- <configuration name="test_set_query_options: fluent-plugin-azuremonitormetrics" configurationId="TestUnitRunConfigurationType" />
340
- </history-entry>
341
- </component>
342
- <component name="TimeTrackingManager">
343
- <option name="totallyTimeSpent" value="13385000" />
344
- </component>
345
- <component name="ToolWindowManager">
346
- <frame x="65" y="-4" width="1855" height="979" extended-state="6" />
347
- <editor active="true" />
348
- <layout>
349
- <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.18867925" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
350
- <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
351
- <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
352
- <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
353
- <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
354
- <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.34146342" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
355
- <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
356
- <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
357
- <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
358
- <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3991131" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
359
- <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
360
- <window_info id="Messages" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.30487806" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
361
- <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
362
- <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
363
- <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
364
- <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
365
- <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
366
- <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
367
- </layout>
368
- </component>
369
- <component name="TypeScriptGeneratedFilesManager">
370
- <option name="version" value="1" />
371
- </component>
372
- <component name="VcsContentAnnotationSettings">
373
- <option name="myLimit" value="2678400000" />
374
- </component>
375
- <component name="XDebuggerManager">
376
- <breakpoint-manager />
377
- <watches-manager />
378
- </component>
379
- <component name="editorHistoryManager">
380
- <entry file="file://$PROJECT_DIR$/Rakefile" />
381
- <entry file="file://$PROJECT_DIR$/LICENSE" />
382
- <entry file="file:///usr/bin/rake">
383
- <provider selected="true" editor-type-id="text-editor">
384
- <state relative-caret-position="144">
385
- <caret line="8" column="33" lean-forward="false" selection-start-line="8" selection-start-column="33" selection-end-line="8" selection-end-column="33" />
386
- </state>
387
- </provider>
388
- </entry>
389
- <entry file="file://$APPLICATION_HOME_DIR$/rubystubs23/date_time.rb">
390
- <provider selected="true" editor-type-id="text-editor">
391
- <state relative-caret-position="192">
392
- <caret line="287" column="13" lean-forward="false" selection-start-line="287" selection-start-column="13" selection-end-line="287" selection-end-column="13" />
393
- <folding />
394
- </state>
395
- </provider>
396
- </entry>
397
- <entry file="file://$PROJECT_DIR$/Gemfile.fluentd.0.12">
398
- <provider selected="true" editor-type-id="text-editor">
399
- <state relative-caret-position="0">
400
- <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
401
- <folding />
402
- </state>
403
- </provider>
404
- </entry>
405
- <entry file="file://$PROJECT_DIR$/activtylog.rb">
406
- <provider selected="true" editor-type-id="text-editor">
407
- <state relative-caret-position="432">
408
- <caret line="45" column="29" lean-forward="true" selection-start-line="45" selection-start-column="29" selection-end-line="45" selection-end-column="29" />
409
- <folding />
410
- </state>
411
- </provider>
412
- </entry>
413
- <entry file="file://$PROJECT_DIR$/Gemfile">
414
- <provider selected="true" editor-type-id="text-editor">
415
- <state relative-caret-position="0">
416
- <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
417
- <folding />
418
- </state>
419
- </provider>
420
- </entry>
421
- <entry file="file://$PROJECT_DIR$/test/plugin/test_in_azuremonitormetrics.rb">
422
- <provider selected="true" editor-type-id="text-editor">
423
- <state relative-caret-position="432">
424
- <caret line="47" column="28" lean-forward="false" selection-start-line="47" selection-start-column="28" selection-end-line="47" selection-end-column="28" />
425
- <folding />
426
- </state>
427
- </provider>
428
- </entry>
429
- <entry file="file://$PROJECT_DIR$/README.md">
430
- <provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
431
- <state split_layout="SPLIT">
432
- <first_editor relative-caret-position="371">
433
- <caret line="52" column="0" lean-forward="true" selection-start-line="52" selection-start-column="0" selection-end-line="52" selection-end-column="0" />
434
- <folding />
435
- </first_editor>
436
- <second_editor />
437
- </state>
438
- </provider>
439
- </entry>
440
- <entry file="file://$PROJECT_DIR$/lib/fluent/plugin/in_azuremonitormetrics.rb">
441
- <provider selected="true" editor-type-id="text-editor">
442
- <state relative-caret-position="440">
443
- <caret line="99" column="23" lean-forward="true" selection-start-line="99" selection-start-column="23" selection-end-line="99" selection-end-column="23" />
444
- <folding />
445
- </state>
446
- </provider>
447
- </entry>
448
- <entry file="file://$PROJECT_DIR$/fluent-plugin-azuremonitormetrics.gemspec">
449
- <provider selected="true" editor-type-id="text-editor">
450
- <state relative-caret-position="234">
451
- <caret line="13" column="34" lean-forward="true" selection-start-line="13" selection-start-column="34" selection-end-line="13" selection-end-column="34" />
452
- <folding />
453
- </state>
454
- </provider>
455
- </entry>
456
- </component>
457
- </project>