Skip to content
#

tracing

Here are 565 public repositories matching this topic...

narayaruna
narayaruna commented Mar 3, 2020

https://github.com/openzipkin/zipkin/blob/master/zipkin/src/main/java/zipkin2/Span.java#L759

tags = builder.tags == null ? Collections.emptyMap() : new LinkedHashMap<>(builder.tags);

The empty map is immutable and makes it difficult to add a tag to a already created span. This will be helpful with performance. Otherwise, have to turn it in to builder and back to a Span when this type is us

transmittable-thread-local
waleedsaud
waleedsaud commented Aug 31, 2016
  • There is no install docs detailing how to install it. the docker stuff I do not know how it is installed.
  • The documentation is messy.
  • There is no support docs meaning what application server you support monitoring .
  • I think you have 2 parts one is the browser plugin and the other is the server , there is no clear indication between them and do I need to use both of them .

--Thank you

rovkinmax
rovkinmax commented Oct 15, 2019

Because advanced profiling working since api 26 and above users can forgot about enabling and get failed build error com.android.builder.dexing.DexArchiveBuilderException: Failed to process
In this case they must:
Edit Configurations -> app -> Profiling tab -> uncheck Enable advanced profiling

kameshsampath
kameshsampath commented Nov 12, 2018

Currently the Jaeger variables are added as ENV in Docker file:

  ENV JAEGER_SERVICE_NAME=customer\
  JAEGER_ENDPOINT=http://jaeger-collector.istio-system.svc:14268/api/traces\
  JAEGER_PROPAGATION=b3\
  JAEGER_SAMPLER_TYPE=const\
  JAEGER_SAMPLER_PARAM=1

We could avoid this and add them to Kubernetes Deployment YAML

(OR)

Except for JAEGER_SERVICE_NAME other variables

seanmwinn
seanmwinn commented Apr 9, 2020

git checkout v0.5.0
cd install/kubernetes/hubble
helm install hubble .

expected results: v0.5.0 tagged container deployed
actual results: latest tagged container deployed

git checkout master
cd install/kubernetes/hubble
helm install hubble .

expected results: latest tagged container deployed
actual results: v0.5.0 tagged container deployed

RoscoeTheDog
RoscoeTheDog commented Sep 4, 2019

Hello. I am trying to migrate my project from basic logging to something more advanced and someone recommended this module through reddit. I have been through the quick-start guide and other available documentation and have some very basic questions about the API.

How can I parse the logs and format them for the stdout?

Is there a way to stream what's being written to the log, just like the

duhenglucky
duhenglucky commented Jan 10, 2019

As interface shows below:

    /**
     * <p>
     * Send batch messages to server.
     *
     * @param messages messages to be sent.
     */
    void send(List<Message> messages);

This API can lead to multiple behaviors, such as sending to multiple partitions, or the same partition, so how should we define the behavior of this method?

And this issue exists in many places, suc

cspurk
cspurk commented Jan 28, 2019

Requirement - what kind of business use case are you trying to solve?

Always use time units in the Web UI which are easy to read by humans.

We use Jaeger to trace some complex, long-running offline jobs in which a seconds granularity in the Web UI is too fine-grained for human consumption.

Problem - what in Jaeger blocks you from solving the requirement?

Currently, durations seem

realgenekim
realgenekim commented May 18, 2019

Hi, @gnl — 

Keep up all the amazing work. Just ran into the strange problem... Here's a function without ghostwheel...

(defn should-return-nil
  [x]
  nil)
=> #'x.asin/should-return-nil
(should-return-nil "")
=> nil
(should-return-nil "")
=> nil

And here's the same function with ghostwheel — it returns seemingly random numbers. I'm wondering if I'm doing somethin

Improve this page

Add a description, image, and links to the tracing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tracing topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.