~ubuntu-branches/ubuntu/vivid/ceilometer/vivid

« back to all changes in this revision

Viewing changes to etc/ceilometer/deprecated_pipeline.yaml

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-06 14:44:28 UTC
  • mto: (28.1.1 utopic-proposed) (1.2.1)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: package-import@ubuntu.com-20140306144428-rvphsh4igwyulzf0
Tags: upstream-2014.1~b3
ImportĀ upstreamĀ versionĀ 2014.1~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
---
 
2
-
 
3
    name: meter_pipeline
 
4
    interval: 600
 
5
    meters:
 
6
        - "*"
 
7
    resources:
 
8
    transformers:
 
9
    publishers:
 
10
        - rpc://
 
11
-
 
12
    name: cpu_pipeline
 
13
    interval: 600
 
14
    meters:
 
15
        - "cpu"
 
16
    transformers:
 
17
        - name: "rate_of_change"
 
18
          parameters:
 
19
              target:
 
20
                  name: "cpu_util"
 
21
                  unit: "%"
 
22
                  type: "gauge"
 
23
                  scale: "100.0 / (10**9 * (resource_metadata.cpu_number or 1))"
 
24
    publishers:
 
25
        - rpc://
 
26
-
 
27
    name: disk_pipeline
 
28
    interval: 600
 
29
    meters:
 
30
        - "disk.read.bytes"
 
31
        - "disk.read.requests"
 
32
        - "disk.write.bytes"
 
33
        - "disk.write.requests"
 
34
    transformers:
 
35
        - name: "rate_of_change"
 
36
          parameters:
 
37
              source:
 
38
                  map_from:
 
39
                      name: "disk\\.(read|write)\\.(bytes|requests)"
 
40
                      unit: "(B|request)"
 
41
              target:
 
42
                  map_to:
 
43
                      name: "disk.\\1.\\2.rate"
 
44
                      unit: "\\1/s"
 
45
                  type: "gauge"
 
46
    publishers:
 
47
        - rpc://
 
48
-
 
49
    name: network_pipeline
 
50
    interval: 600
 
51
    meters:
 
52
        - "network.incoming.bytes"
 
53
        - "network.incoming.packets"
 
54
        - "network.outgoing.bytes"
 
55
        - "network.outgoing.packets"
 
56
    transformers:
 
57
        - name: "rate_of_change"
 
58
          parameters:
 
59
              source:
 
60
                  map_from:
 
61
                      name: "network\\.(incoming|outgoing)\\.(bytes|packets)"
 
62
                      unit: "(B|packet)"
 
63
              target:
 
64
                  map_to:
 
65
                      name: "network.\\1.\\2.rate"
 
66
                      unit: "\\1/s"
 
67
                  type: "gauge"
 
68
    publishers:
 
69
        - rpc://