risingwave_stream/common/
metrics.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use std::sync::Arc;
16
17use crate::executor::monitor::StreamingMetrics;
18use crate::task::ActorId;
19
20#[derive(Clone)]
21pub struct MetricsInfo {
22    pub metrics: Arc<StreamingMetrics>,
23    pub table_id: String,
24    pub actor_id: String,
25    pub desc: String,
26}
27
28impl MetricsInfo {
29    pub fn new(
30        metrics: Arc<StreamingMetrics>,
31        table_id: u32,
32        actor_id: ActorId,
33        desc: impl Into<String>,
34    ) -> Self {
35        Self {
36            metrics,
37            table_id: table_id.to_string(),
38            actor_id: actor_id.to_string(),
39            desc: desc.into(),
40        }
41    }
42
43    pub fn for_test() -> Self {
44        Self {
45            metrics: Arc::new(StreamingMetrics::unused()),
46            table_id: "table_id test".to_owned(),
47            actor_id: "actor_id test".to_owned(),
48            desc: "desc test".to_owned(),
49        }
50    }
51}