-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ingester (and kafka) support (#168)
* Add ingester (and kafka) support Signed-off-by: Gary Brown <[email protected]> * Remove unnecessary type declarations in arrays for deployment tests Signed-off-by: Gary Brown <[email protected]> * Update to use a separate new strategy call 'streaming' Signed-off-by: Gary Brown <[email protected]> * Initial version of docs Signed-off-by: Gary Brown <[email protected]> * Fix readme based on review comments Signed-off-by: Gary Brown <[email protected]> * Fix readiness port (although still seems to fail) and add example jaeger instance for streaming Signed-off-by: Gary Brown <[email protected]> * Fix health/metrics ports for ingester Signed-off-by: Gary Brown <[email protected]> * Update labels inline with k8s recommendations Signed-off-by: Gary Brown <[email protected]> * format fix Signed-off-by: Gary Brown <[email protected]> * Add debug logging and ingester deadlockInterval (disabled) to avoid restarts when just demo/testing Signed-off-by: Gary Brown <[email protected]> * Remove ingester service as not required Signed-off-by: Gary Brown <[email protected]> * fix format Signed-off-by: Gary Brown <[email protected]> * Address review comments Signed-off-by: Gary Brown <[email protected]> * Add TODO comment in streaming strategy Signed-off-by: Gary Brown <[email protected]>
- Loading branch information
1 parent
906f59d
commit b71a4ee
Showing
15 changed files
with
1,109 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# setup an elasticsearch with `make es` | ||
# setup a kafka platform using https://strimzi.io with quickstart instructions | ||
apiVersion: io.jaegertracing/v1alpha1 | ||
kind: Jaeger | ||
metadata: | ||
name: simple-streaming | ||
spec: | ||
strategy: streaming | ||
collector: | ||
options: | ||
log-level: debug | ||
ingester: | ||
options: | ||
kafka: | ||
topic: jaeger-spans | ||
brokers: my-cluster-kafka-brokers.kafka:9092 | ||
ingester: | ||
deadlockInterval: 0 | ||
log-level: debug | ||
storage: | ||
type: elasticsearch | ||
options: | ||
es: | ||
server-urls: http://elasticsearch:9200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.