iceberg-cpp
Loading...
Searching...
No Matches
metrics_types.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20#pragma once
21
28
29#include <chrono>
30#include <cstdint>
31#include <string>
32
33#include "iceberg/iceberg_export.h"
34#include "iceberg/metrics/counter.h" // CounterUnit
35
36namespace iceberg {
37
39using DurationNs = std::chrono::nanoseconds;
40
44struct ICEBERG_EXPORT CounterResult {
45 CounterUnit unit = CounterUnit::kCount;
46 int64_t value = 0;
47
48 bool operator==(const CounterResult&) const = default;
49};
50
54struct ICEBERG_EXPORT TimerResult {
55 // Time unit name; defaults to "nanoseconds" for built-in metrics.
56 std::string unit{"nanoseconds"};
57 int64_t count = 0;
58 std::chrono::nanoseconds total_duration{0};
59
60 bool operator==(const TimerResult&) const = default;
61};
62
63} // namespace iceberg
std::chrono::nanoseconds DurationNs
Duration type for metrics reporting (nanosecond precision).
Definition metrics_types.h:39
Serialisable snapshot of a single Counter measurement.
Definition metrics_types.h:44
Serialisable snapshot of a single Timer measurement.
Definition metrics_types.h:54