You are here

function hook_acquia_spi_get in Acquia Connector 7.3

Same name and namespace in other branches
  1. 6.2 acquia_spi/acquia_spi.api.php \hook_acquia_spi_get()
  2. 7.2 acquia_spi/acquia_spi.api.php \hook_acquia_spi_get()

Include data to be sent to Acquia Insight as part of the SPI process.

Include custom site information to be sent to the Acquia Insight service for detailed site analysis. Insight will process this data and alert appropriately.

Return value

array An array of custom data keyed by unique identifier.

Required format 'string' => array().

1 invocation of hook_acquia_spi_get()
acquia_spi_get in acquia_spi/acquia_spi.module
Gather site profile information about this site.

File

acquia_spi/acquia_spi.api.php, line 29
This file contains no working PHP code.

Code

function hook_acquia_spi_get() {
  $data['example'] = array(
    'result' => TRUE,
    'value' => '9000',
  );
  return $data;
}