From 013cd0a2cca053d7160ad97a524d3b0e11f4dfa0 Mon Sep 17 00:00:00 2001 From: atsag Date: Mon, 7 Oct 2024 18:26:01 +0300 Subject: [PATCH] main (#15) * Miscellaneous improvements Added required dependencies in the setup script Improved logging during dataset creation Added README.md file Change-Id: I67e98938f3660656d2ced916f258dfe5d475ecd3 * Readme file location correction Corrected the location of the README.md file Change-Id: I89b86b7471123d653592cd98f513ff25181d2520 * Environment variable correction Added default value for an environmental variable Change-Id: I81ca8f427c78aaec62d3eef9bad47d685e2a84ba * Small configuration file improvements * Corrected the publishing of forecasts for a particular application * Retrieve the appropriate publisher to publish predictions, using the application name * Fix the check for metric_list message version * Necessary Improvements to allow multi-application support Fixed the function call procedure for individual attribute predictions Fixed the handling of upper/lower bounds of individual attributes in prediction sanitization * Miscellaneous improvements Improved the logging of the forecaster Fixed the handling of upper/lower bounds of individual attributes in prediction sanitization * Corrections to the logging level * Additional correction to the logging level --- .../src/r_predictors/prediction_configuration.properties | 1 + exponential-smoothing-predictor/src/runtime/Predictor.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/exponential-smoothing-predictor/src/r_predictors/prediction_configuration.properties b/exponential-smoothing-predictor/src/r_predictors/prediction_configuration.properties index ccb52cc..e454903 100755 --- a/exponential-smoothing-predictor/src/r_predictors/prediction_configuration.properties +++ b/exponential-smoothing-predictor/src/r_predictors/prediction_configuration.properties @@ -1,3 +1,4 @@ +#Mon Oct 07 14:21:24 UTC 2024 INFLUXDB_HOSTNAME=nebulous-influxdb INFLUXDB_PORT=8086 INFLUXDB_USERNAME=my-user diff --git a/exponential-smoothing-predictor/src/runtime/Predictor.py b/exponential-smoothing-predictor/src/runtime/Predictor.py index 950c296..3204cc2 100755 --- a/exponential-smoothing-predictor/src/runtime/Predictor.py +++ b/exponential-smoothing-predictor/src/runtime/Predictor.py @@ -494,7 +494,7 @@ def main(): Utilities.update_influxdb_organization_id() # Subscribe to retrieve the metrics which should be used - logging.basicConfig(level=logging.info) + logging.basicConfig(level=logging.INFO) id = "exponentialsmoothing" EsPredictorState.disconnected = True