-
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 support for grpc-plugin storage (#1517)
Signed-off-by: Pavol Loffay <[email protected]>
- Loading branch information
1 parent
25e9291
commit 4823277
Showing
17 changed files
with
372 additions
and
8 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,28 @@ | ||
# This example shows how to use Jaeger's Clickhouse grpc-plugin https://github.com/pavolloffay/jaeger-clickhouse | ||
# Before deploying Jaeger, create Clickhouse instance via Clickhouse operator and jaeger-clickhouse config map. | ||
# kubectl create configmap jaeger-clickhouse --from-file config.yaml | ||
# Content of config.yaml: | ||
# address: tcp://clickhouse-simple-01:9000 | ||
# username: clickhouse_operator | ||
# password: clickhouse_operator_password | ||
apiVersion: jaegertracing.io/v1 | ||
kind: Jaeger | ||
metadata: | ||
name: clickhouse-grpc-plugin | ||
spec: | ||
storage: | ||
type: grpc-plugin | ||
grpcPlugin: | ||
image: ghcr.io/pavolloffay/jaeger-clickhouse:0.4.1 | ||
options: | ||
grpc-storage-plugin: | ||
binary: /plugin/jaeger-clickhouse | ||
configuration-file: /plugin-config/config.yaml | ||
log-level: debug | ||
volumeMounts: | ||
- name: plugin-config | ||
mountPath: /plugin-config | ||
volumes: | ||
- name: plugin-config | ||
configMap: | ||
name: jaeger-clickhouse |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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.