fluentd-plugin-kinesis-intuit 2.1.1
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 +7 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/aws-fluentd-plugin-kinesis-intuit.iml +55 -0
- data/.idea/misc.xml +7 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +1029 -0
- data/.travis.yml +14 -0
- data/CHANGELOG.md +115 -0
- data/CODE_OF_CONDUCT.md +4 -0
- data/COMMUNITY.md +26 -0
- data/CONTRIBUTING.md +160 -0
- data/CONTRIBUTORS.txt +6 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +112 -0
- data/LICENSE.txt +201 -0
- data/Makefile +44 -0
- data/NOTICE.txt +2 -0
- data/README.md +62 -0
- data/Rakefile +26 -0
- data/benchmark/task.rake +106 -0
- data/fluent-plugin-kinesis.gemspec +53 -0
- data/gemfiles/Gemfile.fluentd-0.14.10 +20 -0
- data/gemfiles/Gemfile.td-agent-3.2.0 +31 -0
- data/lib/fluent/plugin/kinesis.rb +146 -0
- data/lib/fluent/plugin/kinesis_helper/aggregator.rb +101 -0
- data/lib/fluent/plugin/kinesis_helper/api.rb +198 -0
- data/lib/fluent/plugin/kinesis_helper/client.rb +170 -0
- data/lib/fluent/plugin/out_kinesis_firehose.rb +59 -0
- data/lib/fluent/plugin/out_kinesis_streams.rb +160 -0
- data/lib/fluent/plugin/out_kinesis_streams_aggregated.rb +78 -0
- data/lib/fluent_plugin_kinesis/version.rb +17 -0
- metadata +290 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7fa22b91f13b557f36a2680c5598500c88075bd9
|
4
|
+
data.tar.gz: 4d54b2369d4e7495b6341727479ea0bfeebd6408
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3b2aca9fdec1aa1e2835d3fc81bd8d4fe71bd4b0fdd293e2ca11e4b23713adb34a9731ddc6eae0f1e4d6e906beab4e9a725e61d547e2fcd660e8916f275a1d92
|
7
|
+
data.tar.gz: c4827f3423bc4c2ad3f410df07ae617bee714f7b7d5eaa749eecd2e4ff6e230aed9658661d8ed761b0b76ed28f5a570f67cf6234fb9e54533dc9707a80c4c213
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
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" /></Settings>
|
@@ -0,0 +1,55 @@
|
|
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
|
+
<orderEntry type="inheritedJdk" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.5.2, ruby-2.3.3-p222) [gem]" level="application" />
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-eventstream (v1.0.1, ruby-2.3.3-p222) [gem]" level="application" />
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-partitions (v1.128.0, ruby-2.3.3-p222) [gem]" level="application" />
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-sdk-core (v3.44.2, ruby-2.3.3-p222) [gem]" level="application" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-sdk-firehose (v1.11.0, ruby-2.3.3-p222) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-sdk-kinesis (v1.9.0, ruby-2.3.3-p222) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="aws-sigv4 (v1.0.3, ruby-2.3.3-p222) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="binding_of_caller (v0.8.0, ruby-2.3.3-p222) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.4, ruby-2.3.3-p222) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="byebug (v10.0.2, ruby-2.3.3-p222) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.2, ruby-2.3.3-p222) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="cool.io (v1.5.3, ruby-2.3.3-p222) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="crack (v0.4.3, ruby-2.3.3-p222) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="debug_inspector (v0.0.3, ruby-2.3.3-p222) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="dig_rb (v1.0.1, ruby-2.3.3-p222) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="fakefs (v0.18.0, ruby-2.3.3-p222) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="fluentd (v1.3.3, ruby-2.3.3-p222) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="google-protobuf (v3.6.1, ruby-2.3.3-p222) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="hashdiff (v0.3.8, ruby-2.3.3-p222) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="http_parser.rb (v0.6.0, ruby-2.3.3-p222) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="jmespath (v1.4.0, ruby-2.3.3-p222) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="metaclass (v0.0.4, ruby-2.3.3-p222) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="method_source (v0.9.2, ruby-2.3.3-p222) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="mocha (v1.7.0, ruby-2.3.3-p222) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="msgpack (v1.2.4, ruby-2.3.3-p222) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="net-empty_port (v0.0.2, ruby-2.3.3-p222) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="power_assert (v1.1.3, ruby-2.3.3-p222) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="pry (v0.12.2, ruby-2.3.3-p222) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="pry-byebug (v3.6.0, ruby-2.3.3-p222) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="pry-stack_explorer (v0.4.9.3, ruby-2.3.3-p222) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v3.0.3, ruby-2.3.3-p222) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, ruby-2.3.3-p222) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="rr (v1.2.1, ruby-2.3.3-p222) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="safe_yaml (v1.0.4, ruby-2.3.3-p222) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="serverengine (v2.1.0, ruby-2.3.3-p222) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="sigdump (v0.2.4, ruby-2.3.3-p222) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="strptime (v0.2.3, ruby-2.3.3-p222) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="test-unit (v3.2.9, ruby-2.3.3-p222) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="test-unit-rr (v1.0.5, ruby-2.3.3-p222) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, ruby-2.3.3-p222) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.5, ruby-2.3.3-p222) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo-data (v1.2018.9, ruby-2.3.3-p222) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="webmock (v3.5.1, ruby-2.3.3-p222) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="yajl-ruby (v1.4.1, ruby-2.3.3-p222) [gem]" level="application" />
|
54
|
+
</component>
|
55
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JavaScriptSettings">
|
4
|
+
<option name="languageLevel" value="ES6" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.3.3-p222" project-jdk-type="RUBY_SDK" />
|
7
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
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/aws-fluentd-plugin-kinesis-intuit.iml" filepath="$PROJECT_DIR$/.idea/aws-fluentd-plugin-kinesis-intuit.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,1029 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="ee08b50a-5381-4ca6-89db-9818188cc132" name="Default Changelist" comment="">
|
5
|
+
<change beforePath="$PROJECT_DIR$/.idea/.rakeTasks" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.rakeTasks" afterDir="false" />
|
6
|
+
<change beforePath="$PROJECT_DIR$/.idea/aws-fluentd-plugin-kinesis-intuit.iml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/aws-fluentd-plugin-kinesis-intuit.iml" afterDir="false" />
|
7
|
+
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
8
|
+
<change beforePath="$PROJECT_DIR$/Gemfile.lock" beforeDir="false" afterPath="$PROJECT_DIR$/Gemfile.lock" afterDir="false" />
|
9
|
+
<change beforePath="$PROJECT_DIR$/fluent-plugin-kinesis.gemspec" beforeDir="false" afterPath="$PROJECT_DIR$/fluent-plugin-kinesis.gemspec" afterDir="false" />
|
10
|
+
</list>
|
11
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
12
|
+
<option name="SHOW_DIALOG" value="false" />
|
13
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
14
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
15
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
16
|
+
</component>
|
17
|
+
<component name="CoverageDataManager">
|
18
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_max_record_size__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_max_record_size: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536562576314" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
19
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_region__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_region: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536645505205" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
20
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@Run_test__test_out_kinesis_firehose___aws_fluentd_plugin_kinesis_intuit.rcov" NAME="Run test 'test_out_kinesis_firehose': aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536309476257" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
21
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_batch_request__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_batch_request: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536561590906" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
22
|
+
<SUITE FILE_PATH="coverage/aws_fluent_plugin_kinesis_intuit@All_tests_in_plugin__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="All tests in plugin: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1546835122525" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
23
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_host__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_host: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536647024305" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
24
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_format_payload__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_format_payload: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536648844548" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
25
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_payload__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_payload: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536649061544" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
26
|
+
<SUITE FILE_PATH="coverage/aws_fluent_plugin_kinesis_intuit@test_format_json__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_format_json: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536733216536" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
27
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_format_ltsv__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_format_ltsv: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536657374486" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
28
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_format__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_format: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536656304979" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
29
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_multibyte_input__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_multibyte_input: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536642465583" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
30
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_data_key__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_data_key: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536576714925" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
31
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_partition_key_not_found__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_partition_key_not_found: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536564370529" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
32
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_host_default__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_host_default: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536648274340" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
33
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@Run_test__test_kinesis___aws_fluentd_plugin_kinesis_intuit.rcov" NAME="Run test 'test_kinesis': aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536309463905" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
34
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@Run_test__test_out_kinesis_streams___aws_fluentd_plugin_kinesis_intuit.rcov" NAME="Run test 'test_out_kinesis_streams': aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536651427199" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
35
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_configure__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_configure: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536645537148" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
36
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@Run_test__test_out_kinesis_streams_aggregated___aws_fluentd_plugin_kinesis_intuit.rcov" NAME="Run test 'test_out_kinesis_streams_aggregated': aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536309500416" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
37
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@out_kinesis_streams.rcov" NAME="out_kinesis_streams Coverage Results" MODIFIED="1536309448136" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib/fluent/plugin" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
38
|
+
<SUITE FILE_PATH="coverage/aws_fluentd_plugin_kinesis_intuit@test_record_count__aws_fluentd_plugin_kinesis_intuit.rcov" NAME="test_record_count: aws-fluentd-plugin-kinesis-intuit Coverage Results" MODIFIED="1536561698953" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="aws-fluentd-plugin-kinesis-intuit" />
|
39
|
+
</component>
|
40
|
+
<component name="FileEditorManager">
|
41
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
42
|
+
<file pinned="false" current-in-tab="false">
|
43
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
44
|
+
<provider selected="true" editor-type-id="text-editor" />
|
45
|
+
</entry>
|
46
|
+
</file>
|
47
|
+
<file pinned="false" current-in-tab="false">
|
48
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb">
|
49
|
+
<provider selected="true" editor-type-id="text-editor">
|
50
|
+
<state relative-caret-position="239">
|
51
|
+
<caret line="114" column="11" selection-start-line="114" selection-start-column="11" selection-end-line="114" selection-end-column="11" />
|
52
|
+
</state>
|
53
|
+
</provider>
|
54
|
+
</entry>
|
55
|
+
</file>
|
56
|
+
<file pinned="false" current-in-tab="true">
|
57
|
+
<entry file="file://$PROJECT_DIR$/fluent-plugin-kinesis.gemspec">
|
58
|
+
<provider selected="true" editor-type-id="text-editor">
|
59
|
+
<state relative-caret-position="214">
|
60
|
+
<caret line="20" column="31" selection-start-line="20" selection-start-column="31" selection-end-line="20" selection-end-column="31" />
|
61
|
+
</state>
|
62
|
+
</provider>
|
63
|
+
</entry>
|
64
|
+
</file>
|
65
|
+
<file pinned="false" current-in-tab="false">
|
66
|
+
<entry file="file://$PROJECT_DIR$/Makefile">
|
67
|
+
<provider selected="true" editor-type-id="text-editor" />
|
68
|
+
</entry>
|
69
|
+
</file>
|
70
|
+
<file pinned="false" current-in-tab="false">
|
71
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
72
|
+
<provider selected="true" editor-type-id="text-editor" />
|
73
|
+
</entry>
|
74
|
+
</file>
|
75
|
+
<file pinned="false" current-in-tab="false">
|
76
|
+
<entry file="file://$PROJECT_DIR$/gemfiles/Gemfile.td-agent-3.2.0">
|
77
|
+
<provider selected="true" editor-type-id="text-editor">
|
78
|
+
<state relative-caret-position="-136" />
|
79
|
+
</provider>
|
80
|
+
</entry>
|
81
|
+
</file>
|
82
|
+
<file pinned="false" current-in-tab="false">
|
83
|
+
<entry file="file://$PROJECT_DIR$/gemfiles/Gemfile.fluentd-0.14.10">
|
84
|
+
<provider selected="true" editor-type-id="text-editor" />
|
85
|
+
</entry>
|
86
|
+
</file>
|
87
|
+
<file pinned="false" current-in-tab="false">
|
88
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/filter_record_transformer.rb">
|
89
|
+
<provider selected="true" editor-type-id="text-editor">
|
90
|
+
<state relative-caret-position="173">
|
91
|
+
<caret line="229" selection-start-line="229" selection-end-line="229" />
|
92
|
+
</state>
|
93
|
+
</provider>
|
94
|
+
</entry>
|
95
|
+
</file>
|
96
|
+
<file pinned="false" current-in-tab="false">
|
97
|
+
<entry file="file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb">
|
98
|
+
<provider selected="true" editor-type-id="text-editor">
|
99
|
+
<state relative-caret-position="1236">
|
100
|
+
<caret line="149" selection-start-line="149" selection-end-line="149" />
|
101
|
+
</state>
|
102
|
+
</provider>
|
103
|
+
</entry>
|
104
|
+
</file>
|
105
|
+
<file pinned="false" current-in-tab="false">
|
106
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent_plugin_kinesis/version.rb">
|
107
|
+
<provider selected="true" editor-type-id="text-editor">
|
108
|
+
<state relative-caret-position="225">
|
109
|
+
<caret line="15" column="18" selection-start-line="15" selection-start-column="18" selection-end-line="15" selection-end-column="18" />
|
110
|
+
</state>
|
111
|
+
</provider>
|
112
|
+
</entry>
|
113
|
+
</file>
|
114
|
+
</leaf>
|
115
|
+
</component>
|
116
|
+
<component name="FindInProjectRecents">
|
117
|
+
<findStrings>
|
118
|
+
<find>UTF-8</find>
|
119
|
+
<find>@server</find>
|
120
|
+
<find>time</find>
|
121
|
+
<find>type</find>
|
122
|
+
<find>@data_key</find>
|
123
|
+
<find>json</find>
|
124
|
+
<find>format_</find>
|
125
|
+
<find>event</find>
|
126
|
+
<find>formatter_</find>
|
127
|
+
<find>MISSING_FIELD</find>
|
128
|
+
</findStrings>
|
129
|
+
</component>
|
130
|
+
<component name="Git.Settings">
|
131
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
132
|
+
</component>
|
133
|
+
<component name="IdeDocumentHistory">
|
134
|
+
<option name="CHANGED_PATHS">
|
135
|
+
<list>
|
136
|
+
<option value="$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb" />
|
137
|
+
<option value="$PROJECT_DIR$/README.md" />
|
138
|
+
<option value="$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb" />
|
139
|
+
<option value="$PROJECT_DIR$/lib/fluent_plugin_kinesis/version.rb" />
|
140
|
+
<option value="$PROJECT_DIR$/fluent-plugin-kinesis.gemspec" />
|
141
|
+
</list>
|
142
|
+
</option>
|
143
|
+
</component>
|
144
|
+
<component name="ProjectFrameBounds">
|
145
|
+
<option name="y" value="23" />
|
146
|
+
<option name="width" value="1440" />
|
147
|
+
<option name="height" value="792" />
|
148
|
+
</component>
|
149
|
+
<component name="ProjectView">
|
150
|
+
<navigator proportions="" version="1">
|
151
|
+
<foldersAlwaysOnTop value="true" />
|
152
|
+
</navigator>
|
153
|
+
<panes>
|
154
|
+
<pane id="Scope" />
|
155
|
+
<pane id="ProjectPane">
|
156
|
+
<subPane>
|
157
|
+
<expand>
|
158
|
+
<path>
|
159
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
160
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
161
|
+
</path>
|
162
|
+
<path>
|
163
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
164
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
165
|
+
<item name="gemfiles" type="462c0819:PsiDirectoryNode" />
|
166
|
+
</path>
|
167
|
+
<path>
|
168
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
169
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
170
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
171
|
+
</path>
|
172
|
+
<path>
|
173
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
174
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
175
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
176
|
+
<item name="fluent" type="462c0819:PsiDirectoryNode" />
|
177
|
+
</path>
|
178
|
+
<path>
|
179
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
180
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
181
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
182
|
+
<item name="fluent" type="462c0819:PsiDirectoryNode" />
|
183
|
+
<item name="plugin" type="462c0819:PsiDirectoryNode" />
|
184
|
+
</path>
|
185
|
+
<path>
|
186
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
187
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
188
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
189
|
+
<item name="fluent_plugin_kinesis" type="462c0819:PsiDirectoryNode" />
|
190
|
+
</path>
|
191
|
+
<path>
|
192
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="b2602c69:ProjectViewProjectNode" />
|
193
|
+
<item name="aws-fluent-plugin-kinesis-intuit" type="462c0819:PsiDirectoryNode" />
|
194
|
+
<item name="test" type="462c0819:PsiDirectoryNode" />
|
195
|
+
</path>
|
196
|
+
</expand>
|
197
|
+
<select />
|
198
|
+
</subPane>
|
199
|
+
</pane>
|
200
|
+
</panes>
|
201
|
+
</component>
|
202
|
+
<component name="PropertiesComponent">
|
203
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
204
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
205
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
206
|
+
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
207
|
+
</component>
|
208
|
+
<component name="RunDashboard">
|
209
|
+
<option name="ruleStates">
|
210
|
+
<list>
|
211
|
+
<RuleState>
|
212
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
213
|
+
</RuleState>
|
214
|
+
<RuleState>
|
215
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
216
|
+
</RuleState>
|
217
|
+
</list>
|
218
|
+
</option>
|
219
|
+
</component>
|
220
|
+
<component name="RunManager" selected="Test::Unit/Shoulda/Minitest.All tests in plugin: aws-fluentd-plugin-kinesis-intuit">
|
221
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
222
|
+
<module name="aws-fluentd-plugin-kinesis-intuit" />
|
223
|
+
<predefined_log_file enabled="true" id="RUBY_TESTUNIT" />
|
224
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-Ilib:test" />
|
225
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
226
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
227
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
228
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
229
|
+
<envs>
|
230
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
231
|
+
</envs>
|
232
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
233
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
234
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
235
|
+
<COVERAGE_PATTERN ENABLED="true">
|
236
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
237
|
+
</COVERAGE_PATTERN>
|
238
|
+
</EXTENSION>
|
239
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$/test/plugin" />
|
240
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
241
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/{*_test,test_*,*_spec}.rb" />
|
242
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
243
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
244
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
245
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
246
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
247
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
248
|
+
<method v="2" />
|
249
|
+
</configuration>
|
250
|
+
<configuration name="Run test 'test_out_kinesis_streams': aws-fluentd-plugin-kinesis-intuit" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
251
|
+
<module name="aws-fluentd-plugin-kinesis-intuit" />
|
252
|
+
<predefined_log_file enabled="true" id="RUBY_TESTUNIT" />
|
253
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-Ilib:test" />
|
254
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
255
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
256
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
257
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
258
|
+
<envs>
|
259
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
260
|
+
</envs>
|
261
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
262
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
263
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
264
|
+
<COVERAGE_PATTERN ENABLED="true">
|
265
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
266
|
+
</COVERAGE_PATTERN>
|
267
|
+
</EXTENSION>
|
268
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
269
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_out_kinesis_streams.rb" />
|
270
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
271
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
272
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
273
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
274
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
275
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
276
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
277
|
+
<method v="2" />
|
278
|
+
</configuration>
|
279
|
+
<configuration name="test_format: aws-fluentd-plugin-kinesis-intuit" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
280
|
+
<module name="aws-fluentd-plugin-kinesis-intuit" />
|
281
|
+
<predefined_log_file enabled="true" id="RUBY_TESTUNIT" />
|
282
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-Ilib:test" />
|
283
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
284
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
285
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
286
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
287
|
+
<envs>
|
288
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
289
|
+
</envs>
|
290
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
291
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
292
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
293
|
+
<COVERAGE_PATTERN ENABLED="true">
|
294
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
295
|
+
</COVERAGE_PATTERN>
|
296
|
+
</EXTENSION>
|
297
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
298
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_out_kinesis_streams.rb" />
|
299
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
300
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_format" />
|
301
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
302
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
303
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
304
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
305
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
306
|
+
<method v="2" />
|
307
|
+
</configuration>
|
308
|
+
<configuration name="test_format_json: aws-fluentd-plugin-kinesis-intuit" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
309
|
+
<module name="aws-fluentd-plugin-kinesis-intuit" />
|
310
|
+
<predefined_log_file enabled="true" id="RUBY_TESTUNIT" />
|
311
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-Ilib:test" />
|
312
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
313
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
314
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
315
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
316
|
+
<envs>
|
317
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
318
|
+
</envs>
|
319
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
320
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
321
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
322
|
+
<COVERAGE_PATTERN ENABLED="true">
|
323
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
324
|
+
</COVERAGE_PATTERN>
|
325
|
+
</EXTENSION>
|
326
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
327
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_out_kinesis_streams.rb" />
|
328
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
329
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_format_json" />
|
330
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
331
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
332
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
333
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
334
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
335
|
+
<method v="2" />
|
336
|
+
</configuration>
|
337
|
+
<configuration name="test_format_ltsv: aws-fluentd-plugin-kinesis-intuit" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
338
|
+
<module name="aws-fluentd-plugin-kinesis-intuit" />
|
339
|
+
<predefined_log_file enabled="true" id="RUBY_TESTUNIT" />
|
340
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-Ilib:test" />
|
341
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
342
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
343
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
344
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
345
|
+
<envs>
|
346
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
347
|
+
</envs>
|
348
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
349
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
350
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov">
|
351
|
+
<COVERAGE_PATTERN ENABLED="true">
|
352
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
353
|
+
</COVERAGE_PATTERN>
|
354
|
+
</EXTENSION>
|
355
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
356
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/plugin/test_out_kinesis_streams.rb" />
|
357
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
358
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_format_ltsv" />
|
359
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
360
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
361
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
362
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
363
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
364
|
+
<method v="2" />
|
365
|
+
</configuration>
|
366
|
+
<list>
|
367
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.All tests in plugin: aws-fluentd-plugin-kinesis-intuit" />
|
368
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.Run test 'test_out_kinesis_streams': aws-fluentd-plugin-kinesis-intuit" />
|
369
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format: aws-fluentd-plugin-kinesis-intuit" />
|
370
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format_json: aws-fluentd-plugin-kinesis-intuit" />
|
371
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format_ltsv: aws-fluentd-plugin-kinesis-intuit" />
|
372
|
+
</list>
|
373
|
+
<recent_temporary>
|
374
|
+
<list>
|
375
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.All tests in plugin: aws-fluentd-plugin-kinesis-intuit" />
|
376
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format_json: aws-fluentd-plugin-kinesis-intuit" />
|
377
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format_ltsv: aws-fluentd-plugin-kinesis-intuit" />
|
378
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.test_format: aws-fluentd-plugin-kinesis-intuit" />
|
379
|
+
<item itemvalue="Test::Unit/Shoulda/Minitest.Run test 'test_out_kinesis_streams': aws-fluentd-plugin-kinesis-intuit" />
|
380
|
+
</list>
|
381
|
+
</recent_temporary>
|
382
|
+
</component>
|
383
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
384
|
+
<component name="SvnConfiguration">
|
385
|
+
<configuration />
|
386
|
+
</component>
|
387
|
+
<component name="TaskManager">
|
388
|
+
<task active="true" id="Default" summary="Default task">
|
389
|
+
<changelist id="ee08b50a-5381-4ca6-89db-9818188cc132" name="Default Changelist" comment="" />
|
390
|
+
<created>1536309351824</created>
|
391
|
+
<option name="number" value="Default" />
|
392
|
+
<option name="presentableId" value="Default" />
|
393
|
+
<updated>1536309351824</updated>
|
394
|
+
<workItem from="1536309353157" duration="32774000" />
|
395
|
+
<workItem from="1536729695619" duration="334000" />
|
396
|
+
<workItem from="1536732898668" duration="6154000" />
|
397
|
+
<workItem from="1546579271005" duration="22000" />
|
398
|
+
<workItem from="1546579315429" duration="6909000" />
|
399
|
+
</task>
|
400
|
+
<servers />
|
401
|
+
</component>
|
402
|
+
<component name="TestHistory">
|
403
|
+
<history-entry file="test_format_ltsv__aws-fluentd-plugin-kinesis-intuit - 2018.09.11 at 14h 58m 04s.xml">
|
404
|
+
<configuration name="test_format_ltsv: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
405
|
+
</history-entry>
|
406
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2018.09.12 at 11h 46m 17s.xml">
|
407
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
408
|
+
</history-entry>
|
409
|
+
<history-entry file="test_format_json__aws-fluentd-plugin-kinesis-intuit - 2018.09.12 at 11h 50m 19s.xml">
|
410
|
+
<configuration name="test_format_json: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
411
|
+
</history-entry>
|
412
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2018.09.12 at 11h 51m 30s.xml">
|
413
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
414
|
+
</history-entry>
|
415
|
+
<history-entry file="test_format_json__aws-fluentd-plugin-kinesis-intuit - 2018.09.25 at 11h 04m 40s.xml">
|
416
|
+
<configuration name="test_format_json: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
417
|
+
</history-entry>
|
418
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2019.01.04 at 10h 53m 15s.xml">
|
419
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
420
|
+
</history-entry>
|
421
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2019.01.04 at 11h 08m 24s.xml">
|
422
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
423
|
+
</history-entry>
|
424
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2019.01.04 at 14h 35m 10s.xml">
|
425
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
426
|
+
</history-entry>
|
427
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2019.01.05 at 17h 49m 21s.xml">
|
428
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
429
|
+
</history-entry>
|
430
|
+
<history-entry file="All_tests_in_plugin__aws-fluentd-plugin-kinesis-intuit - 2019.01.07 at 09h 56m 35s.xml">
|
431
|
+
<configuration name="All tests in plugin: aws-fluentd-plugin-kinesis-intuit" configurationId="TestUnitRunConfigurationType" />
|
432
|
+
</history-entry>
|
433
|
+
</component>
|
434
|
+
<component name="TimeTrackingManager">
|
435
|
+
<option name="totallyTimeSpent" value="46193000" />
|
436
|
+
</component>
|
437
|
+
<component name="ToolWindowManager">
|
438
|
+
<frame x="0" y="23" width="1440" height="792" extended-state="0" />
|
439
|
+
<editor active="true" />
|
440
|
+
<layout>
|
441
|
+
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.2639485" />
|
442
|
+
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
443
|
+
<window_info id="Favorites" order="2" side_tool="true" />
|
444
|
+
<window_info anchor="bottom" id="Messages" />
|
445
|
+
<window_info anchor="bottom" id="Message" order="0" />
|
446
|
+
<window_info anchor="bottom" id="Find" order="1" />
|
447
|
+
<window_info anchor="bottom" id="Run" order="2" visible="true" weight="0.36571428" />
|
448
|
+
<window_info anchor="bottom" id="Debug" order="3" sideWeight="0.49928468" weight="0.39914164" />
|
449
|
+
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
450
|
+
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
451
|
+
<window_info anchor="bottom" id="TODO" order="6" />
|
452
|
+
<window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
|
453
|
+
<window_info anchor="bottom" id="Database Changes" order="8" show_stripe_button="false" />
|
454
|
+
<window_info anchor="bottom" id="Version Control" order="9" />
|
455
|
+
<window_info anchor="bottom" id="Terminal" order="10" />
|
456
|
+
<window_info anchor="bottom" id="Event Log" order="11" sideWeight="0.5007153" side_tool="true" weight="0.4" />
|
457
|
+
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
458
|
+
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
459
|
+
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
460
|
+
<window_info anchor="right" id="Database" order="3" />
|
461
|
+
</layout>
|
462
|
+
</component>
|
463
|
+
<component name="TypeScriptGeneratedFilesManager">
|
464
|
+
<option name="version" value="1" />
|
465
|
+
</component>
|
466
|
+
<component name="XDebuggerManager">
|
467
|
+
<breakpoint-manager>
|
468
|
+
<breakpoints>
|
469
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
470
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
471
|
+
<line>78</line>
|
472
|
+
<option name="timeStamp" value="1" />
|
473
|
+
</line-breakpoint>
|
474
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
475
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
476
|
+
<line>79</line>
|
477
|
+
<option name="timeStamp" value="2" />
|
478
|
+
</line-breakpoint>
|
479
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
480
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
481
|
+
<line>81</line>
|
482
|
+
<option name="timeStamp" value="3" />
|
483
|
+
</line-breakpoint>
|
484
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
485
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
486
|
+
<line>103</line>
|
487
|
+
<option name="timeStamp" value="4" />
|
488
|
+
</line-breakpoint>
|
489
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
490
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
491
|
+
<line>104</line>
|
492
|
+
<option name="timeStamp" value="5" />
|
493
|
+
</line-breakpoint>
|
494
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
495
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
496
|
+
<line>105</line>
|
497
|
+
<option name="timeStamp" value="6" />
|
498
|
+
</line-breakpoint>
|
499
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
500
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
501
|
+
<line>148</line>
|
502
|
+
<option name="timeStamp" value="7" />
|
503
|
+
</line-breakpoint>
|
504
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
505
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
506
|
+
<line>150</line>
|
507
|
+
<option name="timeStamp" value="8" />
|
508
|
+
</line-breakpoint>
|
509
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
510
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
511
|
+
<line>172</line>
|
512
|
+
<option name="timeStamp" value="9" />
|
513
|
+
</line-breakpoint>
|
514
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
515
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
516
|
+
<line>174</line>
|
517
|
+
<option name="timeStamp" value="10" />
|
518
|
+
</line-breakpoint>
|
519
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
520
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
521
|
+
<line>175</line>
|
522
|
+
<option name="timeStamp" value="11" />
|
523
|
+
</line-breakpoint>
|
524
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
525
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
526
|
+
<line>176</line>
|
527
|
+
<option name="timeStamp" value="13" />
|
528
|
+
</line-breakpoint>
|
529
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
530
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
531
|
+
<line>161</line>
|
532
|
+
<option name="timeStamp" value="14" />
|
533
|
+
</line-breakpoint>
|
534
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
535
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
536
|
+
<line>164</line>
|
537
|
+
<option name="timeStamp" value="15" />
|
538
|
+
</line-breakpoint>
|
539
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
540
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
541
|
+
<line>167</line>
|
542
|
+
<option name="timeStamp" value="16" />
|
543
|
+
</line-breakpoint>
|
544
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
545
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
546
|
+
<line>64</line>
|
547
|
+
<option name="timeStamp" value="17" />
|
548
|
+
</line-breakpoint>
|
549
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
550
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
551
|
+
<line>65</line>
|
552
|
+
<option name="timeStamp" value="18" />
|
553
|
+
</line-breakpoint>
|
554
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
555
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
556
|
+
<line>69</line>
|
557
|
+
<option name="timeStamp" value="19" />
|
558
|
+
</line-breakpoint>
|
559
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
560
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
561
|
+
<line>96</line>
|
562
|
+
<option name="timeStamp" value="20" />
|
563
|
+
</line-breakpoint>
|
564
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
565
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
566
|
+
<line>98</line>
|
567
|
+
<option name="timeStamp" value="21" />
|
568
|
+
</line-breakpoint>
|
569
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
570
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
571
|
+
<line>99</line>
|
572
|
+
<option name="timeStamp" value="22" />
|
573
|
+
</line-breakpoint>
|
574
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
575
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
576
|
+
<line>97</line>
|
577
|
+
<option name="timeStamp" value="23" />
|
578
|
+
</line-breakpoint>
|
579
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
580
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/kinesis.rb</url>
|
581
|
+
<line>92</line>
|
582
|
+
<option name="timeStamp" value="29" />
|
583
|
+
</line-breakpoint>
|
584
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
585
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb</url>
|
586
|
+
<line>123</line>
|
587
|
+
<option name="timeStamp" value="31" />
|
588
|
+
</line-breakpoint>
|
589
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
590
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb</url>
|
591
|
+
<line>124</line>
|
592
|
+
<option name="timeStamp" value="32" />
|
593
|
+
</line-breakpoint>
|
594
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
595
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/kinesis.rb</url>
|
596
|
+
<line>87</line>
|
597
|
+
<option name="timeStamp" value="33" />
|
598
|
+
</line-breakpoint>
|
599
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
600
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
601
|
+
<line>166</line>
|
602
|
+
<option name="timeStamp" value="34" />
|
603
|
+
</line-breakpoint>
|
604
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
605
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb</url>
|
606
|
+
<line>78</line>
|
607
|
+
<option name="timeStamp" value="35" />
|
608
|
+
</line-breakpoint>
|
609
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
610
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
611
|
+
<line>182</line>
|
612
|
+
<option name="timeStamp" value="36" />
|
613
|
+
</line-breakpoint>
|
614
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
615
|
+
<url>file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb</url>
|
616
|
+
<line>107</line>
|
617
|
+
<option name="timeStamp" value="37" />
|
618
|
+
</line-breakpoint>
|
619
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
620
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
621
|
+
<line>205</line>
|
622
|
+
<option name="timeStamp" value="39" />
|
623
|
+
</line-breakpoint>
|
624
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
625
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
626
|
+
<line>209</line>
|
627
|
+
<option name="timeStamp" value="40" />
|
628
|
+
</line-breakpoint>
|
629
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
630
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
631
|
+
<line>92</line>
|
632
|
+
<option name="timeStamp" value="43" />
|
633
|
+
</line-breakpoint>
|
634
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
635
|
+
<url>file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb</url>
|
636
|
+
<line>93</line>
|
637
|
+
<option name="timeStamp" value="44" />
|
638
|
+
</line-breakpoint>
|
639
|
+
</breakpoints>
|
640
|
+
</breakpoint-manager>
|
641
|
+
</component>
|
642
|
+
<component name="debuggerHistoryManager">
|
643
|
+
<expressions id="evaluateExpression">
|
644
|
+
<expression>
|
645
|
+
<expression-string>@_formatters</expression-string>
|
646
|
+
<language-id>ruby</language-id>
|
647
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
648
|
+
</expression>
|
649
|
+
<expression>
|
650
|
+
<expression-string>record[@type]</expression-string>
|
651
|
+
<language-id>ruby</language-id>
|
652
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
653
|
+
</expression>
|
654
|
+
<expression>
|
655
|
+
<expression-string>record[@data_key]</expression-string>
|
656
|
+
<language-id>ruby</language-id>
|
657
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
658
|
+
</expression>
|
659
|
+
<expression>
|
660
|
+
<expression-string>actual["event"]</expression-string>
|
661
|
+
<language-id>ruby</language-id>
|
662
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
663
|
+
</expression>
|
664
|
+
<expression>
|
665
|
+
<expression-string>actual["host"]</expression-string>
|
666
|
+
<language-id>ruby</language-id>
|
667
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
668
|
+
</expression>
|
669
|
+
<expression>
|
670
|
+
<expression-string>actual[host]</expression-string>
|
671
|
+
<language-id>ruby</language-id>
|
672
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
673
|
+
</expression>
|
674
|
+
<expression>
|
675
|
+
<expression-string>actual</expression-string>
|
676
|
+
<language-id>ruby</language-id>
|
677
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
678
|
+
</expression>
|
679
|
+
<expression>
|
680
|
+
<expression-string>actual[event]</expression-string>
|
681
|
+
<language-id>ruby</language-id>
|
682
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
683
|
+
</expression>
|
684
|
+
<expression>
|
685
|
+
<expression-string>actual[:event]</expression-string>
|
686
|
+
<language-id>ruby</language-id>
|
687
|
+
<evaluation-mode>EXPRESSION</evaluation-mode>
|
688
|
+
</expression>
|
689
|
+
</expressions>
|
690
|
+
</component>
|
691
|
+
<component name="editorHistoryManager">
|
692
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/unique_id.rb">
|
693
|
+
<provider selected="true" editor-type-id="text-editor">
|
694
|
+
<state relative-caret-position="154">
|
695
|
+
<caret line="21" selection-start-line="21" selection-end-line="21" />
|
696
|
+
</state>
|
697
|
+
</provider>
|
698
|
+
</entry>
|
699
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/buffer/chunk.rb">
|
700
|
+
<provider selected="true" editor-type-id="text-editor">
|
701
|
+
<state relative-caret-position="184">
|
702
|
+
<caret line="108" selection-start-line="108" selection-end-line="108" />
|
703
|
+
</state>
|
704
|
+
</provider>
|
705
|
+
</entry>
|
706
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/buffer/memory_chunk.rb">
|
707
|
+
<provider selected="true" editor-type-id="text-editor">
|
708
|
+
<state relative-caret-position="124">
|
709
|
+
<caret line="56" selection-start-line="56" selection-end-line="56" />
|
710
|
+
</state>
|
711
|
+
</provider>
|
712
|
+
</entry>
|
713
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/buffer.rb">
|
714
|
+
<provider selected="true" editor-type-id="text-editor">
|
715
|
+
<state relative-caret-position="124">
|
716
|
+
<caret line="356" selection-start-line="356" selection-end-line="356" />
|
717
|
+
</state>
|
718
|
+
</provider>
|
719
|
+
</entry>
|
720
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/timeout.rb">
|
721
|
+
<provider selected="true" editor-type-id="text-editor">
|
722
|
+
<state relative-caret-position="154">
|
723
|
+
<caret line="109" selection-start-line="109" selection-end-line="109" />
|
724
|
+
</state>
|
725
|
+
</provider>
|
726
|
+
</entry>
|
727
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/multi_json-1.13.1/lib/multi_json.rb">
|
728
|
+
<provider selected="true" editor-type-id="text-editor">
|
729
|
+
<state relative-caret-position="169">
|
730
|
+
<caret line="132" selection-start-line="132" selection-end-line="132" />
|
731
|
+
</state>
|
732
|
+
</provider>
|
733
|
+
</entry>
|
734
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/compat/output.rb">
|
735
|
+
<provider selected="true" editor-type-id="text-editor">
|
736
|
+
<state relative-caret-position="315">
|
737
|
+
<caret line="204" column="10" selection-start-line="204" selection-start-column="10" selection-end-line="204" selection-end-column="10" />
|
738
|
+
</state>
|
739
|
+
</provider>
|
740
|
+
</entry>
|
741
|
+
<entry file="file://$PROJECT_DIR$/test/helper.rb">
|
742
|
+
<provider selected="true" editor-type-id="text-editor">
|
743
|
+
<state relative-caret-position="161">
|
744
|
+
<caret line="21" selection-start-line="21" selection-end-line="21" />
|
745
|
+
</state>
|
746
|
+
</provider>
|
747
|
+
</entry>
|
748
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/formatter_json.rb">
|
749
|
+
<provider selected="true" editor-type-id="text-editor">
|
750
|
+
<state relative-caret-position="170">
|
751
|
+
<caret line="46" selection-start-line="46" selection-end-line="46" />
|
752
|
+
</state>
|
753
|
+
</provider>
|
754
|
+
</entry>
|
755
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/yajl-ruby-1.4.1/lib/yajl.rb">
|
756
|
+
<provider selected="true" editor-type-id="text-editor">
|
757
|
+
<state relative-caret-position="124">
|
758
|
+
<caret line="22" selection-start-line="22" selection-end-line="22" />
|
759
|
+
</state>
|
760
|
+
</provider>
|
761
|
+
</entry>
|
762
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/securerandom.rb">
|
763
|
+
<provider selected="true" editor-type-id="text-editor">
|
764
|
+
<state relative-caret-position="304">
|
765
|
+
<caret line="64" selection-start-line="64" selection-end-line="64" />
|
766
|
+
</state>
|
767
|
+
</provider>
|
768
|
+
</entry>
|
769
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/forwardable.rb">
|
770
|
+
<provider selected="true" editor-type-id="text-editor">
|
771
|
+
<state relative-caret-position="191">
|
772
|
+
<caret line="188" selection-start-line="188" selection-end-line="188" />
|
773
|
+
</state>
|
774
|
+
</provider>
|
775
|
+
</entry>
|
776
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/test-unit-3.2.8/lib/test/unit/assertions.rb">
|
777
|
+
<provider selected="true" editor-type-id="text-editor">
|
778
|
+
<state relative-caret-position="124">
|
779
|
+
<caret line="1708" selection-start-line="1708" selection-end-line="1708" />
|
780
|
+
</state>
|
781
|
+
</provider>
|
782
|
+
</entry>
|
783
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/test/driver/event_feeder.rb">
|
784
|
+
<provider selected="true" editor-type-id="text-editor">
|
785
|
+
<state relative-caret-position="199">
|
786
|
+
<caret line="24" selection-start-line="24" selection-end-line="24" />
|
787
|
+
</state>
|
788
|
+
</provider>
|
789
|
+
</entry>
|
790
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/test/driver/base.rb">
|
791
|
+
<provider selected="true" editor-type-id="text-editor">
|
792
|
+
<state relative-caret-position="304">
|
793
|
+
<caret line="37" selection-start-line="37" selection-end-line="37" />
|
794
|
+
</state>
|
795
|
+
</provider>
|
796
|
+
</entry>
|
797
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin_helper/thread.rb">
|
798
|
+
<provider selected="true" editor-type-id="text-editor">
|
799
|
+
<state relative-caret-position="131">
|
800
|
+
<caret line="116" selection-start-line="116" selection-end-line="116" />
|
801
|
+
</state>
|
802
|
+
</provider>
|
803
|
+
</entry>
|
804
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/log.rb">
|
805
|
+
<provider selected="true" editor-type-id="text-editor">
|
806
|
+
<state relative-caret-position="169">
|
807
|
+
<caret line="571" selection-start-line="571" selection-end-line="571" />
|
808
|
+
</state>
|
809
|
+
</provider>
|
810
|
+
</entry>
|
811
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin_id.rb">
|
812
|
+
<provider selected="true" editor-type-id="text-editor">
|
813
|
+
<state relative-caret-position="343">
|
814
|
+
<caret line="23" selection-start-line="23" selection-end-line="23" />
|
815
|
+
</state>
|
816
|
+
</provider>
|
817
|
+
</entry>
|
818
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/base.rb">
|
819
|
+
<provider selected="true" editor-type-id="text-editor">
|
820
|
+
<state relative-caret-position="139">
|
821
|
+
<caret line="31" selection-start-line="31" selection-end-line="31" />
|
822
|
+
</state>
|
823
|
+
</provider>
|
824
|
+
</entry>
|
825
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/configurable.rb">
|
826
|
+
<provider selected="true" editor-type-id="text-editor">
|
827
|
+
<state relative-caret-position="124">
|
828
|
+
<caret line="184" selection-start-line="184" selection-end-line="184" />
|
829
|
+
</state>
|
830
|
+
</provider>
|
831
|
+
</entry>
|
832
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/test/driver/output.rb">
|
833
|
+
<provider selected="true" editor-type-id="text-editor">
|
834
|
+
<state relative-caret-position="191">
|
835
|
+
<caret line="29" selection-start-line="29" selection-end-line="29" />
|
836
|
+
</state>
|
837
|
+
</provider>
|
838
|
+
</entry>
|
839
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/test/driver/base_owner.rb">
|
840
|
+
<provider selected="true" editor-type-id="text-editor">
|
841
|
+
<state relative-caret-position="229">
|
842
|
+
<caret line="36" column="12" selection-start-line="36" selection-start-column="12" selection-end-line="36" selection-end-column="12" />
|
843
|
+
</state>
|
844
|
+
</provider>
|
845
|
+
</entry>
|
846
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/time.rb">
|
847
|
+
<provider selected="true" editor-type-id="text-editor">
|
848
|
+
<state relative-caret-position="139">
|
849
|
+
<caret line="54" selection-start-line="54" selection-end-line="54" />
|
850
|
+
</state>
|
851
|
+
</provider>
|
852
|
+
</entry>
|
853
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs23/object.rb">
|
854
|
+
<provider selected="true" editor-type-id="text-editor">
|
855
|
+
<state relative-caret-position="131">
|
856
|
+
<caret line="704" column="8" selection-start-line="704" selection-start-column="8" selection-end-line="704" selection-end-column="8" />
|
857
|
+
</state>
|
858
|
+
</provider>
|
859
|
+
</entry>
|
860
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rb/testing/patch/testunit/test/unit/ui/teamcity/testrunner.rb">
|
861
|
+
<provider selected="true" editor-type-id="text-editor">
|
862
|
+
<state relative-caret-position="147">
|
863
|
+
<caret line="92" selection-start-line="92" selection-end-line="92" />
|
864
|
+
</state>
|
865
|
+
</provider>
|
866
|
+
</entry>
|
867
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/base64.rb">
|
868
|
+
<provider selected="true" editor-type-id="text-editor">
|
869
|
+
<state relative-caret-position="131">
|
870
|
+
<caret line="58" selection-start-line="58" selection-end-line="58" />
|
871
|
+
</state>
|
872
|
+
</provider>
|
873
|
+
</entry>
|
874
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin_helper/inject.rb">
|
875
|
+
<provider selected="true" editor-type-id="text-editor">
|
876
|
+
<state relative-caret-position="124">
|
877
|
+
<caret line="25" selection-start-line="25" selection-end-line="25" />
|
878
|
+
</state>
|
879
|
+
</provider>
|
880
|
+
</entry>
|
881
|
+
<entry file="file://$PROJECT_DIR$/test/dummy_server.rb">
|
882
|
+
<provider selected="true" editor-type-id="text-editor">
|
883
|
+
<state relative-caret-position="124">
|
884
|
+
<caret line="319" selection-start-line="319" selection-end-line="319" />
|
885
|
+
</state>
|
886
|
+
</provider>
|
887
|
+
</entry>
|
888
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/kinesis_helper/aggregator.rb">
|
889
|
+
<provider selected="true" editor-type-id="text-editor" />
|
890
|
+
</entry>
|
891
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/kinesis_helper/api.rb">
|
892
|
+
<provider selected="true" editor-type-id="text-editor">
|
893
|
+
<state relative-caret-position="510">
|
894
|
+
<caret line="34" column="16" selection-start-line="34" selection-start-column="16" selection-end-line="34" selection-end-column="16" />
|
895
|
+
</state>
|
896
|
+
</provider>
|
897
|
+
</entry>
|
898
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams_aggregated.rb">
|
899
|
+
<provider selected="true" editor-type-id="text-editor">
|
900
|
+
<state relative-caret-position="525">
|
901
|
+
<caret line="35" column="8" selection-start-line="35" selection-start-column="8" selection-end-line="35" selection-end-column="8" />
|
902
|
+
</state>
|
903
|
+
</provider>
|
904
|
+
</entry>
|
905
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/output.rb">
|
906
|
+
<provider selected="true" editor-type-id="text-editor">
|
907
|
+
<state relative-caret-position="11745">
|
908
|
+
<caret line="783" selection-start-line="783" selection-end-line="783" />
|
909
|
+
</state>
|
910
|
+
</provider>
|
911
|
+
</entry>
|
912
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/kinesis.rb">
|
913
|
+
<provider selected="true" editor-type-id="text-editor">
|
914
|
+
<state relative-caret-position="1305">
|
915
|
+
<caret line="87" selection-start-line="87" selection-end-line="87" />
|
916
|
+
</state>
|
917
|
+
</provider>
|
918
|
+
</entry>
|
919
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/lib/ruby/2.3.0/monitor.rb">
|
920
|
+
<provider selected="true" editor-type-id="text-editor">
|
921
|
+
<state relative-caret-position="3015">
|
922
|
+
<caret line="201" selection-start-line="201" selection-end-line="201" />
|
923
|
+
</state>
|
924
|
+
</provider>
|
925
|
+
</entry>
|
926
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin_helper/formatter.rb">
|
927
|
+
<provider selected="true" editor-type-id="text-editor">
|
928
|
+
<state relative-caret-position="-280">
|
929
|
+
<caret line="27" selection-start-line="27" selection-end-line="27" />
|
930
|
+
</state>
|
931
|
+
</provider>
|
932
|
+
</entry>
|
933
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/formatter_ltsv.rb">
|
934
|
+
<provider selected="true" editor-type-id="text-editor">
|
935
|
+
<state relative-caret-position="555">
|
936
|
+
<caret line="37" column="17" selection-start-line="37" selection-start-column="17" selection-end-line="37" selection-end-column="17" />
|
937
|
+
</state>
|
938
|
+
</provider>
|
939
|
+
</entry>
|
940
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
941
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
942
|
+
<state split_layout="SPLIT">
|
943
|
+
<first_editor relative-caret-position="555">
|
944
|
+
<caret line="37" column="2" selection-start-line="37" selection-start-column="2" selection-end-line="37" selection-end-column="2" />
|
945
|
+
</first_editor>
|
946
|
+
<second_editor />
|
947
|
+
</state>
|
948
|
+
</provider>
|
949
|
+
</entry>
|
950
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
951
|
+
<provider selected="true" editor-type-id="text-editor" />
|
952
|
+
</entry>
|
953
|
+
<entry file="file://$PROJECT_DIR$/CHANGELOG.md">
|
954
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
955
|
+
<state split_layout="SPLIT">
|
956
|
+
<first_editor />
|
957
|
+
<second_editor />
|
958
|
+
</state>
|
959
|
+
</provider>
|
960
|
+
</entry>
|
961
|
+
<entry file="file://$PROJECT_DIR$/CODE_OF_CONDUCT.md">
|
962
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
963
|
+
<state split_layout="SPLIT">
|
964
|
+
<first_editor />
|
965
|
+
<second_editor />
|
966
|
+
</state>
|
967
|
+
</provider>
|
968
|
+
</entry>
|
969
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
970
|
+
<provider selected="true" editor-type-id="text-editor">
|
971
|
+
<state relative-caret-position="45">
|
972
|
+
<caret line="3" column="32" selection-start-line="3" selection-start-column="4" selection-end-line="3" selection-end-column="32" />
|
973
|
+
</state>
|
974
|
+
</provider>
|
975
|
+
</entry>
|
976
|
+
<entry file="file:///Library/Ruby/Gems/2.3.0/gems/fluentd-1.2.5/lib/fluent/plugin/filter_record_transformer.rb">
|
977
|
+
<provider selected="true" editor-type-id="text-editor">
|
978
|
+
<state relative-caret-position="173">
|
979
|
+
<caret line="229" selection-start-line="229" selection-end-line="229" />
|
980
|
+
</state>
|
981
|
+
</provider>
|
982
|
+
</entry>
|
983
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent/plugin/out_kinesis_streams.rb">
|
984
|
+
<provider selected="true" editor-type-id="text-editor">
|
985
|
+
<state relative-caret-position="239">
|
986
|
+
<caret line="114" column="11" selection-start-line="114" selection-start-column="11" selection-end-line="114" selection-end-column="11" />
|
987
|
+
</state>
|
988
|
+
</provider>
|
989
|
+
</entry>
|
990
|
+
<entry file="file://$PROJECT_DIR$/test/plugin/test_out_kinesis_streams.rb">
|
991
|
+
<provider selected="true" editor-type-id="text-editor">
|
992
|
+
<state relative-caret-position="1236">
|
993
|
+
<caret line="149" selection-start-line="149" selection-end-line="149" />
|
994
|
+
</state>
|
995
|
+
</provider>
|
996
|
+
</entry>
|
997
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
998
|
+
<provider selected="true" editor-type-id="text-editor" />
|
999
|
+
</entry>
|
1000
|
+
<entry file="file://$PROJECT_DIR$/lib/fluent_plugin_kinesis/version.rb">
|
1001
|
+
<provider selected="true" editor-type-id="text-editor">
|
1002
|
+
<state relative-caret-position="225">
|
1003
|
+
<caret line="15" column="18" selection-start-line="15" selection-start-column="18" selection-end-line="15" selection-end-column="18" />
|
1004
|
+
</state>
|
1005
|
+
</provider>
|
1006
|
+
</entry>
|
1007
|
+
<entry file="file://$PROJECT_DIR$/Makefile">
|
1008
|
+
<provider selected="true" editor-type-id="text-editor" />
|
1009
|
+
</entry>
|
1010
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
1011
|
+
<provider selected="true" editor-type-id="text-editor" />
|
1012
|
+
</entry>
|
1013
|
+
<entry file="file://$PROJECT_DIR$/gemfiles/Gemfile.fluentd-0.14.10">
|
1014
|
+
<provider selected="true" editor-type-id="text-editor" />
|
1015
|
+
</entry>
|
1016
|
+
<entry file="file://$PROJECT_DIR$/gemfiles/Gemfile.td-agent-3.2.0">
|
1017
|
+
<provider selected="true" editor-type-id="text-editor">
|
1018
|
+
<state relative-caret-position="-136" />
|
1019
|
+
</provider>
|
1020
|
+
</entry>
|
1021
|
+
<entry file="file://$PROJECT_DIR$/fluent-plugin-kinesis.gemspec">
|
1022
|
+
<provider selected="true" editor-type-id="text-editor">
|
1023
|
+
<state relative-caret-position="214">
|
1024
|
+
<caret line="20" column="31" selection-start-line="20" selection-start-column="31" selection-end-line="20" selection-end-column="31" />
|
1025
|
+
</state>
|
1026
|
+
</provider>
|
1027
|
+
</entry>
|
1028
|
+
</component>
|
1029
|
+
</project>
|