Julien Pivotto
b78082f426
doc: snapshots: fix JSON response ( #44758 )
2022-02-02 14:03:14 +01:00
Tania B
84ea13bf6c
Docs: Refactor encryption docs ( #44718 )
...
* Docs: Refactor encryption docs
* Rename enterprise encr
* Remove envelope encr page
* combine database encryption sections
* fix reference
* Fix link
Co-authored-by: Mitchel Seaman <mitchel.seaman@gmail.com>
2022-02-02 15:02:57 +02:00
Tania B
07d207a3f0
Docs: Add documentation for the new encryption providers ( #44604 )
...
* Add docs for Google Cloud KMS provider
* Minor changes to Google KMS provider
* Add docs for Hashicorp Vault provider
* Review suggestion
Co-authored-by: Mitch Seaman <mjseaman@users.noreply.github.com>
* Commit suggested change
Co-authored-by: Mitch Seaman <mjseaman@users.noreply.github.com>
* Remove confusing instruction
* Add example of key file path
* Add links to new providers
* Add path description
Co-authored-by: Mitch Seaman <mjseaman@users.noreply.github.com>
2022-02-02 14:24:56 +02:00
Oscar Kilhed
78ed5a99e6
TimeSeries/Barchart: Only show default label for y axis ( #44713 )
...
* TimeSeries/Barchart: only show default label for x axis
* Update docs
* Update packages/grafana-ui/src/options/builder/axis.tsx
Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
2022-02-02 11:05:48 +01:00
JM
925333bfa4
Library Elements API GET by name returns array ( #44743 )
...
* Library Elements API GET by name returns array
Making a GET request to the Library Elements HTTP API `api/library-elements/name/:name` will return an **array** of Library Element objects, but the documentation says it will return a Library Element object.
Example cURL POST request:
`curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer XXXXXXXXXXX" -d @request.json "https://my.grafana.net/api/library-elements/ "`
request.json
```json
{
"model": {},
"kind": 1,
"name": "testing description3",
"uid": "basic3",
"id": 12345,
"version": 2
}
```
Example cURL GET request:
`curl -X GET -H "Content-Type: application/json" -H "Authorization: Bearer XXXXXXXX" -d @request "https://my/api/library-elements/name/testing description3"`
Example response:
```json
{
"result": [
{
. . .
}
]
}
```
* Library Elements API fix bracket spacing
2022-02-02 09:50:27 +01:00
achatterjee-grafana
133e34d52a
Docs: Add section about limitations alerting in "Time range controls" ( #44680 )
...
* Added section about syntaxes not supported by Grafana. Also updated missing image name.
* Fixed image name again.
2022-01-31 18:15:10 -05:00
Vardan Torosyan
2053049c40
Remove service accounts from public documentation as it's not being released yet ( #44658 )
2022-01-31 16:37:51 +01:00
achatterjee-grafana
d584a27055
Docs: Added information about Prometheus write permission requirement. ( #44616 )
...
* Added note.
* Fixed typo.
2022-01-28 19:35:50 -05:00
Ivana Huckova
4e37a53a1c
Query history: Create API to add query to query history ( #44479 )
...
* Create config to enable/disable query history
* Create add to query history functionality
* Add documentation
* Add test
* Refactor
* Add test
* Fix built errors and linting errors
* Refactor
* Remove old tests
* Refactor, adjust based on feedback, add new test
* Update default value
2022-01-28 17:55:09 +01:00
Alex Vandiver
844b194f5b
Middleware: Don't require HTTPS for HSTS headers to be emitted ( #35147 )
...
Grafana itself may not be serving content over HTTPS, but it may be
behind a transparent proxy which does.
Fixes #26770 . Based on #26868 .
2022-01-28 07:23:28 +01:00
achatterjee-grafana
7b476c19c2
fix typo ( #44564 )
2022-01-27 16:33:55 -05:00
Dan Cech
1e89fc157d
update snapshots server url ( #44563 )
...
* update snapshots server url
* update all old references to snapshot.raintank.io
2022-01-27 16:11:20 -05:00
Tania B
1a9c293984
Chore: Remove unused AWS KMS provider's token setting ( #44531 )
2022-01-27 17:15:49 +02:00
Morten Nygaard Åsnes
9e4aafa719
MSSQL: Configuration of certificate verification for TLS connection ( #31865 )
...
Fixes #24589
Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
2022-01-26 15:00:18 +01:00
Nathan Marrs
5c9d2d6b3e
Update documentation to to notify of removal of 2 modules from grafana-ui ( #44341 )
2022-01-25 09:57:12 -08:00
J Guerreiro
84c89ec61e
Docs: Add usage stats preview to doc ( #43995 )
...
* Docs: Add usage stats preview to doc
* Fix: remove permissions references
2022-01-24 14:24:58 +01:00
Tim Levett
641e34e341
Bug: Fixed User API Link ( #44342 )
...
Very minor fix to complete the User API link.
2022-01-23 06:33:50 +01:00
Marius Bezuidenhout
9fc0aee02b
Feature/mathandreduce ( #41608 )
...
* Added new math functions: round, ceil, floor
* Added a new reduce function: last.
2022-01-21 13:15:50 -05:00
Jason Walton
5d0bc9e933
docs: Fix URL for Github callback in OAuth. ( #41122 )
2022-01-21 10:57:44 -05:00
JM
8a21385481
Docs: add API pages to HTTP API list ( #42997 )
...
* add API pages to HTTP API list
* fix capitalization of page names
2022-01-21 10:19:11 -05:00
Alexander Emelin
239ead8d8e
Fix WebSockets configuration for Nginx ( #44148 ) ( #44211 )
...
Co-authored-by: Gleb Goncharov <gongled@gongled.ru>
2022-01-20 10:14:45 +03:00
kosssi
f6b385f0ca
docs: Move password information on password smtp section ( #42370 )
...
*What this PR does / why we need it:*
The password information is on [enabled section](https://grafana.com/docs/grafana/latest/administration/configuration/#enabled ), I move it on [password section](https://grafana.com/docs/grafana/latest/administration/configuration/#password-1 ).
2022-01-19 12:16:59 -05:00
Christopher Moyer
449c608ef1
Docs/panel refactor ( #43569 )
...
* new refactored panel docs
* fixed links
* removed xtra sharing link, added links to panel display option tasks
* fixed typo
* add aliases
* incorporate PM feedback
* intermediate commit to resolve merge conflict
* final changes to resolve merge conflicts
2022-01-18 15:06:27 -06:00
Grot (@grafanabot)
7a622422a9
ReleaseNotes: Updated changelog and release notes for 7.5.13 ( #44173 )
2022-01-18 18:33:58 +02:00
Grot (@grafanabot)
978d6fd72b
ReleaseNotes: Updated changelog and release notes for 8.3.4 ( #44171 )
2022-01-18 18:13:59 +02:00
Gabi Davar
c4b345cfc4
Fix issue link ( #42891 )
2022-01-17 15:40:46 +00:00
Jack Westbrook
e888a40531
Plugins: Add notices to docs to prevent NPX commands from hanging ( #44043 )
...
* docs(plugins): add notice about npm 7 flag to prevent commands from hanging
* Apply suggestions from code review
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
2022-01-17 15:58:36 +01:00
ToTheMax
bd8791aced
Fixed broken links in documentation ( #44044 )
...
* Fixed broken link
* Fixed broken contribute documentation link
* Consistent relative contribute-folder url
2022-01-14 10:24:24 -05:00
Joker
3239c62a24
Explore: Support custom display label for exemplar links for Prometheus datasource ( #42732 )
...
* Add custom URL label, docs for prometheus exemplar
2022-01-14 14:52:00 +00:00
Gabriel MABILLE
11fa9801f2
AccessControl: Provisioning for teams ( #43767 )
...
* AccessControl: Provisioning for teams
* Docs: Add fixed role team assignment to full example
Co-authored-by: gamab <gabi.mabs@gmail.com>
Co-authored-by: Jguer <joao.guerreiro@grafana.com>
2022-01-14 10:28:06 +01:00
Emil Tullstedt
25736b6afb
Auth: implement auto_sign_up for auth.jwt ( #43502 )
...
Co-authored-by: James Brown <jbrown@easypost.com>
2022-01-13 17:15:22 +01:00
Agnès Toulet
14b92b75c7
Docs: Update SAML settings ( #43271 )
...
* Docs: Update SAML settings
* update to follow implementation change
* update example SAML configuration
2022-01-13 14:04:02 +01:00
Agnès Toulet
a9dfd3a487
Docs: clean up image renderer dependencies and add ones for CentOS 8 ( #41862 )
...
* Docs: clean up image renderer dependencies and add ones for CentOS 8
* apply PR review feedback
2022-01-13 11:05:56 +01:00
Alexander Weaver
59bda131ec
Alerting: [Docs] Clarifications regarding what's supported in alerting message templates ( #43544 )
...
* Clarify docs for alerting templates
* Fix template cross-reference
* Add a single missing delimiter
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Address various points of docs feedback
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/alerting/unified-alerting/message-templating/_index.md
Co-authored-by: Yuriy Tseretyan <tceretian@gmail.com>
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
Co-authored-by: Yuriy Tseretyan <tceretian@gmail.com>
2022-01-11 14:16:04 -06:00
Andreas Fitzek
58408f31ab
Fix typo in contact-points documentation ( #43883 )
...
Fixes a typo in contact-points documentation, `mesasges` => `messages`
2022-01-11 09:33:37 -05:00
Karl Persson
8271bc73f9
Update docs for ds permissions access control permisisons ( #43346 )
2022-01-11 14:52:33 +01:00
Isabella Siu
5e7804f466
CloudMonitoring: separate out google auth docs ( #43481 )
...
* CloudMonitoring: separate out google auth docs
* Apply suggestions from code review
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* docs team changes
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
2022-01-10 16:44:38 -05:00
Marcus Olsson
2b967c4c55
Add plugin publishing and signing criteria ( #40154 )
2022-01-10 15:32:11 +01:00
Marcus Olsson
1141df7b9b
Update Add support for annotations ( #43851 )
2022-01-10 13:35:09 +01:00
Timur Olzhabayev
e2dcfbf916
docs(static): add plugin submission how-to ( #43576 )
2022-01-07 13:43:41 +01:00
MaukWM
faca526c16
Fixed incorrect link to text panel page ( #43757 )
...
"Text panel" was linking to the "alert list panel" page: (https://grafana.com/docs/grafana/latest/visualizations/alert-list-panel/ ). This change should map it to the correct page now (https://grafana.com/docs/grafana/latest/visualizations/text-panel/ ).
Co-authored-by: achatterjee-grafana <aparajita.chatterjee@grafana.com>
2022-01-06 15:15:44 -05:00
Nathan Rodman
825edddfb6
Alerting: UI for mute timings ( #41578 )
...
* wip: add form inputs for creating mute timing
* form for mute timings
* add action for submitting config
* fix bug in payload
* add table for viewing mute timings
* remove mute timing from routes when deleted
* attach mute timing to route
* edit a mute timing
* use field array for multiple intervals
* Add confirmation modal for deleting mute timing
* add default values to form inputs
* fetch am config prior to renderring form
* validation for mute timing fields
* fix tests
* tests for mute timing form
* small ui fixes for the form and table
* pass mute name as query param
* make time fields inline
* fix validation for an existing alert and overwrite on edit
* rename mute timing in routes on edit
* fix validation for time inputs
* make time interval its own component
* add descriptions for mute timings
* refactor time interval parsing functions
* fix linting and tests
* refactor makeAmLink
* docs for mute timings
* reorganize docs and add intro for mute timings
* doc review edits
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* run prettier
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
2022-01-05 10:16:43 -08:00
achatterjee-grafana
a9ad7d3c03
Add note for Cloud users. ( #43689 )
2022-01-04 17:20:42 -05:00
Christopher Moyer
238345b62d
docs: aws marketplace license activation ( #43466 )
...
* initial draft
* role creation prereq
* separate ecs and eks docs
* update ECS steps
* reword ecs instructions
* spacing
* remove spaces to make a hyperlink work
* added aws marketplace content
* update enterprise configuration
* add detail to deploy outside of aws
* improve outside of aws config
* minor addition
* update region syntax
* Update docs/sources/enterprise/license/_index.md
* typo
* Update EKS docs with detailed instructions
* Add task to setup ECS for high-availability
* Fix AWS_REGION environment variable
* final review and changes
* section landing page tweak
* Update docs/sources/enterprise/license/activate-aws-marketplace-license/about-ge-license-through-aws.md
Co-authored-by: Guilherme Caulada <guilherme.caulada@grafana.com>
* fixed links, changed db parameters to placeholder values
* copy edits
* copy updates
* Fix typos pointed out by codespell
* Fix prettier issue on EKS documentation
Co-authored-by: Mitchel Seaman <mitchel.seaman@gmail.com>
Co-authored-by: Mitch Seaman <mjseaman@users.noreply.github.com>
Co-authored-by: Guilherme Caulada <guilherme.caulada@grafana.com>
2022-01-04 09:22:33 -07:00
Torkel Ödegaard
b1643f536c
Docs: Fix formatting of markdown file ( #43642 )
2022-01-04 09:51:13 +01:00
achatterjee-grafana
88bc47441f
added note that notifications no longer include images. ( #43635 )
2022-01-03 17:57:38 -05:00
Kyle Brandt
f17fb76b5e
SSE: Add is_nan() and other like functions and allow '_' in func names ( #43555 )
...
* SSE: Add is_nan() and allow '_' in func names
is_null() infn(), is_inf(), is_number()
2021-12-29 11:40:52 -05:00
Alex Khomenko
3b4a4be3c6
Feature highlights: add setting toggle ( #43394 )
...
* Feature highlights: add toggle setting
* Settings: Use provider for 'feature_highlights' section
* Fix frontendsettings API tests
* Document the toggle
Co-authored-by: Joan López de la Franca Beltran <5459617+joanlopez@users.noreply.github.com>
Co-authored-by: Joan López de la Franca Beltran <joanjan14@gmail.com>
2021-12-24 10:49:52 +02:00
Shirley
5cffd98e24
Docs: Update Google Cloud Monitoring documentation ( #43135 )
...
* Update documentation
* Correct urls
* Correct provisioning data source url anchor
* Use relref and replace variable syntax section with official doc link
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Update docs/sources/datasources/google-cloud-monitoring/_index.md
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
* Put back 'and'
* Change the numbering to 1
* Change numbering back to 1
Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com>
2021-12-17 17:41:01 +01:00
Marcus Efraimsson
df6765d805
Chore: Update release notes index page with 8.3.3 ( #43224 )
2021-12-16 17:41:27 +01:00