Skip to content

Commit

Permalink
introduce Logging support
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Oct 20, 2015
1 parent 6ceb711 commit 5e7faac
Show file tree
Hide file tree
Showing 13 changed files with 1,312 additions and 0 deletions.
Empty file.
28 changes: 28 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,34 @@ var apis = {
*/
dns: require('./dns'),

/**
* <p class="notice">
* **This is a *Beta* release of Google Cloud Logging for Google Compute
* Engine.** This feature is not covered by any SLA or deprecation policy
* and may be subject to backward-incompatible changes.
* </p>
*
* [Google Cloud Logging](https://cloud.google.com/logging/docs) collects and
* stores logs from applications and services on the Google Cloud Platform:
*
* - Export your logs to Google Cloud Storage, Google BigQuery, or Google
* Cloud Pub/Sub.
* - Integrate third-party logs from your virtual machine instances by
* installing the logging agent, `google-fluentd`.
*
* @type {module:logging}
*
* @return {module:logging}
*
* @example
* var gcloud = require('gcloud');
* var logging = gcloud.logging({
* projectId: 'grape-spaceship-123',
* keyFilename: '/path/to/keyfile.json'
* });
*/
logging: require('./logging'),

/**
* [Google Cloud Pub/Sub](https://developers.google.com/pubsub/overview) is a
* reliable, many-to-many, asynchronous messaging service from Google Cloud
Expand Down
Loading

0 comments on commit 5e7faac

Please sign in to comment.