crash_test.conf
author Vincent Tondellier <tonton+hg@team1664.org>
Mon, 28 Dec 2015 23:08:23 +0100
changeset 88 c82f5589db11
parent 79 4ae8bb6f8a96
permissions -rw-r--r--
Add first cut of the crash grouping feature

{
  Processor => {
    JobQueue => {
      Backend => {
        Minion => { Pg => "postgresql:///crashtest" },
      },
    },
    CrashProcessor => {
      Breakpad => {
        JSONStackwalker => 'stackwalker',
        SymbolsPath => 'data/breakpad-debug-symbols/*',
      },
    },
  },
  Storage => [
    { Type => "Sql",  db => { Pg => "postgresql:///crashtest" } },
    { Type => "File", DataDir => 'data/crashs/' },
  ],
  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: