github.com/esnet/gdg@v0.6.1-0.20240412190737-6b6eba9c14d8/website/content/docs/usage_guide/enterprise_guide.md (about) 1 --- 2 title: "Enterprise Guide" 3 weight: 18 4 --- 5 The features listed below are for the enterprise edition of Grafana only. They will not work on the OSS version. 6 7 In order to use these features you need. 8 9 1. Update your context to enable enterprise features. Simply add the following flag to your context. 10 11 `enterprise_support: true` 12 13 2. Have a running Enterprise version of grafana, I'll defer to the grafana community on instructions on how to set this up. 14 15 ### Connections Permissions 16 17 Note: Available with +v0.4.6. All of these commands are a subset of the connection command. 18 19 All commands can use `permission` or `p` to manage connection permissions. 20 21 ```sh 22 ./bin/gdg c permission list -- Lists all current connections permissions 23 ./bin/gdg c permission download -- Download all connections from grafana to local file system 24 ./bin/gdg c permission upload -- Exports all dashboard from local filesystem (matching folder filter) to Grafana 25 ./bin/gdg c permission clear -- Deletes all connections Permissions (Leaving only the default values) 26 ``` 27 28 You can additionally filter by connection slug in order to only operate on a single connection. 29 30 `./bin/gdg c permission list --connection my-elastic-connection ` 31 32 ``` 33 ┌─────┬───────────┬──────────────────────────────────────────┬───────────────────────────────────────────────┬───────────────────────┬────────────────────────────────────────────┐ 34 │ ID │ UID │ NAME │ SLUG │ TYPE │ DEFAULT │ URL │ 35 ├─────┼───────────┼──────────────────────────────────────────┼──────────────────────────┼────────────────────┼───────────────────────┼────────────────────────────────────────────┤ 36 │ 712 │ t5xBsTQ4k │ My Elastic Connection │ my-elastic-connection │ elasticsearch │ false │ http://localhost:3000//datasource/edit/712 │ 37 │ 712 │ t5xBsTQ4k │ PERMISSION--> │ Edit │ │ sa-gdg-authscope-test │ │ 38 │ 712 │ t5xBsTQ4k │ PERMISSION--> │ Query │ │ authscope_team_arm │ │ 39 └─────┴───────────┴──────────────────────────────────────────┴──────────────────────────┴────────────────────┴───────────────────────┴────────────────────────────────────────────┘ 40 ````