Skip to content

Commit

Permalink
AzureMonitor: Support querying any Resource for Logs queries (grafana…
Browse files Browse the repository at this point in the history
…#33879)

* wip

* wip:

* ui work for resource picker

* disable rows when others are selected

* resource picker open button

* Azure Monitor: Connect to backend with real data (grafana#34024)

* Connect to backend with real data

* Fixes from code review.

* WIP:Begin thinking about how to make queries with scope determined by the resource picker

* More fixes post code review.

* Fixes after rebasing

* Remove outdated todo

* AzureMonitor: Support any resource for Logs queries (grafana#33762)

* Apply button for resource picker

* scroll table body

* secondary cancel button

* loading state for nested rows

* Display resource components in picker button

* fix tests

* fix icons

* move route function

* Migrate from workspace to resource uri for log analytics (grafana#34337)

* reword backwards compat comment

* remove base url suffix

* fix lint error

* move migrations to seperate file

* cleanup

* update regex

* cleanup

* update plugin routes to use new azure auth type

* use AzureDataSourceInstanceSettings alias

Co-authored-by: Sarah Zinger <sarahzinger@users.noreply.github.com>
  • Loading branch information
joshhunt and sarahzinger authored May 19, 2021
1 parent c61dd82 commit 5dca9fd
Show file tree
Hide file tree
Showing 26 changed files with 1,311 additions and 315 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@
"file-saver": "2.0.2",
"history": "4.10.1",
"hoist-non-react-statics": "3.3.2",
"immer": "8.0.0",
"immutable": "3.8.2",
"is-hotkey": "0.1.6",
"jquery": "3.5.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/grafana-ui/src/components/Icon/Icon.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ const IconWrapper = ({ name }: { name: IconName }) => {
);
};

const icons = getAvailableIcons().sort((a, b) => a.localeCompare(b));
const icons = [...getAvailableIcons()];
icons.sort((a, b) => a.localeCompare(b));

export const IconsOverview = () => {
const [filter, setFilter] = useState('');
Expand Down
Loading

0 comments on commit 5dca9fd

Please sign in to comment.