How do I showcase a query that showcases the user stories under a given feature on my ADO Dashboard - azure-devops

I keep getting the erorr that it is a hiearchal query and it isn't possible to create it as a widget on the ADO Dashboard.
I tried manually adding each one but I realized for some other features there's around 70 user stories which in the long run isn't efficient at all.
I want to create a query that I am able to showcase the user stories under a given feature and be able to put it on my dashboard without having issues. Thank you!

To get user stories under a given feature and display the results on the dashboard, you can refer to the following method.
Create a shared query as shown below. Parent is the work item id of your feature.
Add a widget named Query results to your dashboard. Select the query created from the first step at the Query box.
Then you can see related user stories in the widget.

Related

Difference between export csv from facebook ui and getting using InsightAPI

I'm getting data about my ads using InsightAPI.
(level ads, breakdown country)
Sometimes the column "Results" (clicks) has different values in comparison with the data that was exported using "Reports/Export to Excel" on Facebook Ads Manager UI.
Any explanation why it is different?
Thanks a lot!
First one is: report downloaded using API
Second one is: get report using facebook ui - reports/export as csv
As the Business Manager is just a WYSIWYG-API-query builder, the difference may occur from different attribution windows set in your API query and in the Business Manager.
Do you specify an attribution window in your query or did you change the attribution window in your business manager?

Is it possible to view a list of all documents written by myself in Confluence?

Alright, I wrote many documents in Confluence. Now I want to reread one of my document, but it's in a long list of documents written by my team.
I think it would be faster to find the document if I can view a list of all the documents written by myself, but is it possible? How?
Go to "People" link in your Confluence site and search for user name. Click on your name returned in search result and it will take you to your "Activity" page. Below link is from Confluence latest version.
https://confluence.atlassian.com/doc/search-the-people-directory-201706.html#SearchthePeopleDirectory-Searchforpeople
In a Confluence page click the + icon and select Other macros:
Select the Content by User macro
Add your username and select yourself.
Then save and view the page. You should see a list of every page created by you (or any user entered).
Note: This will also show you images uploaded seperately, so you may have to filter a bit.

Google Analytics API, filter by parameter

Our app uses the Google Analytics Rest API. We'd like to get the number of page views generated by different links to the site.
For example, one link to our site might be:
http://oursite.com?linknum=12345
and another might be:
http://oursite.com?linknum=23456
We'd like to track the number of page views by all visitors who click on each link, so we need a way to filter by parameter.
So far, we just get the number of page views for all visitors without any filters:
curl 'https://www.googleapis.com/analytics/v3/data/ga?ids=ga:(our id) &metrics=ga:pageviews&start-date=2014-4-26&end-date=2011-12-08&access_token=(our access token)'
The best way to learn the API is to use the query explorer at
http://ga-dev-tools.appspot.com/explorer/
For your analysis, add dimension=ga:pagePath and sort=ga:pageviews.
In addition, you could ask for pages which match a filter expression.
For example filter=ga:pagePath=#linknum to only include pages with linknum.

Facebook Timeline Aggregations Filters not working

I'm creating aggregations and setting a filter in the advanced section.
eg: x.category == Style
where x is an object defined in the open graph section of my app and catgory is a custom variable defined for that object
These aggregations don't seem to work. I'm definitely passing the category variable to facebook via the og tags. I can validate that because I use {x.category} in the caption field and it shows the right category. I've changed the aggregation to show actions and objects and neither seem to work. The aggregation box would just not show at all.
Any help is appreciated.
We reached out to the Facebook team and apparently this is a critical bug and they're working on a fix.

Data api ga, how to get data for multiple pages?

I'm using Data api of google to get data in my filters, I'm getting data for page path for single page and I'm stuck at multiple pages. I followed document and passed following query to filters,
$filter = 'ga:pagePath=~/about_us.htm,ga:pagePath=~/index.htm';
Is there anything wrong in it? Can someone please help in it.
You need to add $dimensions='ga:pagePath' to individually query the two pages.
I don't see anything wrong with it but it's always good to run your data api calls through the Data Feed Query Explorer. It will show you if it is getting results and show you the proper url-encoded query.
I ran a query using the Data Feed Query Explorer on my site that was similar to yours and had no problems.