UT3Stats 0.98 Notes

General forum for discussions regarding UTStatsDB
Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

UT3Stats 0.98 Notes

Postby Panther » Thu Oct 02, 2008 4:52 am

I've moved the log parsing function to OLSendLog, so if you're uploading logs to your web site via UT3Stats, disable the log parsing option in UT3Stats. You will need the current version of UTStatsDB from SVN. Please note that UT3Stats is still in testing, as is the SVN version of UTStatsDB. You can expect new releases soon.

BigDeal
Posts: 67
Joined: Fri Dec 14, 2007 6:41 pm

Re: UT3Stats 0.98 Notes

Postby BigDeal » Mon Oct 06, 2008 5:57 am

I did that, but olsendlog do not parse the logs when log parsing is disabled. I have run the latest utstatsdb from svn.

BigDeal
Posts: 67
Joined: Fri Dec 14, 2007 6:41 pm

Re: UT3Stats 0.98 Notes

Postby BigDeal » Wed Oct 08, 2008 3:02 pm

There must be something wrong with "UT3Stats.u". When i start my dedi server, ut3.exe use something about 250 MB from memory, after 1 day it uses allready 600MB and after 2 days ut3.exe use over 1200mb from Memory. To be sure that UT3Stats is the problem, i disabled UT3Stats on Server and all is normal, after 1 day he stays at 270MB memory. So i dont know why UT3 needs more and more memory how longer it runs with UT3Stats.

omihaz
Posts: 65
Joined: Thu Dec 20, 2007 10:19 am

Re: UT3Stats 0.98 Notes

Postby omihaz » Wed Oct 08, 2008 3:44 pm

This is names - memory leaks. This is epic or UT3Stat bug? :shock:

My linux server have this problem. Memory used for 1 duel/tdm server 840MB (!)

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Wed Oct 08, 2008 3:50 pm

There must be something wrong with "UT3Stats.u". When i start my dedi server, ut3.exe use something about 250 MB from memory, after 1 day it uses allready 600MB and after 2 days ut3.exe use over 1200mb from Memory. To be sure that UT3Stats is the problem, i disabled UT3Stats on Server and all is normal, after 1 day he stays at 270MB memory. So i dont know why UT3 needs more and more memory how longer it runs with UT3Stats.
It sounds like the UT3Stats portions are not unloading with each new match. I'm not certain how to remedy that.

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Wed Oct 08, 2008 4:11 pm

It may just be the StatLog and BroadcastHandler not getting shutdown. I've fixed this for the next release.

BigDeal
Posts: 67
Joined: Fri Dec 14, 2007 6:41 pm

Re: UT3Stats 0.98 Notes

Postby BigDeal » Wed Oct 08, 2008 4:22 pm

Is this allready fixed in V0.99?

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Wed Oct 08, 2008 4:53 pm

No, but I'll do some testing in the meantime.

omihaz
Posts: 65
Joined: Thu Dec 20, 2007 10:19 am

UT3Stats 0.99 Bugs

Postby omihaz » Fri Oct 10, 2008 4:48 am

I install UT3Stats 0.99 and update utcomp to beta 4 version.
Latest 3 logs don't work, incomplete or incorrect.
This logs in attachment.

For example: incomplete log - wrong, bacause map change!
Attachments
Stats-20081010.003123.log
(23.53 KiB) Downloaded 235 times
Stats-20081009.233815.log
(11.5 KiB) Downloaded 230 times
Stats-20081009.232440.log
(14.5 KiB) Downloaded 230 times

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.99 Bugs

Postby Panther » Fri Oct 10, 2008 7:53 am

I install UT3Stats 0.99 and update utcomp to beta 4 version.
Latest 3 logs don't work, incomplete or incorrect.
According to these logs the first match didn't have any end game tag and the second two ended on a mapchange (you didn't specify how the matches actually ended), however, none of them have a start game tag. UT3Stats uses MatchIsInProgress to determine if the match has started and CheckEndGame to determine if a match has ended.

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Fri Oct 10, 2008 7:58 am

I take that back - the first map, which lacks an end, does have a start game tag. Perhaps you can explain the difference in these.

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Fri Oct 10, 2008 8:56 am

I just tested UT3Comp beta 4 in a couple of matches and the only issues I had are:
No chat is logged. This suggests that UT3Comp has its own Broadcast handlers and is not playing nice with it.
UT3Stats doesn't see UT3Comp or other mutators (none reported in the server info line).

omihaz
Posts: 65
Joined: Thu Dec 20, 2007 10:19 am

Re: UT3Stats 0.98 Notes

Postby omihaz » Fri Oct 10, 2008 9:37 am

I get mutator list this method:

Code: Select all

tmp = ""; while (mut != none) { if (len(tmp) > 0) tmp $= ", "; tmp $= mut.class.getPackageName()$"."$mut.class; mut = mut.NextMutator; }
It works with others mutators alltime!
For other issues I don't know :(

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Fri Oct 10, 2008 10:21 am

That looks familiar - you copied that from WebAdmin. Although, you left out "mut = WorldInfo.Game.BaseMutator" before the while loop (kind of important). Anyway, that's the same method that UT3Stats uses, but no mutators are listed when UT3Comp is loaded.

BigDeal
Posts: 67
Joined: Fri Dec 14, 2007 6:41 pm

Re: UT3Stats 0.98 Notes

Postby BigDeal » Fri Oct 10, 2008 12:52 pm

But in the serverquery from UTstatsdb it shows up

Panther
Site Admin
Posts: 505
Joined: Sat Dec 08, 2007 12:51 am
Contact:

Re: UT3Stats 0.98 Notes

Postby Panther » Fri Oct 10, 2008 1:32 pm

That's completely different.

omihaz
Posts: 65
Joined: Thu Dec 20, 2007 10:19 am

Re: UT3Stats 0.98 Notes

Postby omihaz » Sat Oct 11, 2008 9:43 am

WebAdmin have mutator list too.


Return to “UTStatsDB”