diff options
| author | fumingwei <[email protected]> | 2023-09-11 16:59:48 +0800 |
|---|---|---|
| committer | fumingwei <[email protected]> | 2023-09-11 16:59:48 +0800 |
| commit | c8221fb80387230443727687d4425473327ba978 (patch) | |
| tree | d4b733416e14d7e13582c72977caeb6c04dfa923 /include/fieldstat | |
| parent | 159c7767eb6380dad96dc50fd9b7af54b6b8efb7 (diff) | |
temp 10feature-fs4
Diffstat (limited to 'include/fieldstat')
| -rw-r--r-- | include/fieldstat/fieldstat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fieldstat/fieldstat.h b/include/fieldstat/fieldstat.h index 9ea2d5f..9f82c32 100644 --- a/include/fieldstat/fieldstat.h +++ b/include/fieldstat/fieldstat.h @@ -246,6 +246,10 @@ long long fieldstat_hist_value_at_percentile(const struct fieldstat *instance, i long long fieldstat_hist_value_total_count(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); long long fieldstat_hist_value_sum(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); long long fieldstat_hist_count_le_value(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id, long long value); +long long fieldstat_hist_value_max(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); +long long fieldstat_hist_value_min(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); +double fieldstat_hist_value_mean(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); +double fieldstat_hist_value_stddev(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id); // get the base 64 encoded string of the serialized blob of a cell void fieldstat_get_serialized_blob(const struct fieldstat *instance, int cube_id, int metric_id, int cell_id, char **blob, size_t *blob_size); |
