| author | Vincent Tondellier <tonton@team1664.org> |
| Sat, 09 May 2015 23:24:13 +0200 | |
| changeset 68 | c810480b2c37 |
| parent 67 | 9e95be0b1b8c |
| permissions | -rw-r--r-- |
| 0 | 1 |
{
|
|
19
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
2 |
Dumper => {
|
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
3 |
JSONStackwalker => './stackwalker', |
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
4 |
SymbolsPath => 'breakpad-debug-symbols/*', |
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
5 |
}, |
|
57
cebbfcd7deff
Add search box, using perl Search::Query syntax
Vincent Tondellier <tonton+hg@team1664.org>
parents:
24
diff
changeset
|
6 |
# Storage => {
|
|
cebbfcd7deff
Add search box, using perl Search::Query syntax
Vincent Tondellier <tonton+hg@team1664.org>
parents:
24
diff
changeset
|
7 |
# Type => "CrashTest::Storage::FileSystem", |
|
cebbfcd7deff
Add search box, using perl Search::Query syntax
Vincent Tondellier <tonton+hg@team1664.org>
parents:
24
diff
changeset
|
8 |
# DataDir => 'data/', |
|
cebbfcd7deff
Add search box, using perl Search::Query syntax
Vincent Tondellier <tonton+hg@team1664.org>
parents:
24
diff
changeset
|
9 |
# }, |
|
19
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
10 |
Storage => {
|
|
57
cebbfcd7deff
Add search box, using perl Search::Query syntax
Vincent Tondellier <tonton+hg@team1664.org>
parents:
24
diff
changeset
|
11 |
Type => "CrashTest::Storage::Sql", |
|
67
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
12 |
DSN => "dbi:Pg:dbname=crashreports", |
|
24
b69b7aa98a1d
Add basic SQL Storage
Vincent Tondellier <tonton+hg@team1664.org>
parents:
19
diff
changeset
|
13 |
DataDir => 'data/', |
|
19
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
14 |
}, |
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
15 |
DecodeQueue => {
|
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
16 |
Type => "CrashTest::Decode::Queue::NoQueue" |
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
17 |
}, |
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
18 |
# DecodeQueue => {
|
|
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
19 |
# Type => "CrashTest::Decode::Queue::Gearman", |
|
24
b69b7aa98a1d
Add basic SQL Storage
Vincent Tondellier <tonton+hg@team1664.org>
parents:
19
diff
changeset
|
20 |
# GearmanServers => [ 'localhost:4730' ], |
|
19
300b902b5461
Reorganize config
Vincent Tondellier <tonton+hg@team1664.org>
parents:
17
diff
changeset
|
21 |
# }, |
|
67
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
22 |
WebInterface => {
|
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
23 |
ScmLinks => {
|
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
24 |
"svn:svn.example.org/testproject" => 'https://redmine.example.org/projects/testproject/repository/entry/<%= $scmpath =%>?rev=<%= $rev =%>#L<%= $line =%>', |
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
25 |
}, |
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
26 |
ExtraColumns => {
|
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
27 |
Index => [ |
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
28 |
{ id => 'os', db_column => "crash_user.os", name => 'Operating System' },
|
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
29 |
], |
|
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
30 |
}, |
|
3
2ff78fe4abda
Create helper to shorten signatures and create links to the repository
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
31 |
}, |
| 0 | 32 |
}; |
|
67
9e95be0b1b8c
Make the index columns configurable
Vincent Tondellier <tonton@team1664.org>
parents:
57
diff
changeset
|
33 |
# vim:ft=perl: |