https://signoz.io logo
#support
Title
# support
s

Smit Shah

11/18/2022, 3:20 PM
Hi, I'm first time setting up Signoz with the .net framework web app. I instrumentalized the app in my local environment, Signoz is running on a different server, and I have these 3 ports open (3301, 4317, and 4318) but when I run the app, navigate through different pages, and go to It won't show any new service that I configured from the .net application.
Copy code
_tracerProvider = Sdk.CreateTracerProviderBuilder()
             .AddConsoleExporter()
             .AddAspNetInstrumentation()
             .SetResourceBuilder(ResourceBuilder.CreateDefault()
                 .AddService(ConfigurationManager.AppSettings["TelemetryService"])
                 .AddTelemetrySdk()
             )
             .AddOtlpExporter(options =>
             {
                 options.Endpoint = new Uri("http://<IPAddress>:4317"); // Signoz Endpoint
             })
             .Build();
I've tried
.AddConsoleExporter()
but I don't know how to access the console to see if data is being logged or not...
p

Pranay

11/18/2022, 3:42 PM
@Smit Shah have you tried the troubleshooting tool? If not, can you try running it - and let me know what output you see
s

Smit Shah

11/18/2022, 3:46 PM
@Pranay My Local application is hosted on Windows. do I have to install a troubleshooting tool locally? or will it be on the server where Signoz is hosted?
It looks like all containers are running properly.
p

Pranay

11/18/2022, 3:49 PM
you have to run this where the application is - though I am not sure if our troubleshooting tool runs in windows. Is your server also installed in Windows? We don't have support for installing SigNoz in windows currently
s

Smit Shah

11/18/2022, 3:53 PM
We have a separate Server (VM) running on Ubuntu Linux. Signoz is hosted on that server. Since those 3 TCP ports are open, I can access it from my local as well...
yes, the troubleshooting tool is not supported for the windows platform...
p

Pranay

11/18/2022, 3:58 PM
Just to test your application - can you try running it in a Ubuntu and try sending data to SigNoz installation?
s

Smit Shah

11/18/2022, 4:04 PM
sure, I'll try that but It'll take a while to set up the project on ubuntu... meanwhile, is there anything else I can do to troubleshoot?
p

Pranay

11/18/2022, 4:05 PM
I think checking with console exporter to see if traces are being emitted correctly would be the next best step
s

Smit Shah

11/18/2022, 4:10 PM
I couldn't find access to the console as well... I'm using VisualStudio 2019 [asp .net framework 4.6 web api project]
s

Srikanth Chekuri

11/18/2022, 8:23 PM
I’ve tried
.AddConsoleExporter()
but I don’t know how to access the console to see if data is being logged or not
This is just your
stdout/stderr
. You should see traces on your terminal.
s

Siva Kumar reddy K

12/02/2022, 6:40 PM
Hello @Pranay Same issue for me aswell. I have tested using troubleshoot tool. But I am not able to see the service in SigNoz Dashboard. Can someone suggest me where I have committed mistake.
2 Views