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
Hi, I had to adjust the script so it will replace the Space with %20 in the link composition.
I had to do mine like this: ICINGAURL="https://icingahost/dashboard#!/monitoring/service/show?host=$HOSTNAME&service=$SERVICENAME" ICINGAWEBURL=echo "$ICINGAURL" | sed 's/ /%20/g'
echo "$ICINGAURL" | sed 's/ /%20/g'
If you have a better approach you can update the script. I am not an expert and I did what was the easiest for me.
Also, I used show instead of history because I wanted to display something else to the user once clicked the link.
Overall you did a great job!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I had to adjust the script so it will replace the Space with %20 in the link composition.
I had to do mine like this:
ICINGAURL="https://icingahost/dashboard#!/monitoring/service/show?host=$HOSTNAME&service=$SERVICENAME"
ICINGAWEBURL=
echo "$ICINGAURL" | sed 's/ /%20/g'
If you have a better approach you can update the script. I am not an expert and I did what was the easiest for me.
Also, I used show instead of history because I wanted to display something else to the user once clicked the link.
Overall you did a great job!
The text was updated successfully, but these errors were encountered: