PUBLIC LOGS PART 2: GAME/ATTACK LOGS

General SS13 Chat
Post Reply
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #100249

So a few days ago, I setup public logs for runtime logs, and posted in the coder forum with info on how to access them.

Today, I bring the full thing, public logs!

Filtered/censored info:
  • Any line that doesn't start with a timestamp (because i'm too lazy to make the parser work with them. this is mainly debug lines/info about the game banners asking for the server status, and tcom script uploads) These are filed under "misc" when censored.
  • Any admin communication (asay/apm/ahelp)
  • Watchlist and notes adding/editing/removing
  • Ban reasons
  • Anything that matches the format of 0-255.0-255.0-255.1-255 (ips)
  • cids and ips from connection log lines.
  • Any line that starts with ADMIN: and is followed by <a (because these are bugged and harder to parse, newer logs don't have this issue, but the older ones do.)
  • Log entries about invalid connection data (these can contain cid/ip info in a hard to predict way)
Server time zone is ESTGMT.
Log files for the current day are excluded, and you have to wait until they roll over about an hour after the first round to start after midnight EST. Log files are uploaded within 5 minutes of the round ending.

https://tgstation13.org/parsed-logs/

You may request json based directory indexes using "?index_format=json".

New rules regarding the use of public logs in ban appeals, ban requests (if ever re-opened) and admin complaints:
  • The content of line must not be modified in any way.
    • This does not apply to adding context (as long as its clear that its added and not part of the original log)
    • Likewise, you are allowed to add formatting or emphasis as long as it does not appear deceptive
  • Any omissions of in between lines must be clearly marked in-line to the logs along with a brief description giving a rough amount of the lines removed, what they contained, and why they were removed
    • -snip-(500 lines of the clown slipping the hos in the other room removed for being irrelevant)
  • You must link to the log file you got the logs from to make it easier to validate the context
  • Air on the side of good faith, Its better to include too many context lines then not enough lines context lines
  • Expect onlookers to assume bad faith. If you omit details that are later deemed to be important people will assume you did it intentionally. This means doing due diligence when reviewing the logs for related or relevant bits.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
Steelpoint
Github User
Joined: Thu Apr 17, 2014 6:37 pm
Byond Username: Steelpoint
Github Username: Steelpoint
Location: The Armoury

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Steelpoint » #100256

Very cool, I'll be interested in seeing what this does for OOC conduct and whatnot.
Image
User avatar
Falamazeer
Joined: Sat Oct 18, 2014 12:05 am
Byond Username: Wootanon

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Falamazeer » #100257

Very cool, Sorry if this isn't the place for it, but I dunno how bad the storage on such a thing is and might become moving forward, But you might save space by additionally filtering polly action, monkey actions, etc etc examples here
Spoiler:
EMOTE: Pete/ : <B>Pete</B> brays
SAY: mouse/ : Squeek!
Pugley IV/ : <B>Pugley IV</B> chases its tail.
Featherbottom/ : <B>Featherbottom</B> flaps its wings viciously
Betsy/ : Moo?
EMOTE: Poly/ : <B>Poly</B> looks in the Power-ON cartridge's direction and takes flight.
monkey (495)/ : <B>The monkey (495)</B> jumps!
EMOTE: mouse/ : <B>The mouse</B> shakes
EMOTE: monkey (740)/ : <B>The monkey (740)</B> jumps!
SAY: mouse/ : Squeek?
EMOTE: Pun Pun/ : <B>Pun Pun</B> jumps
EMOTE: Ian/ : <B>Ian</B> dances around.
EMOTE: Ian/ : <B>Ian</B> chases its tail!
EMOTE: Runtime/ : <B>Runtime</B> shivers
Ham Sammich, beating a dead horse since 2010.
NikNakFlak wrote:....It's true...that is why I removed my forum avatar
lumipharon wrote:ass parasite was pretty meh when I tried it.
callanrockslol
Joined: Thu Apr 24, 2014 1:47 pm
Byond Username: Callanrockslol

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by callanrockslol » #100672

I'm guessing it would be a few hundred megabytes a month at most, which is probably less than 10 gig a year. Space is cheap and if /tg/station13 is still around when it becomes a problem it probably wouldn't be too much to raise the patreon by however much.
User avatar
Stickymayhem
Joined: Mon Apr 28, 2014 6:13 pm
Byond Username: Stickymayhem

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Stickymayhem » #100685

It would make shit easier to read though.
Image
Image
Boris wrote:Sticky is a jackass who has worms where his brain should be, but he also gets exactly what SS13 should be
Super Aggro Crag wrote: Wed Oct 13, 2021 6:17 pm Dont engage with sticky he's a subhuman
Malkevin

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Malkevin » #102098

Regular expressions are pretty interesting things.

Whilst I was searching through the logs to see how often I've played lately (to see if I've been more active than HG), I saw someone talking about me in OOC.
Having notepad++ installed and knowing it was a really powerful tool, that I had zero fucking clue at how to use, I decided to spend the last hour or so dicking through google trying to arse my way around RegEx to see if I could find if other people talk about me when I'm not there.

Eventually I came up with this RegEx:

Code: Select all

^.*?OOC:.*?[^/][mM]alkevin[^/].*?
Which searches for log lines of OOC chats, and then filters them to find lines that contain people talking about me but weren't started by me.

If you want to know what the syntax means, well... you can look it up your fucking selves.
If you just want to know what people are saying about you when you're not there, feel free to modify this for your own purposes.



Turns out people do talk about me.
Mostly sadbutt still blaming his own failures on me; bgobandit's abandonment issues; and people that take space law far far too seriously
User avatar
Braincake
Joined: Fri Apr 18, 2014 2:48 pm
Byond Username: Braincake

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Braincake » #102102

You can replace those '.*?' with just '.*', remove that [Mm] and just check the case insensitive checkbox, and get rid of the ^ anchor since I'm pretty sure Notepad++'s flavor doesn't match . with [\r\n] anyway. But now I'm just nitpicking.

I don't think I'll be using the logs much, unless it's for a FNR thread or something. Way too much second-hand embarrasment.
Malkevin

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Malkevin » #102105

The ^carot is needed, otherwise the search result returns the entire document instead of the line.
User avatar
Vekter
In-Game Admin
Joined: Thu Apr 17, 2014 10:25 pm
Byond Username: Vekter
Location: Fucking around with the engine.

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Vekter » #102130

Caret*
AliasTakuto wrote: Thu Jan 04, 2024 1:11 pm As for the ear replacing stuff, you can ask Anne but I don't think this is what I was banned for. If I was all I can say is "Sorry for being hilarious"...
Omega_DarkPotato wrote:This sucks, dude.
Spoiler:
Reply PM from-REDACTED/(REDACTED): i tried to remove the bruises by changing her gender

PM: Bluespace->Delaron: Nobody wants a mime's asscheeks farting on their brig windows.

PM: REDACTED->HotelBravoLima: Oh come on, knowing that these are hostile aliens is metagaming

[17:43] <Aranclanos> any other question ping me again
[17:43] <Vekter> Aranclanos for nicest coder 2015
[17:44] <Aranclanos> fuck you
User avatar
bandit
Joined: Thu Apr 17, 2014 7:35 pm
Byond Username: Bgobandit

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by bandit » #133491

any particular reason why these are kill
"I don't see any difference between ERP and rape." -- erro

admin feedback pls
User avatar
Jordie0608
Site Admin
Joined: Tue Apr 15, 2014 1:33 pm
Byond Username: Jordie0608
Github Username: Jordie0608
Location: Spiderland, Australia

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Jordie0608 » #133573

There's a few bugs with the log parsing currently, it'll be back.
Forum Admin
Send me a PM if you have any issues, concerns or praise of fishfood to express about the forums.
User avatar
DrPillzRedux
Rarely plays
Joined: Sun Jun 29, 2014 9:45 am
Byond Username: DrPillzRedux

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by DrPillzRedux » #143449

It's broken again.
thot_slayer wrote:don't be a degenerate online if you don't want people to treat you like a degenerate morty
bandit wrote:what is this

a correct post by pillz
User avatar
srifenbyxp
Joined: Tue May 20, 2014 4:49 am
Byond Username: Srifenbyxp
Location: UK

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by srifenbyxp » #145062

No 2016 logs?
To be robust is not about combat prowess, it is the state of readiness for the situation at hand.
User avatar
InsaneHyena
Joined: Thu Aug 27, 2015 9:13 pm
Byond Username: InsaneHyena
Github Username: InsaneHyena
Location: Russia

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by InsaneHyena » #148426

Hello, are logs ever returning?
Bring back papercult.

Image
User avatar
Jordie0608
Site Admin
Joined: Tue Apr 15, 2014 1:33 pm
Byond Username: Jordie0608
Github Username: Jordie0608
Location: Spiderland, Australia

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Jordie0608 » #148745

IIRC They're disabled due to a byond issue, I'll try and find where MSO mentions it.
Forum Admin
Send me a PM if you have any issues, concerns or praise of fishfood to express about the forums.
Zilenan91
Confined to the shed
Joined: Sun Jul 19, 2015 8:09 pm
Byond Username: Zilenan91

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Zilenan91 » #148746

I think someone said something about a security breach with them? Or was that wrong.
Spoiler:
Zilenan91 wrote:
Just replace both their arms with chainsaws.

HAVE FUN ESCAPING NOW WITH NO ARMS
neersighted
Joined: Sat Nov 28, 2015 6:23 am
Byond Username: Neersighted
Github Username: neersighted

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by neersighted » #152085

They are currently disabled due to a security issue. It is not a BYOND bug, merely unfortunate behavior. Regular and attack logs may return, but runtime logs are permanently disabled.
Malkevin

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Malkevin » #159287

Are logs still disabled?
I noticed theres some logs past Jan but none since the end of feb - so are they updating or not?
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #159321

oh ya, i never did re-enable auto update on the web server.

one second, let me fix that.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
yackemflam
Joined: Mon Jan 25, 2016 2:03 am
Byond Username: Yackemflam

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by yackemflam » #164543

Public logs are still down for about 3 weeks now, do you have an ETA on when it'll be back up?
NSFW:
I will admit I was laughing pretty hard during your skit in the boxing ring. - seagrimr
Spoiler:
Playing on the server isn't something you're entitled to. There's an extremely small level of responsibiliy on your part to play hhundreds of hours of a free game run by fuckheads. - Stickymayhem
A retards guide on how to make a maxcap bomb in toxins.
NSFW:
You`ll need:
1-6 Plasma tanks 1-6 Oxygen tanks
1-6 tank transfer valve
2 Plasma canister
2 Oxygen canister
1 Yellow (empty) canister
Wrench
Toxins lab access
Science testing lab access

Grab a oxygen tank and a plasma tank and bring them to the testing lab.
Super cool the Oxygen and superheat the Plasma.

Clean out the oxygen and plasma tanks with a filter/pump.

Then you wrench and unwrench the plasma and oxygen tanks in toxins. It`s important tha you do it one at a time. Try to get a 85%plasma and 15% oxygen mix.

Once you have a good burn mix, pump the mix into the burn chamber and light it on fire. Wait 10 seconds for it to heat up and pump it into a yellow (empty) canister.

Quickly set the kpa output to 163 kpa and fill the tanks with the burn mix.

Take the oxygen tanks and fill it up with a 613kpa worth of oxygen FIRST then fill the rest with plasma, you should get well over 2000kpa in the end.

With the new atmos system you should wait 5-10 minutes for you tanks to bake.

Take a tank transfer valve, add a oxygen tank and a plasma tank to it. You should have a maxcap bomb. Have fun blowing up the station mining!
User avatar
srifenbyxp
Joined: Tue May 20, 2014 4:49 am
Byond Username: Srifenbyxp
Location: UK

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by srifenbyxp » #169215

Logs need to be updated constantly, how else will I know what dead chat says about me when I release the geese?!
To be robust is not about combat prowess, it is the state of readiness for the situation at hand.
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #175973

Finally got around to fixing and redoing the upload system.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
Digdugxx
Joined: Fri Jul 24, 2015 1:29 am
Byond Username: Digdugxx
Location: Screeing on the floor somewhere

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Digdugxx » #176107

Thanks MSO!
Image
Image
Spoiler:
Image
Image
Image
Image
Image
Image
Image
Image
Image
Image
Image
Qbopper wrote:One of the few posts on the forums to make me genuinely laugh out loud, well done
:]]]
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #228520

Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #228940

Because the end of days scenario where everybody nitpicked over logs to get back at who ever rekt'ed them never even happened, game logs for a round will now go public within 5 minutes of the round ending, rather than waiting for the next day to roll the logs over.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
Saegrimr
Joined: Thu Jul 24, 2014 4:39 pm
Byond Username: Saegrimr

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Saegrimr » #228970

MrStonedOne wrote:Because the end of days scenario where everybody nitpicked over logs to get back at who ever rekt'ed them never even happened, game logs for a round will now go public within 5 minutes of the round ending, rather than waiting for the next day to roll the logs over.
I thought part of that was because the log files all dump by the day and not by round, that's cool though.
tedward1337 wrote:Sae is like the racist grandad who everyone laughs at for being racist, but deep down we all know he's right.
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #261484

New rules regarding the use of public logs in ban appeals, ban requests (if ever re-opened) and admin complaints:
  • The content of line must not be modified in any way.
    • This does not apply to adding context (as long as its clear that its added and not part of the original log)
    • Likewise, you are allowed to add formatting or emphasis as long as it does not appear deceptive
  • Any omissions of in between lines must be clearly marked in-line to the logs along with a brief description giving a rough amount of the lines removed, what they contained, and why they were removed
    • -snip-(500 lines of the clown slipping the hos in the other room removed for being irrelevant)
  • You must link to the log file you got the logs from to make it easier to validate the context
  • Air on the side of good faith, Its better to include too many context lines then not enough lines context lines
  • Expect onlookers to assume bad faith. If you omit details that are later deemed to be important people will assume you did it intentionally. This means doing due diligence when reviewing the logs for related or relevant bits.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
MrStonedOne
Host
Joined: Mon Apr 14, 2014 10:56 pm
Byond Username: MrStonedOne
Github Username: MrStonedOne

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by MrStonedOne » #306550

Public logs have been updated for the new round based system.

To come: archives for days/months and admin interface for getting unfiltered logs.
Forum/Wiki Administrator, Server host, Database King, Master Coder
MrStonedOne on digg(banned), Steam, IRC, Skype Discord. (!vAKvpFcksg)
Image
User avatar
Palladinium
Joined: Fri Mar 09, 2018 12:39 pm
Byond Username: Palladinium
Github Username: Palladinium

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by Palladinium » #440749

I had a PR merged to add Telecomms logs to these into a new file a few weeks back (https://github.com/tgstation/tgstation/pull/39276), as well one on the tgstation13.org repo to add the new file to the zips (https://github.com/tgstation/tgstation13.org/pull/47), but it's not showing up on the public logs even though it's saving fine on my local testing server.

I'm not sure if I forgot to add the file somewhere else or if some config isn't up to date, any ideas?
User avatar
JJRcop
Joined: Wed Apr 23, 2014 1:52 am
Byond Username: JJRcop
Github Username: JJRcop

Re: PUBLIC LOGS PART 2: GAME/ATTACK LOGS

Post by JJRcop » #597742

It seems like photos are trimmed from the public logs. Can they make a return, or are they deleted anyway?
I lurk quite often...
Post Reply

Who is online

Users browsing this forum: Bing [Bot]