Skip to content

Commit

Permalink
oracle_performance: fix unit test
Browse files Browse the repository at this point in the history
Change-Id: If92f028b6fdefb6317ddcc17d1fa8614b958966c
  • Loading branch information
Moritz Kiemer committed May 23, 2019
1 parent 010d22f commit cc2bc55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion checks/oracle_performance
Expand Up @@ -165,7 +165,7 @@ def check_oracle_performance(item, _no_params, parsed):
yield 0, "Library cache hit ratio: %.1f%%" % pin_ratio, \
[('oracle_library_cache_hit_ratio', pin_ratio)]

yield 0, ", ".join(sorted(infotexts)), perfdata
yield 0, ", ".join(sorted(infotexts)), sorted(perfdata)
return


Expand Down
Expand Up @@ -61,7 +61,7 @@
None)]),
(0,
'DB CPU: 0.0/s, DB time: 0.0/s',
[('oracle_db_time', 0.0, None, None, None, None),
sorted([('oracle_db_time', 0.0, None, None, None, None),
('oracle_db_cpu', 0.0, None, None, None, None),
('oracle_db_block_gets', 0.0, None, None, None, None),
('oracle_db_block_change', 0.0, None, None, None, None),
Expand All @@ -71,4 +71,4 @@
('oracle_free_buffer_wait', 0.0, None, None, None, None),
('oracle_buffer_busy_wait', 0.0, None, None, None, None),
('oracle_pins_sum', 0.0, None, None, None, None),
('oracle_pin_hits_sum', 0.0, None, None, None, None)])])]}
('oracle_pin_hits_sum', 0.0, None, None, None, None)]))])]}

0 comments on commit cc2bc55

Please sign in to comment.