Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
301 ashish 1
##  Copyright (c) 2007-2008 Facebook
2
##
3
##  Licensed under the Apache License, Version 2.0 (the "License");
4
##  you may not use this file except in compliance with the License.
5
##  You may obtain a copy of the License at
6
##
7
##      http://www.apache.org/licenses/LICENSE-2.0
8
##
9
##  Unless required by applicable law or agreed to in writing, software
10
##  distributed under the License is distributed on an "AS IS" BASIS,
11
##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
##  See the License for the specific language governing permissions and
13
##  limitations under the License.
14
##
15
## See accompanying file LICENSE or visit the Scribe site at:
16
## http://developers.facebook.com/scribe/ 
17
 
18
 
19
##
20
## Sample Scribe configuration
21
##
22
 
23
# This file configures Scribe to listen for messages on port 1463 and write
24
# them to /tmp/scribetest
25
 
26
port=1463
27
max_msg_per_second=2000000
28
check_interval=3
29
 
30
# DEFAULT
31
<store>
32
category=default
33
type=buffer
34
 
35
target_write_size=20480
36
max_write_interval=1
37
buffer_send_rate=2
38
retry_interval=30
39
retry_interval_range=10
40
 
41
<primary>
42
type=file
43
fs_type=std
44
file_path=/tmp/scribetest
45
base_filename=thisisoverwritten
46
max_size=1000000
47
add_newlines=1
48
</primary>
49
 
50
<secondary>
51
type=file
52
fs_type=std
53
file_path=/tmp
54
base_filename=thisisoverwritten
55
max_size=3000000
56
</secondary>
57
</store>