We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm preparing of ready to use sample dashboards. At the end i'll create a dedicated & public GH repo.
I would like to get the following command in a nice looking way in sampler.
Everything looks fine from the terminal :
curl -s https://hub.docker.com/v2/repositories/optnc | jq -r '"Image\tStars\tPulls", "-----------------------\t-------\t------", ( .results | sort_by(.pull_count) | reverse | .[] | "\(.name)\t\(.star_count)\t\(.pull_count)")' | column -t -s $'\t'
see below :
... but when I put the same commad in the following conf (inspired by code sample) :
textboxes: - title: OPT-NC Docker image stats rate-ms: 15000 sample: curl -s https://hub.docker.com/v2/repositories/optnc | jq -r '"Image\tStars\tPulls", "-----------------------\t-------\t------", ( .results | sort_by(.pull_count) | reverse | .[] | "\(.name)\t\(.star_count)\t\(.pull_count)")' | column -t -s $'\t'
I get the following render (something weird appears with t and \t) :
t
\t
π I guess it has to deal with special characters... but in your sample I did not see any special tricks
Any idea about what I'm doing wrong ?... or am missing in formating options ?
Thank you in advance for any help or feedback.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
π Context
I'm preparing of ready to use sample dashboards. At the end i'll create a dedicated & public GH repo.
β Question about alignement
I would like to get the following command in a nice looking way in sampler.
Everything looks fine from the terminal :
see below :
... but when I put the same commad in the following conf (inspired by code sample) :
I get the following render (something weird appears with
t
and\t
) :π I guess it has to deal with special characters... but in your sample I did not see any special tricks
Any idea about what I'm doing wrong ?... or am missing in formating options ?
Thank you in advance for any help or feedback.
The text was updated successfully, but these errors were encountered: