Skip to content
Snippets Groups Projects
messages.py 1.45 KiB
Newer Older
  • Learn to ignore specific revisions
  • Waleed Akbar's avatar
    Waleed Akbar committed
    # Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #      http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    import uuid, time
    from common.proto.kpi_value_api_pb2 import KpiValue, KpiValueList
    
    
    def create_kpi_value_list():
        _create_kpi_value_list = KpiValueList()
        # To run this experiment sucessfully, already existing UUID in KPI DB in necessary.
        # because the UUID is used to get the descriptor form KPI DB.
        EXISTING_KPI_IDs = ["198a5a83-ddd3-4818-bdcb-e468eda03e18",
                            "c288ea27-db40-419e-81d3-f675df22c8f4", 
                            str(uuid.uuid4())]
    
        for kpi_id_uuid in EXISTING_KPI_IDs:
            kpi_value_object = KpiValue()
            kpi_value_object.kpi_id.kpi_id.uuid      = kpi_id_uuid
            kpi_value_object.timestamp.timestamp     = float(time.time())
            kpi_value_object.kpi_value_type.floatVal = 100
    
            _create_kpi_value_list.kpi_value_list.append(kpi_value_object)
    
        return _create_kpi_value_list