~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to doc/examples/cloud-config-reporting.txt

  • Committer: Scott Moser
  • Date: 2016-08-10 15:06:15 UTC
  • Revision ID: smoser@ubuntu.com-20160810150615-ma2fv107w3suy1ma
README: Mention move of revision control to git.

cloud-init development has moved its revision control to git.
It is available at 
  https://code.launchpad.net/cloud-init

Clone with 
  git clone https://git.launchpad.net/cloud-init
or
  git clone git+ssh://git.launchpad.net/cloud-init

For more information see
  https://git.launchpad.net/cloud-init/tree/HACKING.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#cloud-config
2
 
##
3
 
## The following sets up 2 reporting end points.
4
 
## A 'webhook' and a 'log' type.
5
 
## It also disables the built in default 'log'
6
 
reporting:
7
 
   smtest:
8
 
     type: webhook
9
 
     endpoint: "http://myhost:8000/"
10
 
     consumer_key: "ckey_foo"
11
 
     consumer_secret: "csecret_foo"
12
 
     token_key: "tkey_foo"
13
 
     token_secret: "tkey_foo"
14
 
   smlogger:
15
 
     type: log
16
 
     level: WARN
17
 
   log: null