Erro:Error executing script: function __scriptExecutor__() {return (p69.value*p8.value/100)

Pessoal, estou recebendo esse erro nos log (mango e catalina) que está enchendo o meu disco. Já deletei os datapoints citados como p8 e p69 e o erro persiste. Alguém sabe como resolver?
[Ljava.lang.StackTraceElement;@445ac845
ERROR 2020-10-20 17:36:22,096 (com.serotonin.mango.rt.dataSource.meta.ScriptExecutor.execute:147) - Error executing script: function scriptExecutor() {return (p69.valuep8.value/100);
}
scriptExecutor();/

Mango - Open Source M2M - http://mango.serotoninsoftware.com
Copyright © 2006-2011 Serotonin Software Technologies Inc.
@author Matthew Lohbihler

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see http://www.gnu.org/licenses/.

*/
function max() {
var max = -java.lang.Double.MAX_VALUE;
for (var i=0; i<arguments.length; i++) {
if (max < arguments[i])
max = arguments[i];
}
return max;
}

function min() {
var min = java.lang.Double.MAX_VALUE;
for (var i=0; i<arguments.length; i++) {
if (min > arguments[i])
min = arguments[i];
}
return min;
}

function avg() {
if (arguments.length == 0)
return 0;

var sum = 0;
for (var i=0; i<arguments.length; i++)
    sum += arguments[i];

return sum / arguments.length;

}

function sum() {
var sum = 0;
for (var i=0; i<arguments.length; i++)
sum += arguments[i];
return sum;
}
ReferenceError: “p69” is not defined. (#1)

ReferenceError: “p69” is not defined. (#1)

parece que no datapoint Meta tu nao definiu quem é p69, ou talvez tenha digitado errado