Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
jangaraj committed Jan 2, 2024
1 parent b838879 commit c180b20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Grafana Debugger

TODO
TODO
4 changes: 2 additions & 2 deletions src/layouts/default/Default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
|
</div>
<div class="text-no-wrap ml-2 float-left">
Star:&nbsp;<a target="_blank" href="https://github.com/jangaraj/gv">GitHub repository</a>
Star:&nbsp;<a target="_blank" href="hhttps://github.com/monitoringartist/grafana-debugger">GitHub repository</a>
</div>
<div class="ml-2 float-left">
|
</div>
<div class="text-no-wrap ml-2 float-left">
Feedback:&nbsp;<a target="_blank" href="https://github.com/jangaraj/gv/issues/new">New GitHub issue</a>
Feedback:&nbsp;<a target="_blank" href="hhttps://github.com/monitoringartist/grafana-debugger/issues/new">New GitHub issue</a>
</div>

</v-card>
Expand Down
6 changes: 3 additions & 3 deletions src/views/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

Some debugging examples:
<br /><br />
<a href="#step=2&step1Version=v10.2.4&step1Type=Enterprise (Free %26 unlicensed)&step1Cloud=false&step1Installation=installed as container with orchestration&step1Os=Linux&step1DeploymentDetails=My docker-compose yaml file%3A%0A```yaml%0Aversion%3A '3.8'%0Aservices%3A%0A%20 grafana%3A%0A%20%20%20 image%3A grafana%2Fgrafana-enterprise%3Alatest%0A%20%20%20 ports%3A%0A%20%20%20%20%20 - 3000%3A3000%0A%20%20%20 environment%3A%0A%20%20%20%20%20 - GF_AUTH_ANONYMOUS_ENABLED%3Dtrue%0A%20%20%20%20%20 - GF_AUTH_ANONYMOUS_ORG_ROLE%3DAdmin%0A%20%20%20%20%20 - GF_AUTH_ANONYMOUS_ORG_NAME%3DMain Org.%0A%20%20%20%20%20 - GF_AUTH_ANONYMOUS_ORG_ID%3D1%0A%20%20%20 volumes%3A%0A%20%20%20%20%20 - grafana-storage%3A%2Fvar%2Flib%2Fgrafana%0Avolumes%3A%0A%20 grafana-storage%3A%0A```&step2WhatHappened=I don't see SAML login option in the login page.&step2WhatsExpected=I expect to see SAML login option in the login page.&step2HowReproduce=1. Open Grafana login page.%0A2. See that SAML login option is missing.&step2AdditionalDetails=I have configured SAML authentication according to the documentation. I use Azure IDP.&step3DocumentationLink=https%3A%2F%2Fgrafana.com%2Fdocs%2Fgrafana%2Flatest%2Fauth%2Fsaml%2F&step4Title=Missing SAML Login Option in Grafana Enterprise Deployment&step4Category=Authentication&step4SearchQuery=Grafana Enterprise missing SAML login option&step4Tags=saml%2Clogin%2C grafana enterprise%2C deployment%2C docker%2C linux%2C azure idp">Issue: SAML login is not available</a>
<a href="#step=1&step1Version=v10.2.4&step1Type=Enterprise%20(Free%20%2526%20unlicensed)&step1Cloud=false&step1Installation=installed%20as%20container%20with%20orchestration&step1Os=Linux&step1DeploymentDetails=My%20docker-compose%20yaml%20file:%0A%60%60%60yaml%0Aversion:%20'3.8'%0Aservices:%0A%20%20grafana:%0A%20%20%20%20image:%20grafana/grafana-enterprise:latest%0A%20%20%20%20ports:%0A%20%20%20%20%20%20-%203000:3000%0A%20%20%20%20environment:%0A%20%20%20%20%20%20-%20GF_AUTH_ANONYMOUS_ENABLED=true%0A%20%20%20%20%20%20-%20GF_AUTH_ANONYMOUS_ORG_ROLE=Admin%0A%20%20%20%20%20%20-%20GF_AUTH_ANONYMOUS_ORG_NAME=Main%20Org.%0A%20%20%20%20%20%20-%20GF_AUTH_ANONYMOUS_ORG_ID=1%0A%20%20%20%20volumes:%0A%20%20%20%20%20%20-%20grafana-storage:/var/lib/grafana%0Avolumes:%0A%20%20grafana-storage:%0A%60%60%60&step2WhatHappened=I%20don't%20see%20SAML%20login%20option%20in%20the%20login%20page.&step2WhatsExpected=I%20expect%20to%20see%20SAML%20login%20option%20in%20the%20login%20page.&step2HowReproduce=1.%20Open%20Grafana%20login%20page.%0A2.%20See%20that%20SAML%20login%20option%20is%20missing.&step2AdditionalDetails=I%20have%20configured%20SAML%20authentication%20according%20to%20the%20documentation.%20I%20use%20Azure%20IDP.&step3DocumentationLink=https://grafana.com/docs/grafana/latest/auth/saml/&step4Title=SAML%20login%20option%20missing%20in%20Grafana%20login%20page&step4Category=Authentication/Identity%20Management&step4SearchQuery=Grafana%20SAML%20login%20option%20missing&step4Tags=grafana,saml,%20login,%20authentication,%20azure%20idp">Issue: SAML login is not available</a>

</v-card-text>
</v-card>
Expand Down Expand Up @@ -790,7 +790,7 @@ export default {
for (var i = 0; i < this.inputVariables.length; i++) {
var variable = this.inputVariables[i]
if (this[variable] != null && this[variable] != "") {
hash = hash + "&" + variable + "=" + encodeURIComponent(this[variable])
hash = hash + "&" + variable + "=" + encodeURI(this[variable])
}
}
window.location.hash = hash.substring(1)
Expand All @@ -808,7 +808,7 @@ export default {
var variable = variables[i]
var parts = variable.split("=")
if (parts.length == 2) {
this[parts[0]] = decodeURIComponent(parts[1])
this[parts[0]] = decodeURI(parts[1])
}
}
},
Expand Down

0 comments on commit c180b20

Please sign in to comment.