Questions tagged [trace]
65 questions
1
vote
0 answers
Equivalent of SQL Server trace for Oracle 10g?
I've got a bad code duplication problem where we cannot tell which versions of packages/procedures are being used. i.e. I have different packages with procedures of the same name and I need to be sure which packages are not actually being…

Cade Roux
- 375
- 2
- 5
- 18
1
vote
2 answers
How should I capture Linux kernel panic stack traces?
What's current best practice to capture full kernel stack traces on a Linux system (RHEL 5.x, kernel 2.6.18) that occasionally panics in a device driver?
I'm used to the "old" SunOS way of doing things - crash dumps get written to swap, and on…

Alnitak
- 21,191
- 3
- 52
- 82
1
vote
2 answers
SQL Profiler Trace logs
Suppose that I try to insert some data into a table and if the insertion fails due to some CDBException, will that be logged in to the SQL Profiler logs?
I am using SQL Server MSDE 2000

bdhar
- 195
- 5
1
vote
1 answer
How to debug what Windows Admin Center is doing?
I'm having issues with Windows Admin Center and the user interface doesn't really help troubleshooting them; thus I'd like to have a closer look at what WAC is actually doing with the servers it manages.
I know WAC uses WinRM and Remote PowerShell…

Massimo
- 70,200
- 57
- 200
- 323
1
vote
0 answers
How to detect an executable/file calling out a domain
I'm trying to trace an application/file that is calling out a domain(URL). I ran Process Monitor & Wireshark to find SVCHost.exe is responsible.
However, I'm unable to locate which file requested svchost.exe to connect over UDP.
SVC command line…

Loki
- 11
- 1
0
votes
0 answers
Can you a get bash script traceback from another language?
If I have a script, lets call it "scr.sh"
And I call it from another language e.g Python
Is there a way to get the traceback of the functions and files back to the Python language.
How I think it could possibly work:
the scr.sh
echo…

Kostadin Krushkov
- 145
- 1
- 3
- 8
0
votes
0 answers
Analysing latency for a single request
I have the following (very simplified) network :
(ingress) -> DMZ (nginx) -> HA Proxy -> Reverse proxy (nginx) -> Application Server (tomcat)
All the layers send information to Prometheus and then we use Grafana to monitor them.
We had some latency…

ehi84636
- 1
0
votes
1 answer
angry ip scanner reports differnet hostname and computer name on a domain?
did a quick sweep of a network this morning and i am getting different hostname to computername in the list.
this is a domain with a DC in there. it has active directory integrated dns.
if you use nslookup to find names there are no issues, but if…

dasko
- 1,244
- 1
- 22
- 30
0
votes
0 answers
Web Management Service fails to start automatically
After a reboot Web Management Service fails to start. I see the following error in Event Log
Unable to bind to the underlying transport for 192.168.0.101:8172. The IP Listen-Only list may contain a reference to an interface which may not exist on…

Aleksei Poliakov
- 101
- 2
0
votes
1 answer
Server not pinging even after setting gateway and ip
I am configuring an Icinga monitoring server. I am entirely new to Linux, so configuring after googling each and every bit. I have configured ip address, subnet mask and default gateway correctly. "ifconfig" and "route -n" shows me the correct one…

Vysakh
- 195
- 1
- 7
- 15
0
votes
1 answer
SQL Server Trace keeps outputting files
A consultant has come and gone to do some audit on our SQL server, and has left a bit of a mess here. The problem is that he did things that we don't know anything about.
In the C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA…

thomasb
- 103
- 6
0
votes
1 answer
Application traffic classification with tcpdump
I have a trace file from my network. I would like to identify the top 10 applications used by us . Does tcpdump provide any application based filtering options ? Any details regarding this would be very helpful. Thanks.

DaTaBomB
- 133
- 7
0
votes
2 answers
how to see queries to oracle database
the database in question is Oracle 10g Enterprise software
the tools available are Toad, SQL Developer, and other built in oracle tools
I have an application server within the network, alongside the database server within the network. I also have a…

CQM
- 117
- 8
0
votes
1 answer
Interfacing strace with Process Name instead of PID
How do I implement a wrapper script pstrace in bash that changees the interface of
[sudo] strace -c -p [PID]
to
[sudo] pstrace -c -p [PROCESS-NAME]
similar to how
killall [PROCESS-NAME]
is used. With completion and everything.

Nordlöw
- 165
- 5
0
votes
3 answers
How to get public DNS server addresses?
I have a need to be able to identify which public DNS servers machines in internal networks are using for queries. To clarify, I do not want IPs or names of internal DNS servers or network devices. I need a scriptable way to identify what public…

Jason
- 3
- 2