Uses of Class
com.nmontytskyi.monitoring.server.entity.AlertEventEntity
Packages that use AlertEventEntity
Package
Description
-
Uses of AlertEventEntity in com.nmontytskyi.monitoring.server.alert
Methods in com.nmontytskyi.monitoring.server.alert with parameters of type AlertEventEntityModifier and TypeMethodDescriptionvoidAlertNotificationService.sendAlert(AlertEventEntity event, AlertRuleEntity rule, RegisteredServiceEntity service) -
Uses of AlertEventEntity in com.nmontytskyi.monitoring.server.repository
Subinterfaces with type arguments of type AlertEventEntity in com.nmontytskyi.monitoring.server.repositoryMethods in com.nmontytskyi.monitoring.server.repository that return types with arguments of type AlertEventEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AlertEventEntity> AlertEventRepository.findAllByFiredAtBetweenOrderByFiredAtDesc(LocalDateTime from, LocalDateTime to, org.springframework.data.domain.Pageable pageable) Returns a paginated list of all alert events within a time range, newest first.org.springframework.data.domain.Page<AlertEventEntity> AlertEventRepository.findAllByServiceIdAndFiredAtBetweenOrderByFiredAtDesc(Long serviceId, LocalDateTime from, LocalDateTime to, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<AlertEventEntity> AlertEventRepository.findAllByServiceIdOrderByFiredAtDesc(Long serviceId, org.springframework.data.domain.Pageable pageable) Returns a paginated list of all alert events for a service, newest first.AlertEventRepository.findTopByRuleIdOrderByFiredAtDesc(Long ruleId) Finds the most recent event fired for a specific alert rule.