analytics

Reporting URL of downloads in Data Studio when using Google Analytics 4 automatic enhanced measurement events?

こ雲淡風輕ζ 提交于 2021-02-08 23:36:54
问题 I have setup a new Google Analytics 4 property and have enabled enhanced tracking, which records all downloads automatically. When using Google Data Studio, I can see 'file_download' events (so it's definitely working) and use this data to build my report. I need to create a report that shows which files were downloaded each month for a specific page only. It's really easy to get the total number of downloads which occurred on that page, however, I can't for the life of me find any way to

Application Insight Analytics - Query Client Browser and Device

為{幸葍}努か 提交于 2021-02-07 18:08:59
问题 anyone knows how to query Azure App Insight to get analytics on client devices ? or OS ? I seem to be able to get good stats on Client countries but not devices 回答1: You should have used client_CountryOrRegion in your existing queries, replace it with client_Browser Or other required data models. Here are some queries I used to see summary on browsers.. pageViews | summarize count() by client_Browser browserTimings | summarize avg(networkDuration), avg(processingDuration), avg(totalDuration)

How get acess to data Audiences of Firebase Analytics

随声附和 提交于 2021-02-05 09:29:37
问题 I need any log or data of Audiences by Big Query, how to consult this in a non-manual way through events? I need firebase analytics groups and audience data 回答1: When you connect the Analytics from your Firebase project to BigQuery, only the raw events are exported to BigQuery. Neither audience definitions, not audience membership are exported to BigQuery. So if you want to see audiences in your BigQuery based reports, you'll have to (re)create both the audience definitions and memberships

Matplotlib: Add color legend to scatter plot

丶灬走出姿态 提交于 2021-01-29 14:21:35
问题 Have table as: import matplotlib.pyplot as plt import pandas as pd import numpy as np list_1=[['AU',152,474.0], ['CA',440,482.0], ['DE',250,564.0,], ['ES',707,549.0,], ['FR',1435,551.0,], ['GB',731,555.0,], ['IT',979,600.0,], ['NDF',45041,357.0,], ['NL',247,542.0,], ['PT',83,462.0,], ['US',20095,513.0,], ['other',3655,526.0,]] labels=['country_destination','num_users','avg_hours_spend'] df=pd.DataFrame(list_1,columns=labels) df=df.set_index('country_destination') df country_destination num

Jenkins build time by node

情到浓时终转凉″ 提交于 2021-01-29 11:14:26
问题 As part of identifying which of our Jenkins nodes might be candidates for decommissioning, I'm trying to generate a summary of nodes and their build times for different jobs. The closest I've got is the "Build time trend" page for each job, but that just lists the jobs, their status and their build time. What isn't shown is which node it was run on, nor is it grouped by Success, Unstable or Failed status. What I would like to do is to generate a report, where for each job, every node a which

Finding data trendlines with Ruby?

久未见 提交于 2021-01-29 10:31:21
问题 I have a dataset with user session numbers from my site which looks like: page_1 = [4,2,4,1,2,6,3,2,1,6,2,7,0,0,0] page_2 = [6,3,2,3,5,7,9,3,1,6,1,6,2,7,8] ... And so on. I would like to find out whether the page has a positive or negative trendline in terms of growth, however I would also like to get the pages that are growing/falling beyond a certain threshold. Python has a ton of solutions and libs for this kind of task, yet Ruby has only one gem (trendline) which has no code in it. Before

How does one redistribute a calculated total across a range of dates in Power BI?

耗尽温柔 提交于 2021-01-29 07:07:19
问题 My firm is trying to forecast what the business landscape will look like after the current resource shortages (mainly labor, in our instance) return to normal. To that end, I have made a report that I want to use to show how our business forecasting needs to change relative to the length of time that we are accumulating backlogged orders that we cannot fill. In the image you can see the original projection forecast one both the line graph and the table. Forecast 2020 = CALCULATE(SUM(Orders[+5

How to store metrics for my web app?

主宰稳场 提交于 2021-01-28 01:02:52
问题 I need to store more metrics for my web app. User behavior and other conditions needs to be tracked over time and compared. Some records have a timestamp associated with it, some don't. So an on-demand query for metrics might not be suitable all the time. I think what is needed is a snapshot (daily?) of certain analytics queries (via a cronjob?) that I write and then stored somewhere (DB? file?). Right now I'm worried about the size of these snapshots if I were to save them in the DB. How

WSO2 3.2.0 : Analytics and Dashboard, Cannot borrow client on SSL port 7712 + Required field 'message' was not present

主宰稳场 提交于 2021-01-07 03:52:44
问题 I installed WSO2 3.2.0 recently : OS : Debian 9 WSO2 API Manager 3.2.0 from the official repository WSO2 Analytics 3.2.0 from the zip archive Everything running on the same machine with the same domain name Valid certificate for this domain name, let's say wso2.mydomain.com I tried to install Analytics following the documentation, but I think there is a communication issue between analytics worker and API Manager. When I try to go on my dashboard here, all I got is a blue screen. Here are my

Analytics in iOS App - Request user consent

核能气质少年 提交于 2021-01-02 07:54:34
问题 I'm debating whether to include (Google) analytics in my iOS app. Obviously I would like the analytics data, but my concern is whether to simple advise the user that data is being collected, or to specifically request their consent. Is specific consent required, or can one simple inform the user via a loading page or website privacy policy page? Apple has a rule on consent, but does this necessarily translate into displaying a dialogue box with a Agree/Disagree buttons? Thanks! 回答1: As I