Skip to content

Data Send to the Kafka Topic

andre-d-gomes edited this page Mar 14, 2022 · 12 revisions

The following items are pushed to a certain Kafka topic, received from the monitoring spec:

Input Parameters Description
Raw Data JSON structure containing the raw monitoring data, the operatorID(tenantID), the transactionID(businessID) and the network ID.
Data Hash Encrypted Hash of provided monitoring data using a key of the Resource Consumer.

Raw Data Example:

{
  "operatorID": "domain-operator-a",
  "transactionID": "ab51f3e1-7b61-4f9d-85a4-9e9f366b593b",
  "networkID": "15cce067-4818-4afc-b0f8-0e4a1babf753",
  "monitoringData": {
    "metricName": "osm_requests",
    "metricValue": 0.34,
    "resourceID": "10",
    "instanceID": "15cce067-4818-4afc-b0f8-0e4a1babf753",
    "productID": "10",
    "timestamp": "2022-03-14 14:32:00",
    "aggregationMethod": "AVG"
  }
}

Clone this wiki locally