diff --git a/core/modules/statistics/migration_templates/d7_statistics_node_counter.yml b/core/modules/statistics/migration_templates/d7_statistics_node_counter.yml
new file mode 100644
index 0000000..abb7695
--- /dev/null
+++ b/core/modules/statistics/migration_templates/d7_statistics_node_counter.yml
@@ -0,0 +1,19 @@
+id: d7_statistics_node_counter
+label: Drupal 7 Node Counter
+migration_tags:
+  - Drupal 7
+source:
+  plugin: d7_node_counter
+process:
+  nid:
+    plugin: migration
+    migration: d7_node
+    source: nid
+  totalcount: totalcount
+  daycount: daycount
+  timestamp: timestamp
+destination:
+  plugin: node_counter
+migration_dependencies:
+  required:
+    - d7_node
diff --git a/core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php b/core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php
new file mode 100644
index 0000000..139a0ec
--- /dev/null
+++ b/core/modules/statistics/src/Plugin/migrate/destination/NodeCounter.php
@@ -0,0 +1,85 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\statistics\Plugin\migrate\destination\NodeCounter.
+ */
+
+namespace Drupal\ban\Plugin\migrate\destination;
+
+use Drupal\ban\BanIpManagerInterface;
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\migrate\Entity\MigrationInterface;
+use Drupal\migrate\Plugin\migrate\destination\DestinationBase;
+use Drupal\migrate\Row;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Destination for blocked IP addresses.
+ *
+ * @MigrateDestination(
+ *   id = "node_counter"
+ * )
+ */
+class NodeCounter extends DestinationBase implements ContainerFactoryPluginInterface {
+
+  /**
+   * Constructs a BlockedIP object.
+   *
+   * @param array $configuration
+   *  Plugin configuration.
+   * @param string $plugin_id
+   *  The plugin ID.
+   * @param mixed $plugin_definition
+   *  The plugin definiiton.
+   * @param \Drupal\migrate\Entity\MigrationInterface $migration
+   *  The current migration.
+   */
+  public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition, $migration);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) {
+    return new static(
+      $configuration,
+      $plugin_id,
+      $plugin_definition,
+      $migration
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getIds() {
+    return ['nid' => ['type' => 'int']];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function fields(MigrationInterface $migration = NULL) {
+    return [
+      'nid' => $this->t('The nid of the node for these statistics.'),
+      'totalcount' => $this->t('The total number of times the node has been viewed.'),
+      'daycount' => $this->t('The total number of times the node has been viewed today.'),
+      'timestamp' => $this->t('The most recent time the node has been viewed.'),
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function import(Row $row, array $old_destination_id_values = array()) {
+    $nid = $row->getDestinationProperty('nid');
+    $totalcount = $row->getDestinationProperty('totalcount');
+    $daycount = $row->getDestinationProperty('daycount');
+    $timestamp = $row->getDestinationProperty('timestamp');
+
+    // @todo Save the statistics.
+  }
+
+}
