summaryrefslogtreecommitdiffstats
path: root/qtip/base/constant.py
blob: 76481b472e5087311b82c7991d678a18511476e2 (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
##############################################################################
# Copyright (c) 2016 ZTE Corp 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
##############################################################################


class FormulaName(object):
    """formula names"""
    ARITHMETIC_MEAN = 'arithmetic mean'
    WEIGHTED_ARITHMETIC_MEAN = 'weighted arithmetic mean'
    GEOMETRIC_MEAN = 'geometric mean'
    WEIGHTED_GEOMETRIC_MEAN = 'weighted geometric mean'


class PkgName(object):
    """QTIP package names"""
    COLLECTOR = 'collector'
    DRIVER = 'driver'
    REPORTER = 'reporter'
    RUNNER = 'runner'
    SPEC = 'spec'


class PropName(object):
    """property names"""
    # list
    NAME = 'name'
    CONTENT = 'content'
    ABSPATH = 'abspath'
    # content
    name = 'name'
    DESCRIPTION = 'description'
    # spec
    SECTIONS = 'sections'
    WEIGHT = 'weight'
    FORMULA = 'formula'
    METRICS = 'metrics'
    WORKLOADS = 'workloads'
    # plan
    CONFIG = 'config'
    FACILITY = 'facility'
    ENGINEER = 'engineer'
    DRIVER = 'driver'
    COLLECTOR = 'collector'
    REPORTER = 'reporter'
    QPIS = 'QPIs'