-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathriver_configuration_example.json
41 lines (41 loc) · 1.36 KB
/
river_configuration_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"type" : "jira",
"jira" : {
"urlBase" : "https://issues.jboss.org",
"username" : "jira_username",
"pwd" : "jira_user_password",
"jqlTimeZone" : "America/New York",
"timeout" : "5s",
"maxIssuesPerRequest" : 50,
"projectKeysIndexed" : "ORG,AS7",
"indexUpdatePeriod" : "5m",
"indexFullUpdatePeriod" : "1h",
"maxIndexingThreads" : 2
},
"index" : {
"index" : "my_jira_index",
"type" : "jira_issue",
"preprocessors" : [
{
"name" : "Status Normalizer",
"class" : "org.jboss.elasticsearch.river.jira.preproc.StatusNormalizer",
"settings" : {
"some_setting_1" : "value1",
"some_setting_2" : "value2"
}
},
{
"name" : "Issue type Normalizer",
"class" : "org.jboss.elasticsearch.river.jira.preproc.IssueTypeNormalizer",
"settings" : {
"some_setting_1" : "value1",
"some_setting_2" : "value2"
}
}
]
},
"activity_log": {
"index" : "jira_river_activity",
"type" : "jira_river_indexupdate"
}
}