Questions tagged [opencensus]
87 questions
0
votes
0 answers
Cannot see traces in AWS Xray
I'm trying to upload some traces on AWS xray using opencensus.
The route of traces is simply this:
client -> opencensus agent -> xray
I'm using a docker-compose.yml with this configuration:
version: '3.7'
services:
#login
login:
build:
…

Fulvio
- 87
- 7
0
votes
1 answer
DJANGO OPENCENSUS url field in request data too long
I am having a similar issue to this question since adding App Insights to my application. It may be related to this other question also, but neither of them are directly related to App Insights and neither have solutions.
This is the error from the…

MikeF
- 764
- 9
- 26
0
votes
1 answer
Problem accessing custom metrics sent by opencensus exporter
I would like to export custom metrics using the opencensus python exporter as described in: https://cloud.google.com/monitoring/custom-metrics/open-census
I have a flask application deployed on Google Cloud Run that uses the piece of code in…

Aurélien
- 21
- 2
0
votes
2 answers
Get current InvocationId or operation_Id
Is there a way to have one complete output log with custom_dimensions? I see in the monitor tab (of Azure Functions) that only messages with operation_Id and customDimensions['InvocationId'] are shown. Is there a way to add these two parameters all…

5th
- 2,097
- 3
- 22
- 41
0
votes
1 answer
Export Django logs to Azure AppInsights with OpenCensus
I'm following this guidance for Django and Azure. I'm able to get dependancies and requests, but not traces.
I added this to middleware:
'opencensus.ext.django.middleware.OpencensusMiddleware'
Here is the LOGGING and OPENCENSUS portions of…

MikeF
- 764
- 9
- 26
0
votes
0 answers
Opencensus Advanced Aggregation
When i create the metrics in google stackdriver driver monitoring. I do see list of options for aligner (which is under secondary aggregation) similar to aggregator but after implementing the opencensus metrics. I do see only delta and rate options…
0
votes
1 answer
Can't get custom metrics data when using OpenCensus
I am following this guide monitoring_opencensus_metrics_quickstart-go. Besides, I also tried the way from this answer.
Code here:
package main
import (
"context"
"fmt"
"log"
"os"
"path"
"time"
…

Lin Du
- 88,126
- 95
- 281
- 483
0
votes
1 answer
Jaeger integration for a Java low latency application
Most of the integrations I have come across uses the java-agent to push the traces to a central collector and in turn one can view traces in Jaeger. However in my case I can't use the java agent, hence I decided to go with the custom tracing api…

Anand Nadar
- 236
- 1
- 6
- 14
0
votes
1 answer
Usages of Opentracing tools like Jaeger
I have come to know about opentracing and is even working on a POC with Jaeger and Spring. We have around 25+ micro services in production. I have read about it but is a bit confused as how it can be really used.
I'm thinking to use it as a…

Rahul
- 637
- 5
- 16
0
votes
1 answer
How to instrument code using OpenTracing / OpenCensus?
I have to instrument our java/python/c++ application using one of the apis (opentracing/opencensus). The problem is that the instrumentation requires that i start a span, set tags, set logs and then close the span in each method call. This is too…

Tausif mohammad
- 111
- 8
0
votes
0 answers
does OpenCensus is designed to create Custom Metrics over Firestore
According to Google Custom Metrics
Using Custom Metrics
This guide describes how to create and use custom metrics. The information is divided into the following sections:
Custom metrics with OpenCensus describes how to use OpenCensus, an…

Jim C
- 3,957
- 25
- 85
- 162
0
votes
0 answers
How to add a custom exporter for capturing traces from opentelemetry?
I have created a custom exporter by Implementing the SpanExporter class of OpenTelemetry.Trace.Export in .NET Core.
I need to configure the opentelemetry traces to use this as an exporter. I am not using any collector here I want to directly use…

Faizal
- 41
- 6
0
votes
1 answer
Setting up OpenCensus to work with Stackdriver
I'm trying to setup OpenCensus for our project, but I'm running into Bazel issues.
error loading package '@com_google_googleapis//google/devtools/cloudtrace/v2': Unable to find package for @com_google_googleapis_imports//:imports.bzl: The repository…

Šimon Tóth
- 35,456
- 20
- 106
- 151
0
votes
1 answer
Are there any config NOT to use trace on specific environment
Now I have a Golang Application deployed on GAE, with stackdriver trace.
About stackdriver Trace, to get custom span data, I did set up on my code, like
exporter, err := stackdriver.NewExporter(stackdriver.Options{
ProjectID:…

Ryo
- 485
- 1
- 8
- 26
0
votes
1 answer
Opencenus prevent my java process from exiting
I am using opencensus in my component, I am running a performance test with JMeter started by Jenkins, but the process never ends and I discovered that it is opencenus that is keeping it alive (because if I remove opencenus the process finishes/dies…

Roger that
- 442
- 6
- 21