Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: default deployment with collect_metric=true and DEBUG level #1148

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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: 2 additions & 0 deletions deployments/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ spec:
- {{ .Values.starknet.centralUrl }}
- --base_layer.node_url
- {{ .Values.base_layer_node_url }}
- --collect_metrics
- {{ .Values.collect_metrics | quote }}
{{- if .Values.services }}
ports:
- containerPort: {{ .Values.services.rpc.port }}
Expand Down
7 changes: 6 additions & 1 deletion deployments/helm/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Default values for a papyrus deployment.

# The verbosity level of logs ("debug", "info", "error", etc.)
rustLogLevel: "info"
rustLogLevel: "debug"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default log level should be "info"


node:
# Number of concurrent requests to the SN feeder gateway
Expand All @@ -10,6 +10,11 @@ node:
# Ethereum node URL. A value for this variable is mandatory.
base_layer_node_url:

# If true, metrics will be collected and exposed on the monitoring port.
# Note: this is not a guarantee the metrics will be collected. To see where
# they collected see the deployment.yaml file.
collect_metrics: true
eranreshef-starkware marked this conversation as resolved.
Show resolved Hide resolved

starknet:
chainId: SN_MAIN # possible values: SN_MAIN, SN_GOERLI
# feeder-gateway url
Expand Down
Loading