Robin
05/24/2023, 10:45 AMZabe Agha
05/25/2023, 4:13 PMAdriaan
05/25/2023, 9:30 PMAdriaan
05/25/2023, 9:32 PMVinay Donthula
05/26/2023, 7:16 AMVishal Kanani
05/29/2023, 2:12 PMDany
05/29/2023, 8:14 PMDany
05/29/2023, 8:14 PMHimanshu Sharma
05/30/2023, 5:55 PMHimanshu Sharma
05/30/2023, 6:04 PMHimanshu Sharma
05/31/2023, 8:25 AMShubham Upreti
05/31/2023, 10:58 AMHimanshu Sharma
05/31/2023, 3:17 PMLloyd Theophilus Osabutey-Anikon
05/31/2023, 7:38 PMGitHub
06/01/2023, 4:33 AMMukesh Kumar Das
06/01/2023, 4:49 PMMukesh Kumar Das
06/01/2023, 4:50 PMMartin Pacheco
06/01/2023, 5:06 PMRomil Shah
06/02/2023, 4:55 AMMichael DeRazon
06/05/2023, 9:41 AMKoushik Maiti
06/05/2023, 10:22 AMshridhar g kanagond
06/06/2023, 4:42 AMconst { diag, DiagConsoleLogger, DiagLogLevel } = require('@opentelemetry/api')
diag.setLogger(new DiagConsoleLogger(), DiagLogLevel.DEBUG);
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const { ConsoleSpanExporter, InMemorySpanExporter, SimpleSpanProcessor } = require('@opentelemetry/sdk-trace-base');
const { NodeTracerProvider } = require("@opentelemetry/sdk-trace-node");
const { WinstonInstrumentation } = require('@opentelemetry/instrumentation-winston');
const memoryExporter = new InMemorySpanExporter();
const provider = new NodeTracerProvider();
provider.register();
const tracer = provider.getTracer('default');
provider.addSpanProcessor(new SimpleSpanProcessor(new ConsoleSpanExporter()));
registerInstrumentations({
instrumentations: [
new WinstonInstrumentation({
enabled: true,
logHook: (_span, record) => {
record['resource.service.name'] = 'testLogs';
},
}),
],
});
const winston = require('winston');
const logger = winston.createLogger({
transports: [
new winston.transports.Console(),
new winston.transports.Http({
host: 'localhost',
port: 3301,
path: '/api/v1/logs',
method: 'POST',
headers: {
'Content-Type': 'application/json',
}
})
],
})
function main() {
tracer.startActiveSpan('main', (span) => {
<http://logger.info|logger.info>("Started the span, printing context");
<http://logger.info|logger.info>(span.spanContext());
<http://logger.info|logger.info>("In main main spanning");
require('./app.js')
});
<http://logger.info|logger.info>("Ended span in main");
}
main();
but not able to see the logs , is there anything i'm missing. if anyone can help me will be great. looking forward for the support from team.
running signoz with ./install.sh on localhost port 3301 and node application running on localhost port 5555Riccardo Leonardi
06/06/2023, 1:01 PMtelemetrygen traces --traces 1 --otlp-endpoint localhost:4317 --otlp-insecure
then I can see on the Traces section the telemetrygen Service data (lets-go and okey-dokey).
So I've generated HostMetrics dashboards for the source VM and imported the resulting json to the Dashboards section on the dest VM.
The HostMetrics Dashboard - <source-VM-Name> appeared, but all the panels are empty.
I've also tried troubleshooting using:
troubleshoot checkEndpoint --endpoint=dest-IP:4317
and the answer was:
INFO workspace/main.go:28 STARTING!
INFO checkEndpoint/checkEndpoint.go:41 checking reachability of SigNoz endpoint
INFO workspace/main.go:46 Successfully sent sample data to signoz ...
There is no firewall between the two VM and tcpdump show traffic packets flowing from source to dest and back.
Where am I wrong?
Any help is very appreciated, tks.Ratikanta Rout
06/06/2023, 3:49 PMSaleem Shaik
06/07/2023, 6:20 AMBhini Dave
06/07/2023, 6:38 AMonline webinar
here: https://www.linkedin.com/video/event/urn:li:ugcPost:7068835877740789760/
Whether you're already utilizing ECS or considering it as your container orchestrator, this session is designed to provide valuable insights.
Explore the challenges of traditional observability setups, including CloudWatch Logs, Metrics, Alerts, and Xray, and discover a better solution through SigNoz.
Learn how SigNoz can be seamlessly integrated into your ECS workloads, offering cost-effectiveness, comprehensive monitoring, and liberation from vendor lock-in concerns. We'll also delve into the advantages of Clickhouse over ElasticSearch and provide a step-by-step guide on implementing SigNoz.Lunar Angelo Pajaroja
06/08/2023, 2:23 AMKoushik Maiti
06/08/2023, 1:44 PMKoushik Maiti
06/08/2023, 1:44 PMAli Basharat
06/08/2023, 5:07 PM