|
|
@ -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()) |
|
|
|