blob: 987974683e2b8e09b8953c01efe48a8b7a1603a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
tosca_definitions_version: tosca_simple_yaml_1_0_0
imports:
- dcae_uservice_tosca.yaml
topology_template:
node_templates:
HostComputeStats_Ceilometer:
type: delimitedAsciiDataFormat
properties:
name: HostComputeStats_Ceilometer
UUID: HostComputeStats_Ceilometer
version: 1.0.0
delimiter: "|"
fieldList:
-
name: DATETIME_FTP_COLLECTION
type: date_time
# subType: 1.0
subType: "yyyymmddhhmmss"
-
name: DATETIME_OSS
type: date_time
subType: "yyyymmddhhmmss"
-
name: DATETIMEUTC
type: date_time
subType: "yyyymmddhhmmss"
-
name: DATETIMEZONE
type: date_time
subType: "yyyymmddhhmmss zzz"
-
name: EMS_NAME
type: string
comment: "Element Manager System Name?"
-
name: NE_VERSION
type: string
comment: "Network Element Version????"
-
name: PERIOD
type: int
comment: "Sample period in seconds"
-
name: SUSPECTFLAG
type: string
comment: "Data suspect? Null means ok?"
-
name: SERVICE
type: string
-
name: resourceid
type: string
-
name: hardware.cpu.load.1min
type: float
comment: "CPU load in in the last one minute"
-
name: hardware.cpu.load.5min
type: float
comment: "CPU load in in the last five minutes"
-
name: hardware.cpu.load.15min
type: float
comment: "CPU load in in the last fifteen minutes"
-
name: hardware.cpu.memory.total
type: float
comment: "Total memory size in KB"
-
name: hardware.cpu.memory.avail
type: float
comment: "Memory available in KB"
-
name: hardware.cpu.swap.total
type: float
comment: "Total swap size in KB"
-
name: hardware.cpu.swap.avail
type: float
comment: "Swap available in KB"
-
name: hardware.network.ip.incoming.datagrams
type: float
comment: "Cumulative incoming datagrams"
-
name: hardware.network.ip.outgoing.datagrams
type: float
comment: "Cumulative outgoing datagrams"
-
name: hardware.network.ip.incoming.blocks
type: float
comment: "Cumulative incoming blocks"
-
name: hardware.network.ip.outgoing.blocks
type: float
comment: "Cumulative outgoing blocks"
-
name: hardware.system_states.cpu.idle
type: float
comment: "CPU Percent idle"
formatType: fixed_format
formatSubType: delimitedAscii
fullList: true
numFields: 22
|