comparison OrthancServer/Sources/ServerContext.h @ 5431:4be5f117aa0d

metrics
author Alain Mazy <am@osimis.io>
date Tue, 21 Nov 2023 10:32:42 +0100
parents 111e21b4f8bc
children 48b8dae6dc77
comparison
equal deleted inserted replaced
5430:b83192e7ad10 5431:4be5f117aa0d
280 StoreResult StoreAfterTranscoding(std::string& resultPublicId, 280 StoreResult StoreAfterTranscoding(std::string& resultPublicId,
281 DicomInstanceToStore& dicom, 281 DicomInstanceToStore& dicom,
282 StoreInstanceMode mode, 282 StoreInstanceMode mode,
283 bool isReconstruct); 283 bool isReconstruct);
284 284
285 void PublishDicomCacheMetrics();
286
287 // This method must only be called from "ServerIndex"! 285 // This method must only be called from "ServerIndex"!
288 void RemoveFile(const std::string& fileUuid, 286 void RemoveFile(const std::string& fileUuid,
289 FileContentType type); 287 FileContentType type);
290 288
291 // This DicomModification object is intended to be used as a 289 // This DicomModification object is intended to be used as a
613 { 611 {
614 return findStorageAccessMode_; 612 return findStorageAccessMode_;
615 } 613 }
616 614
617 int64_t GetServerUpTime() const; 615 int64_t GetServerUpTime() const;
616
617 void PublishCacheMetrics();
618 }; 618 };
619 } 619 }