risingwave_license/
lib.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
15#![feature(let_chains)]
16
17mod cpu;
18mod feature;
19mod key;
20mod manager;
21
22pub use feature::*;
23pub use key::*;
24pub use manager::*;
25use risingwave_pb::telemetry::PbTelemetryEventStage;
26use risingwave_telemetry_event::report_event_common;
27
28pub(crate) fn report_telemetry(feature: &Feature, feature_name: &str, success_flag: bool) {
29    if !matches!(feature, Feature::TestPaid) {
30        let mut attr_builder = jsonbb::Builder::<Vec<u8>>::new();
31        attr_builder.begin_object();
32        attr_builder.add_string("success");
33        attr_builder.add_value(jsonbb::ValueRef::Bool(success_flag));
34        attr_builder.end_object();
35        let attr = attr_builder.finish();
36
37        report_event_common(
38            PbTelemetryEventStage::Unspecified,
39            feature_name,
40            0,
41            None,
42            None,
43            Some(attr),
44            "paywall".to_owned(),
45        );
46    }
47}