Hosted Graphite provides a AppHarbor add-on! It’s easy to add Hosted Graphite as an add-on for Appharbor. Open your app, select Add-ons, in the catalog of add-ons click Hosted Graphite and click Install. You’ll be given an API key and can start sending metrics.
You can now begin to send metric messages (see: The Metric Data Format) to Hosted Graphite from your AppHarborapplication. For more information on App Harbor, check out the about AppHarbor page.
Now that the add-on has been setup, the Hosted Graphite API Key will be available via the environment variable HOSTEDGRAPHITE_APIKEY. See the appropriate language snippet below for an example on how to access this variable in your app.
Ruby
apikey = ENV['HOSTEDGRAPHITE_APIKEY']
See also: Sending Metrics with Ruby
Python
apikey = os.environ['HOSTEDGRAPHITE_APIKEY']
See also: Sending Metrics with Python
Java
String apikey = System.getenv("HOSTEDGRAPHITE_APIKEY");
See also: Sending Metrics with Java
PHP
$apikey = getenv('HOSTEDGRAPHITE_APIKEY');
See also: Sending Metrics with PHP
Node.js
var apikey = process.env.HOSTEDGRAPHITE_APIKEY;
See also: Sending Metrics with Node.js