Skip to content

Commit

Permalink
Merge pull request #30 from george0st/changes
Browse files Browse the repository at this point in the history
bump qgate-graph
  • Loading branch information
george0st authored Sep 4, 2024
2 parents 41b0dbe + f26c41d commit 8aaacdf
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contourpy>=1.0.0,<=1.3.0
psutil>=5.9.0,<=6.0.0
packaging>=21.0

qgate_graph==1.4.13
qgate_graph==1.4.14

coverage>=7
coverage-badge>=1
Expand Down
66 changes: 33 additions & 33 deletions qgate_perf/file_format.py
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@

class FileFormat:

PRF_TYPE="type"
PRF_TYPE = "type"

# header
PRF_HDR_TYPE="headr"
PRF_HDR_LABEL="label"
PRF_HDR_BULK="bulk"
PRF_HDR_DURATION="duration"
PRF_HDR_AVIALABLE_CPU="cpu"
PRF_HDR_HOST="host"
PRF_HDR_MEMORY="mem"
PRF_HDR_MEMORY_FREE="mem_free"
PRF_HDR_NOW="now"
PRF_HDR_TYPE = "headr"
PRF_HDR_LABEL = "label"
PRF_HDR_BULK = "bulk"
PRF_HDR_DURATION = "duration"
PRF_HDR_AVIALABLE_CPU = "cpu"
PRF_HDR_HOST = "host"
PRF_HDR_MEMORY = "mem"
PRF_HDR_MEMORY_FREE = "mem_free"
PRF_HDR_NOW = "now"

# detail
PRF_DETAIL_TYPE="detail"
PRF_DETAIL_PROCESSID="processid"
PRF_DETAIL_CALLS="calls"
PRF_DETAIL_COUNT="count"
PRF_DETAIL_TOTAL="total"
PRF_DETAIL_AVRG="avrg"
PRF_DETAIL_MIN="min"
PRF_DETAIL_MAX="max"
PRF_DETAIL_STDEV="st-dev"
PRF_DETAIL_ERR="err"
PRF_DETAIL_TIME_INIT="initexec"
PRF_DETAIL_TIME_START="startexec"
PRF_DETAIL_TIME_END="endexec"
PRF_DETAIL_TYPE = "detail"
PRF_DETAIL_PROCESSID = "processid"
PRF_DETAIL_CALLS = "calls"
PRF_DETAIL_COUNT = "count"
PRF_DETAIL_TOTAL = "total"
PRF_DETAIL_AVRG = "avrg"
PRF_DETAIL_MIN = "min"
PRF_DETAIL_MAX = "max"
PRF_DETAIL_STDEV = "st-dev"
PRF_DETAIL_ERR = "err"
PRF_DETAIL_TIME_INIT = "initexec"
PRF_DETAIL_TIME_START = "startexec"
PRF_DETAIL_TIME_END = "endexec"

# core output
PRF_CORE_TYPE="core"
PRF_CORE_PLAN_EXECUTOR_ALL="plan_executors"
PRF_CORE_PLAN_EXECUTOR="plan_executors_detail"
PRF_CORE_REAL_EXECUTOR="real_executors"
PRF_CORE_GROUP="group"
PRF_CORE_TOTAL_CALL="total_calls"
PRF_CORE_AVRG_TIME="avrg_time"
PRF_CORE_STD_DEVIATION="std_deviation"
PRF_CORE_TOTAL_CALL_PER_SEC="total_call_per_sec"
PRF_CORE_TIME_END="endexec"
PRF_CORE_TYPE = "core"
PRF_CORE_PLAN_EXECUTOR_ALL = "plan_executors"
PRF_CORE_PLAN_EXECUTOR = "plan_executors_detail"
PRF_CORE_REAL_EXECUTOR = "real_executors"
PRF_CORE_GROUP = "group"
PRF_CORE_TOTAL_CALL = "total_calls"
PRF_CORE_AVRG_TIME = "avrg_time"
PRF_CORE_STD_DEVIATION = "std_deviation"
PRF_CORE_TOTAL_CALL_PER_SEC = "total_call_per_sec"
PRF_CORE_TIME_END = "endexec"
2 changes: 1 addition & 1 deletion qgate_perf/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Store the version here so:

__version__ = '0.4.14'
__version__ = '0.4.15'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ contourpy>=1.0.0,<=1.3.0
psutil>=5.9.0,<=6.0.0
packaging>=21.0

qgate_graph==1.4.13
qgate_graph==1.4.14

0 comments on commit 8aaacdf

Please sign in to comment.