blob: 8529d8dc643af462c397faa256dc591eff332179 (
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
|
##############################################################################
# Copyright (c) 2017 ZTE Corporation and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
name: compute QPI
description: compute QPI profile
info:
facility: local
engineer: local
config:
driver: ansible
collectors:
- type: logfile
paths:
- '../../external/sysinfo'
logs:
- filename: top.log
parsers:
- type: grep
regex: 'Cpu\(s\):.+?(?P<cpu_idle>\d+\.\d)\sid'
- filename: inxi.log
parsers:
- type: grep
regex: '.+\s+Host:\s+(?P<hostname>.+)\sKernel'
- type: grep
regex: '.+\sMemory:\s+(?P<memory>.+MB)\s'
- type: grep
regex: '^CPU\(s\):\s+(?P<cpu>.+)'
- type: grep
regex: '.+\sDistro:\s+(?P<os>.+)'
- type: grep
regex: '.+\sKernel:\s+(?P<kernel>.+)\sConsole'
- type: grep
regex: '.+\s+HDD Total Size:\s+(?P<disk>.+)\s'
- type: grep
regex: '.+\sproduct:\s+(?P<product>.+)\sversion'
reporter:
name: console
# transform collected data into timeline
transformer: timeline
QPIs:
- compute.yaml
|