@@ -51,6 +51,8 @@ From `/etc/grafana/datasources` to `/etc/grafana/provisioning/datasources` when
## Fixes
***Gzip**: Fixes bug gravatar images when gzip was enabled [#5952](https://github.com/grafana/grafana/issues/5952)
***Alert list**: Now shows alert state changes even after adding manual annotations on dashboard [#9951](https://github.com/grafana/grafana/issues/9951)
***Alerting**: Fixes bug where rules evaluated as firing when all conditions was false and using OR operator. [#9318](https://github.com/grafana/grafana/issues/9318)
***Cloudwatch**: CloudWatch no longer display metrics' default alias [#10151](https://github.com/grafana/grafana/issues/10151), thx [@mtanda](https://github.com/mtanda)
@@ -205,7 +205,7 @@ The database user (not applicable for `sqlite3`).
### password
The database user's password (not applicable for `sqlite3`). If the password contains `#` or `;` you have to wrap it with trippel quotes. Ex `"""#password;"""`
The database user's password (not applicable for `sqlite3`). If the password contains `#` or `;` you have to wrap it with triple quotes. Ex `"""#password;"""`
### ssl_mode
...
...
@@ -214,19 +214,19 @@ For MySQL, use either `true`, `false`, or `skip-verify`.
### ca_cert_path
(MySQL only) The path to the CA certificate to use. On many linux systems, certs can be found in `/etc/ssl/certs`.
The path to the CA certificate to use. On many linux systems, certs can be found in `/etc/ssl/certs`.
### client_key_path
(MySQL only) The path to the client key. Only if server requires client authentication.
The path to the client key. Only if server requires client authentication.
### client_cert_path
(MySQL only) The path to the client cert. Only if server requires client authentication.
The path to the client cert. Only if server requires client authentication.
### server_cert_name
(MySQL only) The common name field of the certificate used by the `mysql` server. Not necessary if `ssl_mode` is set to `skip-verify`.
The common name field of the certificate used by the `mysql` or `postgres` server. Not necessary if `ssl_mode` is set to `skip-verify`.
### max_idle_conn
The maximum number of connections in the idle connection pool.
...
...
@@ -292,10 +292,14 @@ organization to be created for that new user.
The role new users will be assigned for the main organization (if the
above setting is set to true). Defaults to `Viewer`, other valid
options are `Admin` and `Editor` and `Read Only Editor`. e.g. :
options are `Admin` and `Editor`. e.g. :
`auto_assign_org_role = Read Only Editor`
`auto_assign_org_role = Viewer`
### viewers can edit
Viewers can edit/inspect dashboard settings in the browser. But not save the dashboard.
<selecttype="text"ng-model="orgUser.role"class="gf-form-input max-width-8"ng-options="f for f in ['Viewer', 'Editor', 'Read Only Editor', 'Admin']"ng-change="updateOrgUser(orgUser)">
<selecttype="text"ng-model="orgUser.role"class="gf-form-input max-width-8"ng-options="f for f in ['Viewer', 'Editor', 'Admin']"ng-change="updateOrgUser(orgUser)">
<selecttype="text"ng-model="newOrg.role"class="gf-form-input width-10"ng-options="f for f in ['Viewer', 'Editor', 'Read Only Editor', 'Admin']"></select>
</span>
<spanclass="gf-form-label">Role</span>
<spanclass="gf-form-select-wrapper">
<selecttype="text"ng-model="newOrg.role"class="gf-form-input width-10"ng-options="f for f in ['Viewer', 'Editor', 'Admin']"></select>
<selecttype="text"ng-model="org.role"class="gf-form-input max-width-12"ng-options="f for f in ['Viewer', 'Editor', 'Read Only Editor', 'Admin']"ng-change="updateOrgUser(org)">
<selecttype="text"ng-model="org.role"class="gf-form-input max-width-12"ng-options="f for f in ['Viewer', 'Editor', 'Admin']"ng-change="updateOrgUser(org)">
<selecttype="text"ng-model="user.role"class="gf-form-input"ng-options="f for f in ['Viewer', 'Editor', 'Read Only Editor', 'Admin']"ng-change="ctrl.updateOrgUser(user)">
<selecttype="text"ng-model="user.role"class="gf-form-input"ng-options="f for f in ['Viewer', 'Editor', 'Admin']"ng-change="ctrl.updateOrgUser(user)">