Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Update1.1.5 and forward jaeger headers #13

Merged
merged 2 commits into from
Jul 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.1.4
VERSION=1.1.5
PROJECT=raintank
APP=graphite-mt
TAG_LATEST=0
Expand Down
2 changes: 1 addition & 1 deletion local_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@

# Provide a list of HTTP headers that you want forwarded on from this host
# when making a request to a remote webapp server in CLUSTER_SERVERS
REMOTE_STORE_FORWARD_HEADERS = ["x-org-id"] # An iterable of HTTP header names
REMOTE_STORE_FORWARD_HEADERS = ["x-org-id", "jaeger-debug-id", "jaeger-baggage", "uber-trace-id"] # An iterable of HTTP header names

## Prefetch cache
# set to True to fetch all metrics using a single http request per remote server
Expand Down
12 changes: 12 additions & 0 deletions vhost.conf
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,15 @@ WSGISocketPrefix /opt/graphite/run/wsgi

</VirtualHost>

<VirtualHost *:80>
ServerName localhost
DocumentRoot "/var/www/html"
ErrorLog /dev/stderr
# dont write request logs for status checks
CustomLog /dev/null common

<Location /server-status>
SetHandler server-status
Require local
</Location>
</VirtualHost>