Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/pmuls99/jaeger into enableC…
Browse files Browse the repository at this point in the history
…ORSSettings
  • Loading branch information
severussnape321 committed Jul 13, 2023
2 parents 6baee5c + e40a3e5 commit e27c5fe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/tracegen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func createTracers(cfg *tracegen.Config, logger *zap.Logger) ([]trace.Tracer, fu
logger.Sugar().Infof("using %s trace exporter for service %s", cfg.TraceExporter, svc)

tp := sdktrace.NewTracerProvider(
sdktrace.WithBatcher(exp),
sdktrace.WithBatcher(exp, sdktrace.WithBlocking()),
sdktrace.WithResource(resource.NewWithAttributes(
semconv.SchemaURL,
semconv.ServiceNameKey.String(svc),
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/hotrod/services/frontend/web_assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<head>
<title>HotROD - Rides On Demand</title>
<script src="./jquery-3.1.1.min.js"></script>
<script src="./code.jquery.com_jquery-3.7.0.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>

Expand Down

This file was deleted.

3 changes: 3 additions & 0 deletions scripts/rebuild-ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ set -euxf -o pipefail

cd jaeger-ui

git fetch --all --tags
git log --oneline --decorate=full -n 10 | cat

LAST_TAG=$(git describe --tags --dirty 2>/dev/null)

if [[ "$LAST_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Expand Down

0 comments on commit e27c5fe

Please sign in to comment.