Monitoring Model Production Indicators


The online model indicator monitoring refers to the real-time online analysis of model performance parameters during model production. After the model version is deployed and starts running, you can monitor the following model production indicators to understand the operating performance of the model:

  • System service indicators
    • Service access information
    • Underlying system information
  • Model performance indicators
    • Evaluation indicators
    • Comparison with true values
    • Comparison with business indicators


The production indicators of a model directly affects the judgment of its lifecycle phases, and can also serve as an important basis for getting models online, adjusting model service weights, and decommissioning models.


The model indicator monitoring consumes InfluxDB’s storage resources and indicator-smooth computing resources. Once a model version is deployed and online, the indicator monitoring function is disabled by default. For relatively simple models, you can choose not to enable the indicator monitoring function for maximizing the optimization of resources.

Viewing Model Production Indicators

You can view the production indicators of the model versions in Production status by following these steps:

  1. In the model list, click a model name to open the Model Version Management page.

  2. Under the Deployment Instance tab, click the deployment instance name, and then enable the Indicator Monitoring function on the top of the Model Deployment canvas.

    ../_images/monitor_indicator.png
  3. In the Model Indicator Monitoring page, view the system service monitoring data, including the total number of service calls, average call frequency, call success rate, and service response delay.

    ../_images/system_indicator.png
  4. Click Add Custom Indicator to add more custom indicator monitoring items.

Feedback Value and Predicted Value

In the Predictor card of the Model Deployment canvas, you can obtain the URL for pushing the feedback value, and then push the response parameters through the URL according to business needs.


When the Feedback interface is successfully called, the predictorand observer indicator sources will be generated. You can view the curve comparison between the feedback value and the predictor value through the indicator monitoring page.

  1. In the Model Deployment canvas, click Indicator Monitoring, and then click Add Custom Indicator.

  2. Enter the indicator name in the pop-up window, and select Feedback Value and Predictor Value in the Indicator Type dropdown menu.

  3. Specify variable names for predictor and observer indicator sources.

    ../_images/feedback_indicator.png
  4. Click OK, add the feedback value and predictor value indicators, and view the curve comparison between the feedback value and the predictor value (where the X-axis stands for the time dimension, and the Y-axis stands for the value of the indicator).

    ../_images/feedback_indicator_1.png

Reward Value

The model Reward refers to the introduction of the business Feedback value of the model and the calculation with the Predictor value to determine the result of the current prediction and give appropriate rewards, providing reference for the next model prediction. You can view the line chart of the Reward value through the indicator monitoring page.

  1. In the Model Deployment canvas, click Indicator Monitoring, and then click Add Custom Indicator.

  2. Enter the indicator name in the pop-up window, and select Reward Value in the Indicator Type dropdown menu.

  3. The system will automatically match the feedback indicator source and the reward variable of the model version.

    ../_images/reward_indicator.png
  4. Click OK, add the reward value indicator, and view the line chart of the Reward value (where the X-axis stands for the time dimension, and the Y-axis stands for the reward input indicator value).

    ../_images/reward_indicator_1.png

Fitting Indicators

When monitoring the existing model production indicators, the following monitoring indicators can be added to the fitting model operator:


Metric name Value range
RMSE Root Mean Squared Error
MAE Mean Absolute Error
MPE Mean Percentage Error
R^2 R-square
MAPE Mean Absolute Percentage Error


  1. In the Model Deployment canvas, click Indicator Monitoring, and then click Add Custom Indicator.

  2. Enter the indicator name in the pop-up window, and select rmse / mae / mpe / r2 / mape in the Indicator Type dropdown menu.

  3. Specify variable names for predictor and observer indicator sources.

  4. In the Sliding Window column, specify the window time for monitoring the changes of indicators in the dynamic environment.

    ../_images/mae_indicator.png
  5. Click OK to add the fitting indicator, and view the indicator line chart.

    ../_images/mae_indicator_1.png

Classification Indicators

When monitoring the existing model production indicators, the following monitoring indicators can be added to the classification model operator:


Metric name Description
Precision Precision rate, which is the ratio of the number of positive cases of correct prediction to the total number of positive cases predicted, TP/(TP+FP)
Recall TP/(TP+FN)
F1-score Weighted harmonic average of precision and recall


  1. In the Model Deployment canvas, click Indicator Monitoring, and then click Add Custom Indicator.

  2. Enter the indicator name in the pop-up window, and select precision / recall / f1score in the Indicator Type dropdown menu.

  3. Specify variable names for predictor and observer indicator sources.

  4. In the Sliding Window column, specify the window time for monitoring the changes of indicators in the dynamic environment.

    ../_images/precision_indicator.png
  5. Click OK to add the classification indicator.