Skip to content
#

observability

Here are 202 public repositories matching this topic...

netdata
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

vector
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

calebhailey
calebhailey commented Feb 27, 2020

Feature Suggestion

The sensuctl create -r -f /path/to/files/ command should ignore non YAML/JSON files.

Possible Implementation

Only process files with YAML and JSON file extensions:

  • .yaml
  • .yml
  • .json

Context

Imagine a repository of configuration templates that also includes some documentation (e.g. README.md). It would be ideal if a user could simply clon

jean-moldovan
jean-moldovan commented Apr 16, 2020

Hello!

In the previous version (v1) of appinsights js sdk we had appInsights.setAuthenticatedUserContext method. I think it was used to override user id with a custom value from the application.

This method seem to exist in the latest version of appinsights js sdk (2.5.4):

    Initialization.prototype.setAuthenticatedUserContext = function (authenticatedUserId, accountId, storeInCook
SergeyKanzhelev
SergeyKanzhelev commented Mar 13, 2020

Validate timeout response from SDK. Original suspicion was that ingestion service timeouts cause SDK to timeout and retry. We are lacking documentation on what happens on endpoint timeouts.
a. What’s the default timeout on SDK?
b. Do we retry on timeout?
c. Is it a good idea to increase the number of workers to a very big number to prevent timeout-caused delays?

GavinOsborn
GavinOsborn commented Apr 18, 2018

We leverage Azure Service Bus heavily in our applications.
We write a lot of code that semantically looks like this:

while(true){
  const message = servicebus.getMessage();
  if(message){
    ProcessMessage(message);
  }
}

function ProcessMessage(message){
  request.get('http://some-service/get-stuff', (res) => {
    if(res.statusCode == 200){
      request.post('http://some-
wu-sheng
wu-sheng commented Nov 11, 2017

IMHO, for an open source project, the community environment is the most important thing. So please make sure, every people who are interesting in your repository, know who you are, and how to contact you.

So at least provide your information for contacting you. At least, if you want to make things easier, you can use Skywalking's gitter room, google maillist, QQ group, etc. **Bottom line is, pe

Improve this page

Add a description, image, and links to the observability 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 observability topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.