Home
last modified time | relevance | path

Searched refs:NO_ENTITY (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/tools/advisor/test/
Dtest_db_stats_fetcher.py7 from advisor.db_timeseries_parser import NO_ENTITY
22 self.stats_dict = {NO_ENTITY: {}}
26 self.stats_dict[NO_ENTITY][stat_name] = {}
31 self.stats_dict[NO_ENTITY][stat_name][timestamp] = value
47 NO_ENTITY: {1530896440: 0.9767546362322214}
70 expected_cond_trigger = {NO_ENTITY: [1792.0, 15.9638]}
75 expected_cond_trigger = {NO_ENTITY: [1792.0, 15.9638]}
95 expected_trigger = {NO_ENTITY: {
122 expected_keys_ts = {NO_ENTITY: {
/rocksdb-6.9/tools/advisor/advisor/
Ddb_stats_fetcher.py7 from advisor.db_timeseries_parser import TimeSeriesData, NO_ENTITY
90 if stat not in self.keys_ts[NO_ENTITY]:
91 self.keys_ts[NO_ENTITY][stat] = {}
97 self.keys_ts = {NO_ENTITY: {}}
135 self.keys_ts = {NO_ENTITY: perf_context_ts}
143 for stat in self.keys_ts[NO_ENTITY]:
150 epoch_ts[NO_ENTITY][stat][ts] = (
151 epoch_ts[NO_ENTITY][stat][ts] -
152 epoch_ts[NO_ENTITY][stat][timeseries[ix+1]]
154 if epoch_ts[NO_ENTITY][stat][ts] < 0:
[all …]
Ddb_timeseries_parser.py12 NO_ENTITY = 'ENTITY_PLACEHOLDER' variable