Questions tagged [diagnostics]
503 questions
0
votes
1 answer
ios7: is it possible to email ALL the crash logs from a device?
OS: iOS-7
I'd like to automatically retrieve all the logs under "General->About->Diagnostics & Usage->Diagnostics & Usage Data" for administration purposes.
I know that you can use frameworks like PLCrashReporter or tools like crashlytics or…

Volrath
- 1
0
votes
0 answers
Kill a process before it even gets into memory
I'm using this code to detect if a process is detected or not. I use kill() to get rid of it. I originally want to suspend it and then do some processing with it which will decide whether to allow the process to run or not but apparently I'm unable…

Saifur Rahman Mohsin
- 929
- 1
- 11
- 37
0
votes
1 answer
Sql performance analysis after migration
I migrate many Oracle DBs to new virtual machines on ESX environment (exactly the same system, DB version etc). My concern is disk IO performance as there is different storage used. I need to perform sql load check before the migration and after to…

Przemek Piechota
- 1,513
- 2
- 12
- 19
0
votes
2 answers
Is it possible to run a software program (for example autocad) with C# without exact file path?
I have the following code to run AutoCAD software :
string path = @"C:\Program Files\Autodesk\AutoCAD 2012 - English\acad.exe";
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = path;
p.Start();
But with this…

Mostafa
- 91
- 2
- 12
0
votes
1 answer
CRM 2011 find out which batch process last changed a record
I have inherited a poorly documnted CRM 2011 instance, lets call it 'haystack', that has literally 100s of batch processes and workflows running on it under the same user account (IT_Job). One of them, lets call it 'needle', has a problem.
I know…

Peter
- 7,792
- 9
- 63
- 94
0
votes
4 answers
GetProcessId from all processes with "notepad"
So what I'm trying to do is to GetProcessId from all processes with name "notepad" for example.
Then do a foreach statement for all Ids found.
Int32 ProcID = GetProcessId(injecttext.Text);
Not sure if enough info to help is provided.
thanks in…

Ezzy
- 1,423
- 2
- 15
- 32
0
votes
2 answers
How do I cause Azure move my instance if I decide the VM is faulty?
Suppose I have the following situation. One of my Azure role instances happens to be started on a VM that runs inside a faulty server but Azure wiring processes don't see any problems. I somehow deduce this fact - for example I see an "impossible"…

sharptooth
- 167,383
- 100
- 513
- 979
0
votes
1 answer
Powershell status information
What is the prescribed method for display status or progress information to a user from a Powershell script? For example, "Connecting to database..." Normally I'd print to STDERR.
Powershell has a Write-Progress cmdlet, but that's for a progress…

Justin R.
- 23,435
- 23
- 108
- 157
0
votes
1 answer
What is the default value for logLevel?
I'm using System.Diagnostics on my Azure instances. I have some settings on my webconfig:
…

Jordi
- 2,789
- 1
- 20
- 35
0
votes
3 answers
Good tools for diagnosing Smartphone problems
So with the great proliferation of mobile OS's out there, troubleshooting problems on a single users phone is a really tricky issue these days. Does anyone know of any good diagnostic tools that will collect OS level, installed apps / version info…

Jdub
- 3
- 1
0
votes
1 answer
Start a multiple process in code and distinct them at their commandline arguments
I am running a service program which is started multiple times with different configuration files passed on commandline.
The program is started by a control program which is running as windows service. This service should be able to monitor and…

mabunixda
- 105
- 7
0
votes
2 answers
Azure Diagnostics is looking for StorageClient 1.7.0.0, but I'm using StorageClient 1.7.1.0
I'm using the Microsoft.WindowsAzure.StorageClient version 1.7.1.0 available at: https://github.com/WindowsAzure/azure-sdk-for-net/tree/sdk_1.7.1. My project compiles just fine, but when I run it I get the following error:
Could not create…

ProfNimrod
- 4,142
- 2
- 35
- 54
0
votes
2 answers
What is a good way to set about diagnosing ASP.NET connection issues?
Whilst on the surface this question looks like it should be on serverfault.com I have a reason for posting here first.
I developed an ASP.NET 2.0 web application. Just recently with heavier usage there have been errors whilst (Cannot connect to…

Phil Hannent
- 12,047
- 17
- 71
- 118
0
votes
2 answers
Android diagnostic tool for applications
I'm looking for a reliable tool for diagnosing Android apps. I want to get the data of Battery usage and CPU usage. I would prefer to get it in real-time, like those of the built-in Developer Tools, but getting the data after few minutes of using…

Yair Barak
- 1
- 3
0
votes
1 answer
Where does AzureLocalStorageTraceListener live?
I'm trying to implement tracing in my webservice, but I'm getting the error:
Couldn't find type for class
Host.AzureLocalStorageTraceListener, MyProject.Host.
I've got a webservice which is hosted in azure but which doesn't follow the usual…

rozza
- 927
- 2
- 11
- 24