6eb695b258
Explore: Add setting for default time offset ( #90401 )
...
* Add setting for explore for a different time offset
* fix linter
* Add validation for duration value
2024-07-17 11:47:49 -05:00
319a874033
MSSQL: Password auth for Azure AD ( #89746 )
...
* Password auth for Azure AD
* rename auth fields
* add azure flag for client password cred enabled
* prettier
* rename flag
* Update go.mod
* Update public/app/plugins/datasource/mssql/azureauth/AzureCredentialsForm.tsx
Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
* Apply suggestions from code review
Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
* update package
* go mod
* prettier
* remove password
* gowork
* remove unused env test
* linter
---------
Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
2024-07-16 14:08:51 -05:00
677d2a8b70
highlighting the part of the Grafana enterprise section so easir for … ( #90177 )
...
highlighting the part of the Grafana enterprise section so easir for users to find it
2024-07-16 20:16:23 +02:00
5beaae8561
FlameGraph: Remove flameGraphItemCollapsing feature toggle ( #90190 )
...
Remove feature toggle
2024-07-15 13:45:41 +01:00
c77015b329
Docs: Fix broken links resulting from plugin-tools site reorganization ( #90391 )
...
* Docs: Fix broken links resulting from plugin-tools site reorganization
* Fix additional link
* Update docs/sources/whatsnew/whats-new-in-v7-0.md
Co-authored-by: Isabel Matwawana <76437239+imatwawana@users.noreply.github.com>
---------
Co-authored-by: Isabel Matwawana <76437239+imatwawana@users.noreply.github.com>
2024-07-13 10:59:27 -07:00
3ca7976ee5
Transformations: Promote group to nested table as generally available ( #90253 )
2024-07-10 10:08:41 -07:00
9216a3df7d
Plugins: Remove datasourceQueryMultiStatus feature toggle ( #90191 )
...
* Remove datasourceQueryMultiStatus feature toggle
* PR review suggestion
2024-07-10 11:15:10 +02:00
fc8a5cf468
Profiling: Enhance configuration and docs ( #90048 )
...
Co-authored-by: Dave Henderson <dave.henderson@grafana.com>
2024-07-09 17:48:16 +02:00
82d8ca03b3
Update SAML UI docs to set up Azure AD ( #90193 )
...
* Update SAML UI docs to set up Azure AD
2024-07-09 09:43:43 +02:00
36ff0fe63a
Features: Add cloudwatchMetricInsightsCrossAccount feature toggle ( #89848 )
2024-07-02 12:34:12 +02:00
d497e641db
SAML: Add Azure AD configuration for SAML integration ( #89767 )
...
* Add Azure AD configuration for SAML integration
2024-06-27 18:29:16 +02:00
ba5b33227c
Cloudwatch: Round up endTime in GetMetricData to next minute ( #89341 )
...
* Add cloudWatchRoundUpEndTime feature toggle
2024-06-27 17:10:28 +02:00
a15a206e9c
Docs: Update LDAP doc for debug view ( #89522 )
...
Update LDAP doc
LDAP debug view does not work with single bind since there is no way to bind to the LDAP server and perform the search.
2024-06-27 10:07:30 +00:00
68691c9386
Alerting: Add setting for maximum allowed rule evaluation results ( #89468 )
...
* Alerting: Add setting for maximum allowed rule evaluation results
Added a new configuration setting `quota.alerting_rule_evaluation_results` to set the maximum number of alert rule evaluation results per rule. If the limit is exceeded, the evaluation will result in an error.
2024-06-27 09:45:15 +02:00
be1414b36b
Dashboards: Remove scenes
feature toggle ( #89771 )
2024-06-27 09:03:46 +02:00
a3879e02bb
RestoreDashboards: Create FE feature toggle ( #89655 )
2024-06-25 16:43:13 +02:00
e9ee65924b
Chore: Remove explore content outline feature toggle ( #89277 )
...
Remove explore content outline feature toggle
2024-06-24 09:45:42 -06:00
1b2f110664
Users: Add config option to control how often last_seen is updated ( #88721 )
...
Users: Add config option to control how often last_seen is updated
Co-authored-by: Karl Persson <kalle.persson92@gmail.com>
2024-06-24 16:54:56 +02:00
4be92ed111
Docs: Improve Okta docs ( #89453 )
...
* Improve Okta docs
* Update docs/sources/setup-grafana/configure-security/configure-authentication/okta/index.md
---------
Co-authored-by: Jack Baldry <jack.baldry@grafana.com>
2024-06-21 13:25:11 +02:00
b075926202
Alerting: Time Intervals API ( #88201 )
...
* expose ngalert API to public
* add delete action to time-intervals
* introduce time-interval model generated by app-platform-sdk from CUE model the fields of the model are chosen to be compatible with the current model
* implement api server
* add feature flag alertingApiServer
---- Test Infra
* update helper to support creating custom users with enterprise permissions
* add generator for Interval model
2024-06-20 16:52:03 -04:00
2a714601a7
Chore: Remove prometheusIncrementalQueryInstrumentation feature toggle ( #89463 )
...
* remove prometheusIncrementalQueryInstrumentation feature toggle
* remove profile method
* remove more about profiling
2024-06-20 15:04:22 +02:00
44fd13c742
Repurpose wrong datasource UID feature flag ( #89363 )
2024-06-20 12:56:39 +02:00
3bbc821131
Metrics: Add ability to disable classic histogram for HTTP metric ( #88315 )
...
metrics: Add ability to disable classic histogram for HTTP metric
Signed-off-by: Dave Henderson <dave.henderson@grafana.com>
2024-06-18 15:37:44 -04:00
50244ed4a1
Experimental Feature Toggle: databaseReadReplica ( #89232 )
...
This adds a version of the SQLStore that includes a ReadReplica. The primary DB can be accessed directly - from the caller's standpoint, there is no difference between the SQLStore and ReplStore unless they wish to explicitly call the ReadReplica() and use that for the DB sessions.
Currently only the stats service GetSystemStats and GetAdminStats are using the ReadReplica(); if it's misconfigured or if the databaseReadReplica feature flag is not turned on, it will fall back to the usual (SQLStore) behavior.
Testing requires a database and read replica - the replication should already be configured. I have been testing this locally with a docker mysql setup (https://medium.com/@vbabak/docker-mysql-master-slave-replication-setup-2ff553fceef2 ) and the following config:
[feature_toggles]
databaseReadReplica = true
[database]
type = mysql
name = grafana
user = grafana
password = password
host = 127.0.0.1:3306
[database_replica]
type = mysql
name = grafana
user = grafana
password = password
host = 127.0.0.1:3307
2024-06-18 11:07:15 -04:00
f0e63c6fd5
Doc: Update image rendering with HTTPS configuration ( #88505 )
...
* Doc: Update image rendering with HTTPS configuration
* add version
* Update docs/sources/setup-grafana/image-rendering/_index.md
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
---------
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
2024-06-18 16:11:59 +02:00
50dd95c09b
Chore: Remove betterPageScrolling
toggle ( #89339 )
...
* remove betterPageScrolling toggle
* add scrollTo test shim
2024-06-18 14:33:08 +01:00
ab2af9b8f7
Feature management: Add openSearchBackendFlowEnabled feature toggle ( #89208 )
2024-06-17 11:41:50 +02:00
2d0a3953c1
Transformations: Move transformation variables to general availability ( #89111 )
2024-06-13 07:18:21 -06:00
eb76ea47a0
Alerting: Add ha_reconnect_timeout configuration option ( #88823 )
...
* Docs: Update "Configure high availability" guide with ha_reconnect_timeout configuration
---------
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
2024-06-11 13:25:48 -04:00
84b638fb26
PinNavItems: Create feature toggle ( #88975 )
2024-06-10 13:40:03 +02:00
9a44296bc2
Auth: Add org to role mappings support to AzureAD/Entra integration ( #88861 )
...
* Added implementation and tests
* Add docs, simplify implementation
* Remove unused func
* Update docs
2024-06-10 12:08:30 +02:00
f3efd95bb4
Auth: Add org to role mappings support to Google integration ( #88891 )
...
* Auth: Implement org role mapping for google oauth provider
* Update docs
* Remove unused function
Co-authored-by: Misi <mgyongyosi@users.noreply.github.com>
2024-06-07 14:07:35 +02:00
5095ea84b2
added youtube video link ( #88901 )
...
* added youtube video link
* Update index.md
2024-06-07 12:42:19 +02:00
c9778c3332
AzureMonitor: Prometheus exemplars support ( #87742 )
...
* Update types
* Mark datasource as supporting traces
* Add logic to transform exemplar query to traces query
* Render appropriate editor
* Run trace query for exemplars
* Refactor out common functions
- Add function to retrieve first/default subscription
* Add route for trace exemplars
* Update logic to appropriately query exemplars
* Update traces query builder
* Update instance test
* Remove unneeded import
* Set traces pseudo data source
* Replace deprecated function calls
* Add helper for setting default traces query
* Don't show resource field for exemplars query
* When resetting operation ID for exemplars set query to default
- Update tests
* Update query header to appropriately set the service value
* Fix response frame creation and update tests
* Correctly select resource
* Convert subscriptionsApiVersion to const
* Add feature toggle
2024-06-06 17:53:17 +01:00
9704186017
Docs: Updating documentation for angular_support_enabled
( #88840 )
...
fixing docs
2024-06-06 07:15:21 -07:00
8690e97c92
Chore: disable proxy trailing slash keep by default ( #88842 )
...
disable proxy trailing slash keep by default
2024-06-06 16:28:11 +03:00
4f2a9a47f3
Auth: Add org to role mappings support to Okta integration ( #88770 )
...
* Add org mapping support to Okta
* Update docs and configs
* Prettier docs
* Apply suggestions from code review
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Improve tests
---------
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
2024-06-06 10:35:06 +02:00
8fb12cd63d
Remove invisible character in SAML certificate command ( #87057 )
...
Co-authored-by: Jack Baldry <jack.baldry@grafana.com>
2024-06-06 07:26:13 +01:00
023857625a
Elasticsearch: Remove enableElasticsearchBackendQuerying
feature toggle ( #88668 )
...
* wip
* Fix newly introduced any
* Remove toggle
* Remove unused code in LegacyQueryRunner
2024-06-05 17:03:29 +02:00
41e0430f83
K8s/Dashboards: Add frontend api to switch between implementations ( #88632 )
2024-06-05 17:34:23 +03:00
f28905f8c4
Auth: Add org to role mappings support to Gitlab integration ( #88751 )
...
* Conf: Add org_mapping and org_attribute_path to github and gitlab conf
* Gitlab: Implement org role mapping
* Update docs
---------
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
2024-06-05 16:15:53 +02:00
fe3e5917f1
Plugins: Preserve trailing slash in plugin proxy ( #86859 )
...
* Plugins: Preserve trailing slash in plugin proxy
* enable toggle by default
2024-06-05 13:36:14 +02:00
ec9aecd82b
Loki: remove query formatting ( #88636 )
...
* Loki: remove query formatting
* Loki formatting: remove feature flag
* chore: remove test
* Formatting
2024-06-05 12:46:28 +03:00
7bc7ae2e8c
Docs: Update feature toggle information for generic oauth ( #88740 )
2024-06-05 09:55:51 +02:00
cd3dab2736
Logs: Infinite scrolling in Explore enabled by default ( #87493 )
...
Logs: enable infinite scrolling
2024-06-04 18:23:20 +02:00
36c66e3e94
Update proxy/index.md ( #88261 )
...
* Update index.md
Specify proxy support is for SOCKS5 in Title. So it is clear this is not for TCP or HTTP proxy
* update title to match header
2024-06-04 09:08:53 -05:00
6b7e4b223d
Docs: Update the SAML role mapping docs with the new fields added ( #88529 )
...
* mention the auto_assign_org_role in saml role sync
* add role_values_viewer to docs
2024-06-04 15:45:37 +03:00
3f7017a471
Chore: Remove nestedFolderPicker
toggle ( #88660 )
...
remove nestedFolderPicker toggle
2024-06-04 12:16:12 +03:00
799ae387ff
Docs: Remove custom branding screenshot ( #88657 )
...
Update index.md
2024-06-04 10:34:17 +02:00
63ca00dd10
Docs: Add Installation YouTube Videos to documentation pages. ( #88465 )
...
* Added Installation video index.md
* Update index.md adding video for Debian and Ubuntu installs
* Update index.md adding install video in macOS
* Update index.md adding video to install RHEL or Fedora
* Update index.md adding install video for SUSE
* Update index.md adding video for Windows installer
* Update _index.md Updated from suggestions
* Update index.md from suggestions
* Update index.md from suggestions
* Update index.md from suggestions
* Update index.md from suggestions
* Update index.md from suggestions
* Update docs/sources/setup-grafana/installation/_index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Update docs/sources/setup-grafana/installation/debian/index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Update docs/sources/setup-grafana/installation/mac/index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Update docs/sources/setup-grafana/installation/redhat-rhel-fedora/index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Update docs/sources/setup-grafana/installation/suse-opensuse/index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
* Update docs/sources/setup-grafana/installation/windows/index.md
Applied Chris' suggestion
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
---------
Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
2024-06-03 11:38:02 -06:00