Browse Source

collect statistic v1 fix2

master
gsd 1 year ago
parent
commit
e51f392554
  1. 1
      src/main/java/app/services/db/CollectStatisticService.java

1
src/main/java/app/services/db/CollectStatisticService.java

@ -26,6 +26,7 @@ public class CollectStatisticService extends BaseUpdater {
@Transactional("RwTransactionManager")
public void add(CollectableStatistic collectableStatistic) {
if (collectableStatistic.getClient_ip() != null && collectableStatistic.getClient_ip().equals("192.168.3.3") && collectableStatistic.getPath().equals("/api/stats")) return;
entityManager.createNativeQuery("INSERT INTO `web_statistic` (`steam64`, `client_ip`, `method`, `path`, `query`, `useragent`) VALUES (?1, ?2, ?3, ?4, ?5, ?6)")
.setParameter(1, collectableStatistic.getSteam64())
.setParameter(2, collectableStatistic.getClient_ip())

Loading…
Cancel
Save