fix:[TS-4921]refactor reporting logic for slow log

This commit is contained in:
wangmm0220 2024-07-02 15:07:29 +08:00
parent 65696ce97f
commit 595c3f8e07
1 changed files with 19 additions and 13 deletions

View File

@ -537,6 +537,12 @@ static void monitorSendAllSlowLogAtQuit(){
taosHashCancelIterate(monitorSlowLogHash, pIter);
return;
}
int64_t size = getFileSize(pClient->path);
if(size <= pClient->offset){
taosUnLockFile(pClient->pFile);
taosCloseFile(&(pClient->pFile));
taosRemoveFile(pClient->path);
}else{
int64_t* clusterId = (int64_t*)taosHashGetKey(pIter, NULL);
SAppInstInfo* pInst = getAppInstByClusterId(*clusterId);
if(pInst == NULL) {
@ -545,13 +551,13 @@ static void monitorSendAllSlowLogAtQuit(){
}
SEpSet ep = getEpSet_s(&pInst->mgmtEp);
int64_t offset = 0;
int64_t size = getFileSize(pClient->path);
char* data = readFile(pClient->pFile, &offset, size);
if(data != NULL && sendSlowLog(*clusterId, data, NULL, offset, SLOW_LOG_READ_QUIT, NULL, pInst->pTransporter, &ep) == 0){
quitCnt ++;
}
uDebug("[monitor] monitorSendAllSlowLogAtQuit send slow log :%s", data);
}
}
}
static void monitorSendAllSlowLog(){