Raised This Month: $12 Target: $400
 3% 

Accelerator - Crash Reporting That Doesn't Suck


Post New Thread Reply   
 
Thread Tools Display Modes
phoenix0001
Senior Member
Join Date: Apr 2010
Location: China
Old 04-11-2017 , 11:40   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #161

Quote:
Originally Posted by asherkin View Post
The MinidumpAccount setting associates crashes with your Steam ID, allowing you to see full details regarding the crash when logged into crash.limetech.org. You do not enter your Steam ID in the text box on crash.limetech.org, that is for navigating directly to a crash report when you have a Crash ID (which looks like AAAA-AAAA-AAAA), login to view all crash reports associated with your Steam ID.
mmsource-sourcemod Previous version is too old,Now updated to the latest version

Normal work
__________________
I like this BBS sharing of spirit

I come from China, my English is poor
phoenix0001 is offline
8guawong
AlliedModders Donor
Join Date: Dec 2013
Location: BlackMarke7
Old 04-22-2017 , 14:33   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #162

is it possible to get a native to know if server restarted due to crash or not?
8guawong is offline
Dagothur
Member
Join Date: Dec 2014
Old 04-27-2017 , 19:39   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #163

If anyone wants to crash their server to test whether or not accelerator is going to work you can use this plugin. Just make sure you remove it once you're done...
Attached Files
File Type: sp Get Plugin or Get Source (crashtest.sp - 454 views - 158 Bytes)
Dagothur is offline
El Curioso
Member
Join Date: Nov 2013
Location: Spain
Old 05-08-2017 , 09:34   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #164

Quote:
Originally Posted by asherkin View Post
GetSpew doesn't exist in CS:GO, which is why that's a warning in the normal log files not an error in the error log. I have said this far, far too many times now.
Sry for bringing this up again. As I understand, this is NOT SUPPOSED to be in the errors_xxxx.log. But unfortunately it IS fact:
Spoiler


Since the server (CS:GO) runs stable and these are the only notification-warnings in this file, I can live with it. Just thought you guys should know of this (maybe unintentional warning in the errors-log). Btw: I love this program, keep up the good work!
El Curioso is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 05-08-2017 , 09:58   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #165

Unfortunately it is just because of how the gamedata works on Linux, on Windows it is correctly in the normal logs. One day...
__________________
asherkin is offline
RC87
Member
Join Date: Apr 2017
Old 05-13-2017 , 06:28   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #166

Hello,

I added this to our CSGO Linux server, added my steamID and when I go to view the dumps it says "An error occurred while processing this crash." any advice please?

Thanks
RC87 is offline
kadet.89
Veteran Member
Join Date: Nov 2012
Location: Serbia
Old 05-13-2017 , 10:56   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #167

Trying to build the extension, get these errors:

Quote:
-I /home/d/SDK_Accelerator/sourcemod-1.5/public/extensions -I /home/d/SDK_Accelerator/sourcemod-1.5/public/sourcepawn -I /home/d/SDK_Accelerator/accelerator/breakpad/src/src -H -c /home/d/SDK_Accelerator/accelerator/extension/extension.cpp -o extension_extension.o
Job failed: 'ascii' codec can't decode byte 0xe2 in position 16218: ordinal not in range(12
Traceback (most recent call last):
File "/home/d/.local/lib/python2.7/site-packages/ambuild/job.py", line 21, in run
self.task.run(self.master, self.job)
File "/home/d/.local/lib/python2.7/site-packages/ambuild/cpp.py", line 299, in run
p = command.RunDirectCommand(runner, self.argv)
File "/home/d/.local/lib/python2.7/site-packages/ambuild/command.py", line 85, in RunDirectCommand
p.stderrText = stderr.decode()
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 16218: ordinal not in range(12

Steps:
Quote:
- git clone https://github.com/asherkin/accelerator.git accelerator
- git clone --depth=1 --branch=1.7-dev https://github.com/alliedmodders/sourcemod sourcemod-1.5
- git clone --depth=1 --branch=master https://github.com/alliedmodders/ambuild
- cd ambuild && python setup.py install --user
- cd ../accelerator
- ./breakpad.sh && export PATH=$PATH:$PWD/breakpad/build/src/tools/linux/dump_syms/
- mkdir build && cd build
- python ../configure.py --enable-optimize
- python ./build.py
I've managed to solve this problem. Just add these lines:
Quote:
import sys
reload(sys)
sys.setdefaultencoding('utf8')
here build/build.py and here configure.py

Though the extension won't compile:
Quote:
... /usr/lib/gcc/i686-linux-gnu/5/include/stddef.h
. /home/d/SDK_Accelerator/accelerator/breakpad/src/src/common/linux/linux_libc_support.h
.. /usr/lib/gcc/i686-linux-gnu/5/include-fixed/limits.h
/home/d/SDK_Accelerator/accelerator/extension/extension.cpp: In member function ‘virtual bool Accelerator::SDK_OnLoad(char*, size_t, bool)’:
/home/d/SDK_Accelerator/accelerator/extension/extension.cpp:536:76: error: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Werror=unused-result]
fread(steamInfTemp, sizeof(char), sizeof(steamInfTemp) - 1, steamInfFile);
^
Multiple include guards may be useful for:
/usr/include/c++/5/cctype
/usr/include/c++/5/cerrno
/usr/include/c++/5/clocale
....
/usr/include/limits.h
/usr/include/linux/errno.h
/usr/lib/gcc/i686-linux-gnu/5/include-fixed/syslimits.h
cc1plus: all warnings being treated as errors

Job failed: terminated with non-zero return code 1
Traceback (most recent call last):
File "/home/d/.local/lib/python2.7/site-packages/ambuild/job.py", line 21, in run
self.task.run(self.master, self.job)
File "/home/d/.local/lib/python2.7/site-packages/ambuild/cpp.py", line 303, in run
raise Exception('terminated with non-zero return code {0}'.format(p.returncode))
Exception: terminated with non-zero return code 1

Last edited by kadet.89; 05-21-2017 at 07:22.
kadet.89 is offline
Send a message via Skype™ to kadet.89
Andrey309a
Junior Member
Join Date: Feb 2017
Old 05-25-2017 , 11:57   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #168

I get all this logs

Uploaded crash dump: Crash ID: NH5R-HZCH-WQOV
Uploaded crash dump: Crash ID: FZOE-FD4E-AN2K
Uploaded crash dump: Crash ID: WNVP-RK4J-PUTW
Uploaded crash dump: Crash ID: 5XKN-EUTW-AW2K
Uploaded crash dump: Crash ID: FXDA-IPY7-Y4WS
Uploaded crash dump: Crash ID: BA33-B2YP-R3IQ
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: PDQM-K4MJ-T2N4
Uploaded crash dump: Crash ID: DOCH-7LB7-KXID
Uploaded crash dump: Crash ID: 2UD3-PA4M-MYN5
Uploaded crash dump: Crash ID: AEYN-5AIY-6DPQ
Uploaded crash dump: Crash ID: SP45-72YV-J243
Uploaded crash dump: Crash ID: DOQN-VYHA-ZSF2
Uploaded crash dump: Crash ID: KZGQ-22U6-DDNA
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: 3LBX-U4LB-SUTL
Uploaded crash dump: Crash ID: 6F2E-LU7G-V542
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: IDIH-3RBN-7W47
Uploaded crash dump: Crash ID: Y4AL-7DX2-ECIJ
Uploaded crash dump: Crash ID: KMYR-TNU4-IUXL
Uploaded crash dump: Crash ID: XTYX-IR3T-JARL
Uploaded crash dump: Crash ID: JECB-JF3J-UNIJ
Uploaded crash dump: Crash ID: ZARP-RSGP-FCHP
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: YN5N-CI2P-NYWD
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: DGKZ-MMQU-7XYR
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: E524-3ETG-QXCA
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: XJAB-ETKN-4BL3
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: OESC-MTAL-LFHK
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: 245L-EHGQ-DSXM
Uploaded crash dump: Crash ID: VAE7-L7HD-2V3F
Uploaded crash dump: Crash ID: 2SNA-YT2E-BZSL
Uploaded crash dump: Crash ID: 7QSL-S267-RKTW
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: HENJ-SFSG-RQ5N
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Crash ID: PPVQ-A44H-AGTE
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Uploaded crash dump: Rate limit exceeded.
Andrey309a is offline
darkboy245
Senior Member
Join Date: Feb 2014
Old 08-08-2017 , 16:06   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #169

Installed everything as explained yet when I crash my server I do not get any report/log file.
Using Windows.
Edit: NVM it works.

Last edited by darkboy245; 08-08-2017 at 17:12.
darkboy245 is offline
SHAREN
Senior Member
Join Date: Dec 2011
Old 08-15-2017 , 14:48   Re: Accelerator - Crash Reporting That Doesn't Suck
Reply With Quote #170

I suggest doing so that users can leave comments under the crash, this will help to find the problem together, for example, someone can write a solution to the problem.

This applies to the same type of crash type
48 reports share this crash signature. (20 owners / 33 ips)
SHAREN is offline
Send a message via Skype™ to SHAREN
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 11:06.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode