diff --git a/includes/issue_cockpit.inc b/includes/issue_cockpit.inc
index a56a919..82e2d3c 100644
--- a/includes/issue_cockpit.inc
+++ b/includes/issue_cockpit.inc
@@ -76,5 +76,57 @@ function template_preprocess_project_issue_issue_cockpit(&$vars) {
     if (user_access('access issue statistics')) {
       $vars['issue_statistics'] = l(t('Issue statistics'), 'project/issues/statistics/' . $node->project['uri']);
     }
+
+    // TODO: We should probably move this once more metrics are available.
+    if (module_exists('sampler') && module_exists('views_sparkline')) {
+      $vars['issue_metrics'] = project_issue_metrics_block_output($node);
+    }
+  }
+}
+
+
+/**
+ * Output project issue metrics in block format.
+ *
+ * @param $project
+ *   A node object representing a project.
+ */
+function project_issue_metrics_block_output($project) {
+  $output = '';
+
+  drupal_add_css(drupal_get_path('module', 'project_issue') .'/project_issue.css', 'module');
+  $output .= project_issue_metrics_sparkline('project_issue_metrics_new_issues', 'New issues', $project);
+  $output .= project_issue_metrics_sparkline('project_issue_metrics_open_bugs', 'Open bugs', $project);
+  $output .= project_issue_metrics_sparkline('project_issue_metrics_total_participants', 'Participants', $project);
+
+  return $output;
+}
+
+/**
+ * Build output for a single sparkline in the metrics block.
+ *
+ * @param $view_name
+ *   Machine name of the view used to build the sparkline.
+ * @param $label
+ *   Human-readable label for the sparkline.
+ * @param $project
+ *   A node object representing a project.
+ */
+function project_issue_metrics_sparkline($view_name, $label, $project) {
+  $output = "";
+  $view = views_get_view($view_name);
+  if ($view && $view->access('default')) {
+    $view->set_display('default');
+    $view->pre_execute(array($project->nid));
+    $view->execute();
+    if (!empty($view->result)) {
+      $output .= '<div class="metric-container">';
+      $output .= '<div class="metric-label">' . $label . '</div>';
+      $output .= $view->display_handler->preview();
+      $output .= '</div>';
+    }
+    $view->post_execute();
   }
+  return $output;
 }
+
diff --git a/project_issue.css b/project_issue.css
index 189ce2f..3d34f32 100644
--- a/project_issue.css
+++ b/project_issue.css
@@ -240,3 +240,20 @@ table.project-issue td.views-field-title {
   float: left;
 }
 
+#block-project_issue-issue_cockpit .issue-cockpit-metrics .category-header {
+  padding-bottom: 5px;
+}
+
+#block-project_issue-issue_cockpit .metric-container {
+  clear: both;
+  height: 30px;
+}
+
+#block-project_issue-issue_cockpit .metric-container div {
+  float: left;
+}
+
+#block-project_issue-issue_cockpit .metric-label {
+  width: 80px;
+}
+
diff --git a/theme/project-issue-issue-cockpit.tpl.php b/theme/project-issue-issue-cockpit.tpl.php
index 8a27509..795956a 100644
--- a/theme/project-issue-issue-cockpit.tpl.php
+++ b/theme/project-issue-issue-cockpit.tpl.php
@@ -22,4 +22,10 @@
       <?php print $issue_statistics; ?>
     </div>
   <?php endif; ?>
+  <?php if (isset($issue_metrics) && !empty($issue_metrics)): ?>
+    <div class="issue-cockpit-metrics">
+        <span class="category-header">Statistics (2 years)</span>
+      <?php print $issue_metrics; ?>
+    </div>
+  <?php endif; ?>
 <?php endif; ?>
diff --git a/views/default_views/project_issue_metrics_new_issues.view.php b/views/default_views/project_issue_metrics_new_issues.view.php
new file mode 100644
index 0000000..f2381e5
--- /dev/null
+++ b/views/default_views/project_issue_metrics_new_issues.view.php
@@ -0,0 +1,325 @@
+<?php
+
+$view = new view;
+$view->name = 'project_issue_metrics_new_issues';
+$view->description = '';
+$view->tag = '';
+$view->base_table = 'sampler_project_issue_new_issues_comments_by_project';
+$view->core = 6;
+$view->api_version = '2';
+$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
+$handler = $view->new_display('default', 'Defaults', 'default');
+$handler->override_option('fields', array(
+  'value_new_issues' => array(
+    'label' => 'value_new_issues',
+    'alter' => array(
+      'alter_text' => 0,
+      'text' => '',
+      'make_link' => 0,
+      'path' => '',
+      'absolute' => 0,
+      'link_class' => '',
+      'alt' => '',
+      'rel' => '',
+      'prefix' => '',
+      'suffix' => '',
+      'target' => '',
+      'help' => '',
+      'trim' => 0,
+      'max_length' => '',
+      'word_boundary' => 1,
+      'ellipsis' => 1,
+      'html' => 0,
+      'strip_tags' => 0,
+    ),
+    'empty' => '',
+    'hide_empty' => 0,
+    'empty_zero' => 0,
+    'hide_alter_empty' => 1,
+    'set_precision' => FALSE,
+    'precision' => 0,
+    'decimal' => '.',
+    'separator' => ',',
+    'format_plural' => 0,
+    'format_plural_singular' => '1',
+    'format_plural_plural' => '@count',
+    'prefix' => '',
+    'suffix' => '',
+    'exclude' => 0,
+    'id' => 'value_new_issues',
+    'table' => 'sampler_project_issue_new_issues_comments_by_project',
+    'field' => 'value_new_issues',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('sorts', array(
+  'timestamp' => array(
+    'order' => 'ASC',
+    'granularity' => 'second',
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_new_issues_comments_by_project',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('arguments', array(
+  'object_id' => array(
+    'default_action' => 'not found',
+    'style_plugin' => 'default_summary',
+    'style_options' => array(),
+    'wildcard' => 'all',
+    'wildcard_substitution' => 'All',
+    'title' => '',
+    'breadcrumb' => '',
+    'default_argument_type' => 'fixed',
+    'default_argument' => '',
+    'validate_type' => 'none',
+    'validate_fail' => 'not found',
+    'break_phrase' => 0,
+    'not' => 0,
+    'id' => 'object_id',
+    'table' => 'sampler_project_issue_new_issues_comments_by_project',
+    'field' => 'object_id',
+    'validate_user_argument_type' => 'uid',
+    'validate_user_roles' => array(
+      2 => 0,
+      3 => 0,
+      5 => 0,
+      16 => 0,
+      22 => 0,
+      20 => 0,
+      24 => 0,
+      12 => 0,
+      28 => 0,
+      26 => 0,
+      4 => 0,
+      14 => 0,
+      7 => 0,
+    ),
+    'relationship' => 'none',
+    'default_options_div_prefix' => '',
+    'default_taxonomy_tid_term_page' => 0,
+    'default_taxonomy_tid_node' => 0,
+    'default_taxonomy_tid_limit' => 0,
+    'default_taxonomy_tid_vids' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'default_argument_user' => 0,
+    'default_argument_fixed' => '',
+    'default_argument_image_size' => '_original',
+    'default_argument_php' => '',
+    'validate_argument_node_type' => array(
+      'casestudy' => 0,
+      'changenotice' => 0,
+      'organization' => 0,
+      'packaging_whitelist' => 0,
+      'image' => 0,
+      'forum' => 0,
+      'project_project' => 0,
+      'project_release' => 0,
+      'project_issue' => 0,
+      'book' => 0,
+      'page' => 0,
+      'story' => 0,
+    ),
+    'validate_argument_node_access' => 0,
+    'validate_argument_nid_type' => 'nid',
+    'validate_argument_vocabulary' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'validate_argument_type' => 'tid',
+    'validate_argument_transform' => 0,
+    'validate_user_restrict_roles' => 0,
+    'validate_argument_node_flag_name' => '*relationship*',
+    'validate_argument_node_flag_test' => 'flaggable',
+    'validate_argument_node_flag_id_type' => 'id',
+    'validate_argument_user_flag_name' => '*relationship*',
+    'validate_argument_user_flag_test' => 'flaggable',
+    'validate_argument_user_flag_id_type' => 'id',
+    'image_size' => array(
+      '_original' => '_original',
+      'thumbnail' => 'thumbnail',
+      'preview' => 'preview',
+    ),
+    'validate_argument_project_term_argument_type' => 'tid',
+    'validate_argument_project_term_argument_action_top_without' => 'pass',
+    'validate_argument_project_term_argument_action_top_with' => 'pass',
+    'validate_argument_project_term_argument_action_child' => 'pass',
+    'validate_argument_php' => '',
+    'override' => array(
+      'button' => 'Override',
+    ),
+  ),
+));
+$handler->override_option('filters', array(
+  'timestamp' => array(
+    'operator' => '>=',
+    'value' => array(
+      'type' => 'offset',
+      'value' => '-2 years',
+      'min' => '',
+      'max' => '',
+    ),
+    'group' => '0',
+    'exposed' => FALSE,
+    'expose' => array(
+      'operator' => FALSE,
+      'label' => '',
+    ),
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_new_issues_comments_by_project',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('access', array(
+  'type' => 'none',
+));
+$handler->override_option('cache', array(
+  'type' => 'none',
+));
+$handler->override_option('title', 'New issues per project');
+$handler->override_option('items_per_page', 104);
+$handler->override_option('style_plugin', 'views_sparkline');
+$handler->override_option('style_options', array(
+  'width' => '100px',
+  'height' => '20px',
+  'series' => array(
+    1 => array(
+      'enable' => 1,
+      'field' => 'value_new_issues',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '0.8',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 1,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '6',
+      'label_point_top_offset' => '-10',
+      'pad' => 'left',
+      'pad_value' => 'zero',
+    ),
+    2 => array(
+      'enable' => 0,
+      'field' => 'value_new_issues',
+      'type' => 'line',
+      'color' => '#ff0000',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 1,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    3 => array(
+      'enable' => 0,
+      'field' => 'value_new_issues',
+      'type' => 'line',
+      'color' => '#663399',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    4 => array(
+      'enable' => 0,
+      'field' => 'value_new_issues',
+      'type' => 'line',
+      'color' => '#663399',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    5 => array(
+      'enable' => 0,
+      'field' => 'value_new_issues',
+      'type' => 'line',
+      'color' => '#663399',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+  ),
+));
+
diff --git a/views/default_views/project_issue_metrics_open_bugs.view.php b/views/default_views/project_issue_metrics_open_bugs.view.php
new file mode 100644
index 0000000..5afa556
--- /dev/null
+++ b/views/default_views/project_issue_metrics_open_bugs.view.php
@@ -0,0 +1,322 @@
+<?php
+
+$view = new view;
+$view->name = 'project_issue_metrics_open_bugs';
+$view->description = '';
+$view->tag = '';
+$view->base_table = 'sampler_project_issue_opened_vs_closed_by_category';
+$view->core = 6;
+$view->api_version = '2';
+$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
+$handler = $view->new_display('default', 'Defaults', 'default');
+$handler->override_option('fields', array(
+  'value_bug_open' => array(
+    'label' => 'value_bug_open',
+    'alter' => array(
+      'alter_text' => 0,
+      'text' => '',
+      'make_link' => 0,
+      'path' => '',
+      'absolute' => 0,
+      'link_class' => '',
+      'alt' => '',
+      'rel' => '',
+      'prefix' => '',
+      'suffix' => '',
+      'target' => '',
+      'help' => '',
+      'trim' => 0,
+      'max_length' => '',
+      'word_boundary' => 1,
+      'ellipsis' => 1,
+      'html' => 0,
+      'strip_tags' => 0,
+    ),
+    'empty' => '',
+    'hide_empty' => 0,
+    'empty_zero' => 0,
+    'hide_alter_empty' => 1,
+    'set_precision' => FALSE,
+    'precision' => 0,
+    'decimal' => '.',
+    'separator' => ',',
+    'format_plural' => 0,
+    'format_plural_singular' => '1',
+    'format_plural_plural' => '@count',
+    'prefix' => '',
+    'suffix' => '',
+    'exclude' => 0,
+    'id' => 'value_bug_open',
+    'table' => 'sampler_project_issue_opened_vs_closed_by_category',
+    'field' => 'value_bug_open',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('sorts', array(
+  'timestamp' => array(
+    'order' => 'ASC',
+    'granularity' => 'second',
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_opened_vs_closed_by_category',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('arguments', array(
+  'object_id' => array(
+    'default_action' => 'ignore',
+    'style_plugin' => 'default_summary',
+    'style_options' => array(),
+    'wildcard' => 'all',
+    'wildcard_substitution' => 'All',
+    'title' => '',
+    'breadcrumb' => '',
+    'default_argument_type' => 'fixed',
+    'default_argument' => '',
+    'validate_type' => 'none',
+    'validate_fail' => 'not found',
+    'break_phrase' => 0,
+    'not' => 0,
+    'id' => 'object_id',
+    'table' => 'sampler_project_issue_opened_vs_closed_by_category',
+    'field' => 'object_id',
+    'validate_user_argument_type' => 'uid',
+    'validate_user_roles' => array(
+      2 => 0,
+      3 => 0,
+      5 => 0,
+      16 => 0,
+      22 => 0,
+      20 => 0,
+      24 => 0,
+      12 => 0,
+      28 => 0,
+      26 => 0,
+      4 => 0,
+      14 => 0,
+      7 => 0,
+    ),
+    'relationship' => 'none',
+    'default_options_div_prefix' => '',
+    'default_taxonomy_tid_term_page' => 0,
+    'default_taxonomy_tid_node' => 0,
+    'default_taxonomy_tid_limit' => 0,
+    'default_taxonomy_tid_vids' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'default_argument_user' => 0,
+    'default_argument_fixed' => '',
+    'default_argument_image_size' => '_original',
+    'default_argument_php' => '',
+    'validate_argument_node_type' => array(
+      'casestudy' => 0,
+      'changenotice' => 0,
+      'organization' => 0,
+      'packaging_whitelist' => 0,
+      'image' => 0,
+      'forum' => 0,
+      'project_project' => 0,
+      'project_release' => 0,
+      'project_issue' => 0,
+      'book' => 0,
+      'page' => 0,
+      'story' => 0,
+    ),
+    'validate_argument_node_access' => 0,
+    'validate_argument_nid_type' => 'nid',
+    'validate_argument_vocabulary' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'validate_argument_type' => 'tid',
+    'validate_argument_transform' => 0,
+    'validate_user_restrict_roles' => 0,
+    'validate_argument_node_flag_name' => '*relationship*',
+    'validate_argument_node_flag_test' => 'flaggable',
+    'validate_argument_node_flag_id_type' => 'id',
+    'validate_argument_user_flag_name' => '*relationship*',
+    'validate_argument_user_flag_test' => 'flaggable',
+    'validate_argument_user_flag_id_type' => 'id',
+    'image_size' => array(
+      '_original' => '_original',
+      'thumbnail' => 'thumbnail',
+      'preview' => 'preview',
+    ),
+    'validate_argument_project_term_argument_type' => 'tid',
+    'validate_argument_project_term_argument_action_top_without' => 'pass',
+    'validate_argument_project_term_argument_action_top_with' => 'pass',
+    'validate_argument_project_term_argument_action_child' => 'pass',
+    'validate_argument_php' => '',
+  ),
+));
+$handler->override_option('filters', array(
+  'timestamp' => array(
+    'operator' => '>=',
+    'value' => array(
+      'type' => 'offset',
+      'value' => '-2 years',
+      'min' => '',
+      'max' => '',
+    ),
+    'group' => '0',
+    'exposed' => FALSE,
+    'expose' => array(
+      'operator' => FALSE,
+      'label' => '',
+    ),
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_opened_vs_closed_by_category',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('access', array(
+  'type' => 'none',
+));
+$handler->override_option('cache', array(
+  'type' => 'none',
+));
+$handler->override_option('title', 'Open bugs per project');
+$handler->override_option('items_per_page', 104);
+$handler->override_option('style_plugin', 'views_sparkline');
+$handler->override_option('style_options', array(
+  'width' => '100px',
+  'height' => '20px',
+  'series' => array(
+    1 => array(
+      'enable' => 1,
+      'field' => 'value_bug_open',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '0.8',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 1,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '6',
+      'label_point_top_offset' => '-10',
+      'pad' => 'left',
+      'pad_value' => 'zero',
+    ),
+    2 => array(
+      'enable' => 0,
+      'field' => 'value_bug_open',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    3 => array(
+      'enable' => 0,
+      'field' => 'value_bug_open',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    4 => array(
+      'enable' => 0,
+      'field' => 'value_bug_open',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    5 => array(
+      'enable' => 0,
+      'field' => 'value_bug_open',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+  ),
+));
+
diff --git a/views/default_views/project_issue_metrics_total_participants.view.php b/views/default_views/project_issue_metrics_total_participants.view.php
new file mode 100644
index 0000000..660243b
--- /dev/null
+++ b/views/default_views/project_issue_metrics_total_participants.view.php
@@ -0,0 +1,322 @@
+<?php
+
+$view = new view;
+$view->name = 'project_issue_metrics_total_part';
+$view->description = '';
+$view->tag = '';
+$view->base_table = 'sampler_project_issue_reporters_participants_by_project';
+$view->core = 6;
+$view->api_version = '2';
+$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
+$handler = $view->new_display('default', 'Defaults', 'default');
+$handler->override_option('fields', array(
+  'value_participants' => array(
+    'label' => 'value_participants',
+    'alter' => array(
+      'alter_text' => 0,
+      'text' => '',
+      'make_link' => 0,
+      'path' => '',
+      'absolute' => 0,
+      'link_class' => '',
+      'alt' => '',
+      'rel' => '',
+      'prefix' => '',
+      'suffix' => '',
+      'target' => '',
+      'help' => '',
+      'trim' => 0,
+      'max_length' => '',
+      'word_boundary' => 1,
+      'ellipsis' => 1,
+      'html' => 0,
+      'strip_tags' => 0,
+    ),
+    'empty' => '',
+    'hide_empty' => 0,
+    'empty_zero' => 0,
+    'hide_alter_empty' => 1,
+    'set_precision' => FALSE,
+    'precision' => 0,
+    'decimal' => '.',
+    'separator' => ',',
+    'format_plural' => 0,
+    'format_plural_singular' => '1',
+    'format_plural_plural' => '@count',
+    'prefix' => '',
+    'suffix' => '',
+    'exclude' => 0,
+    'id' => 'value_participants',
+    'table' => 'sampler_project_issue_reporters_participants_by_project',
+    'field' => 'value_participants',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('sorts', array(
+  'timestamp' => array(
+    'order' => 'ASC',
+    'granularity' => 'second',
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_reporters_participants_by_project',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('arguments', array(
+  'object_id' => array(
+    'default_action' => 'ignore',
+    'style_plugin' => 'default_summary',
+    'style_options' => array(),
+    'wildcard' => 'all',
+    'wildcard_substitution' => 'All',
+    'title' => '',
+    'breadcrumb' => '',
+    'default_argument_type' => 'fixed',
+    'default_argument' => '',
+    'validate_type' => 'none',
+    'validate_fail' => 'not found',
+    'break_phrase' => 0,
+    'not' => 0,
+    'id' => 'object_id',
+    'table' => 'sampler_project_issue_reporters_participants_by_project',
+    'field' => 'object_id',
+    'validate_user_argument_type' => 'uid',
+    'validate_user_roles' => array(
+      2 => 0,
+      3 => 0,
+      5 => 0,
+      16 => 0,
+      22 => 0,
+      20 => 0,
+      24 => 0,
+      12 => 0,
+      28 => 0,
+      26 => 0,
+      4 => 0,
+      14 => 0,
+      7 => 0,
+    ),
+    'relationship' => 'none',
+    'default_options_div_prefix' => '',
+    'default_taxonomy_tid_term_page' => 0,
+    'default_taxonomy_tid_node' => 0,
+    'default_taxonomy_tid_limit' => 0,
+    'default_taxonomy_tid_vids' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'default_argument_user' => 0,
+    'default_argument_fixed' => '',
+    'default_argument_image_size' => '_original',
+    'default_argument_php' => '',
+    'validate_argument_node_type' => array(
+      'casestudy' => 0,
+      'changenotice' => 0,
+      'organization' => 0,
+      'packaging_whitelist' => 0,
+      'image' => 0,
+      'forum' => 0,
+      'project_project' => 0,
+      'project_release' => 0,
+      'project_issue' => 0,
+      'book' => 0,
+      'page' => 0,
+      'story' => 0,
+    ),
+    'validate_argument_node_access' => 0,
+    'validate_argument_nid_type' => 'nid',
+    'validate_argument_vocabulary' => array(
+      1 => 0,
+      5 => 0,
+      38 => 0,
+      54 => 0,
+      56 => 0,
+      6 => 0,
+      4 => 0,
+      44 => 0,
+      46 => 0,
+      3 => 0,
+      48 => 0,
+      50 => 0,
+      52 => 0,
+      58 => 0,
+      7 => 0,
+      2 => 0,
+      31 => 0,
+      32 => 0,
+      33 => 0,
+      34 => 0,
+      9 => 0,
+    ),
+    'validate_argument_type' => 'tid',
+    'validate_argument_transform' => 0,
+    'validate_user_restrict_roles' => 0,
+    'validate_argument_node_flag_name' => '*relationship*',
+    'validate_argument_node_flag_test' => 'flaggable',
+    'validate_argument_node_flag_id_type' => 'id',
+    'validate_argument_user_flag_name' => '*relationship*',
+    'validate_argument_user_flag_test' => 'flaggable',
+    'validate_argument_user_flag_id_type' => 'id',
+    'image_size' => array(
+      '_original' => '_original',
+      'thumbnail' => 'thumbnail',
+      'preview' => 'preview',
+    ),
+    'validate_argument_project_term_argument_type' => 'tid',
+    'validate_argument_project_term_argument_action_top_without' => 'pass',
+    'validate_argument_project_term_argument_action_top_with' => 'pass',
+    'validate_argument_project_term_argument_action_child' => 'pass',
+    'validate_argument_php' => '',
+  ),
+));
+$handler->override_option('filters', array(
+  'timestamp' => array(
+    'operator' => '>=',
+    'value' => array(
+      'type' => 'offset',
+      'value' => '-2 years',
+      'min' => '',
+      'max' => '',
+    ),
+    'group' => '0',
+    'exposed' => FALSE,
+    'expose' => array(
+      'operator' => FALSE,
+      'label' => '',
+    ),
+    'id' => 'timestamp',
+    'table' => 'sampler_project_issue_reporters_participants_by_project',
+    'field' => 'timestamp',
+    'relationship' => 'none',
+  ),
+));
+$handler->override_option('access', array(
+  'type' => 'none',
+));
+$handler->override_option('cache', array(
+  'type' => 'none',
+));
+$handler->override_option('title', 'Total participants per project');
+$handler->override_option('items_per_page', 104);
+$handler->override_option('style_plugin', 'views_sparkline');
+$handler->override_option('style_options', array(
+  'width' => '100px',
+  'height' => '20px',
+  'series' => array(
+    1 => array(
+      'enable' => 1,
+      'field' => 'value_participants',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '0.8',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 1,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '6',
+      'label_point_top_offset' => '-10',
+      'pad' => 'left',
+      'pad_value' => 'zero',
+    ),
+    2 => array(
+      'enable' => 0,
+      'field' => 'value_participants',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    3 => array(
+      'enable' => 0,
+      'field' => 'value_participants',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    4 => array(
+      'enable' => 0,
+      'field' => 'value_participants',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+    5 => array(
+      'enable' => 0,
+      'field' => 'value_participants',
+      'type' => 'line',
+      'color' => '#336699',
+      'line_width' => '1.0',
+      'line_fill' => 0,
+      'bar_width' => '0.8',
+      'bar_align' => 'center',
+      'shadow_size' => '0',
+      'label_point' => 0,
+      'label_point_radius' => '1',
+      'label_point_color' => '#FF0000',
+      'label_point_fill_color' => '#FF0000',
+      'label_point_left_offset' => '2',
+      'label_point_top_offset' => '-10',
+      'pad' => 'none',
+      'pad_value' => 'null',
+    ),
+  ),
+));
+
