CrashTest.conf
author Vincent Tondellier <tonton+hg@team1664.org>
Sat, 12 Sep 2015 01:12:44 +0200
changeset 73 25df7947e5da
parent 67 9e95be0b1b8c
permissions -rw-r--r--
Add index on crash_time (it is used to sort the index page)

{
  Dumper => {
      JSONStackwalker => './stackwalker',
      SymbolsPath => 'breakpad-debug-symbols/*',
  },
#  Storage => {
#      Type => "CrashTest::Storage::FileSystem",
#      DataDir => 'data/',
#  },
  Storage => {
      Type => "CrashTest::Storage::Sql",
      DSN => "dbi:Pg:dbname=crashreports",
      DataDir => 'data/',
  },
  DecodeQueue => {
      Type => "CrashTest::Decode::Queue::NoQueue"
  },
#  DecodeQueue => {
#      Type => "CrashTest::Decode::Queue::Gearman",
#      GearmanServers => [ 'localhost:4730' ],
#  },
  WebInterface => {
      ScmLinks => {
          "svn:svn.example.org/testproject" => 'https://redmine.example.org/projects/testproject/repository/entry/<%= $scmpath =%>?rev=<%= $rev =%>#L<%= $line =%>',
      },
      ExtraColumns => {
          Index => [
              { id => 'os', db_column => "crash_user.os", name => 'Operating System' },
          ],
      },
  },
};
# vim:ft=perl: