File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ So this plugin cannot work with `filter` plugins or `output` plugins.
26
26
| Option | Description | Default |
27
27
| -------------------| -------------------------------------------| -----------|
28
28
| ` tag ` | Tag of the output events | ` sigdump ` |
29
- | ` scrape_interval ` | The interval time between data collection | ` 60 ` |
29
+ | ` scrape_interval ` | The interval time between data collection | ` 900 ` |
30
30
| ` dir_path ` | The output directory path | ` /tmp ` |
31
31
32
32
### Example Configuration
@@ -35,7 +35,7 @@ So this plugin cannot work with `filter` plugins or `output` plugins.
35
35
<source>
36
36
@type sigdump
37
37
tag sigdump # optional
38
- scrape_interval 60 # optional
38
+ scrape_interval 900 # optional
39
39
dir_path "/dump" # optional
40
40
</source>
41
41
```
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def test_configure_default_values
17
17
] )
18
18
assert_equal ( "sigdump" , d . instance . tag )
19
19
assert_equal ( RESULT_DIR , d . instance . dir_path )
20
- assert_equal ( 60 , d . instance . scrape_interval )
20
+ assert_equal ( 900 , d . instance . scrape_interval )
21
21
end
22
22
23
23
def test_configure_customize
You can’t perform that action at this time.
0 commit comments