Timezone of Firebase Analytics - firebase-analytics

I noticed that Firebase Analytics builds its daily reports based on irrelevant timezone (UTC+3 in my case)
How can I change time zone Firebase Analytics is building its reports?

As of 2021 May >Go to Project Settings >Integrations >Google Analytics :-

Analytics settings moved again. New icon is in top right and you'll find the time settings there again.

None of the answers provided worked for me. As of Nov, 2021, this is how you can change the reporting time zone:
1- In Firebase, go to Dashboard page then click on View more in Google Analytics found top right.
Show the location of the above options on Firebase
2- On Google Analytics page the previous button took you to, go to Admin settings, then select Property Settings.
Show the location of the above options on Google Analytics
3- You can then change the Reporting time zone under Property details
Show the Reporting time zone option on Property Settings

Firebase Analytics uses the timezone associated with the developer who created the Firebase Project.
To change the timezone you need to go in Project Settings, and change the time zone for each app.
See screenshots below.

See their documentation, it is present
Open your Firebase project.
Click Dashboard, then click (Settings).
Under Data Sharing, select the different ways in which you want to share your Analytics data.
Under Reporting, select the time zone and currency you want to use for your reports.

Related

Google Apps Script : retrieving Working Location from calendar

a recent feature in Google Calendar allows users to select a working location (home, office, other) for every working day.
Do you know if there is a way to retrieve this info using Apps Script ?
Thanks
Mathieu
Answer:
This is currently not available to the API.
Reference:
Here is a list of all the settings available to the API: Settings.
You can notice that many settings from https://calendar.google.com/calendar/u/0/r/settings are not available, including Enable working location. Since this is a very recent feature, it's not strange that it hasn't yet been added to the API.
There is a Feature Request:
Another user suggested this feature to be implemented in the Calendar API. You can click on the star next to the issue number to give more priority to the request and to receive updates:
https://issuetracker.google.com/199918380

Auto Refresh on Google Data Studio using Google Apps Script

I have connected a Data Studio report to our internal SQL data source and I've been searching for a way to auto refresh the report at certain intervals.
The only thing I found so far is the plugin called Data Studio Auto Refresh, which is not working.
Is there anyway to set up auto refresh on my Data Studio report using Google Apps Script?
The datastudio report is being projected to a large monitor in our office that's why I am trying any ways to auto refresh the report.
So since the report is being projected to our office monitor, as a workaround I tried creating a script and placing it to the developer tool console that will auto refresh the report at a chosen interval.
function refreshCases(){
$(".refreshIcon").click();
setTimeout(function(){
refreshCases();
},60000)
}
refreshCases();
Currently, there is no native / Apps Script based method to auto refresh an opened Data Studio report page.
You can vote for this feature at the official feature request tracker.
You can set data freshness for a data source when adding a new source.
You must be an editor of the data source to change this setting.
You can do this from within a report, or from the Data Sources home
page.
At the top, click Data freshness.
Under "Check for fresh data," select a new refresh option, if available.
Click SET DATA FRESHNESS.
You can set a different period of refresh depending on the source.
Here is the link to google documentation:
https://support.google.com/datastudio/answer/7020039?hl=en
Actually you can do it using Data Studio Auto Refresh, what you need to do is enable the plugin then refresh the Data Studio your working for the plugin to work. The interval depends on what interval you choose. I'm using the plugin and its working. :D

Missing configuration for Application File(s)

I'm new to ServiceNow and have been following the Learning Path on the Developers site. I created a Jakarta Instance and have been making my way through the tutorials. However, I have been consistently running into problems where I am missing configuration options when creating application files. I can't properly set up UI Policies, Events, Notifications, etc. because I'm missing specific options like being able to write scripts and more. I have switched to the "Advanced View" in the "Related Links" but to no avail. The account is an Administrator account and has not been modified at all since the creation of the Instance. Is there something I am missing? Other developers following this track with me currently do not have the same problems so I'm wondering if its account specific or something with configurations. I've attached my Notification file; even in Advanced View, it is missing "Send When" and "Advanced Condition" script.
An example of options not loading: Notification Application File Example
Double check that you are under the Advanced view for these sections.
These should be there for you, Send when and Advanced condition are under the When to send tab within the Advanced view.
If you don't see these under the Advanced view, you should be able to manually add the fields using the Form Designer.
Take a look at the documentation at Form design.
In short
Go to your instance and go to Settings Gear > Developer and change Application to Global
Right click the header and go to Configure > Form Design.
Verify you've selected the Advanced view
Drag the missing fields to the form.
Click Save
Change the Application back to the one you are working with

Chrome Web Store extension download count

I made an app as an extension on Chrome Web Store. I would like to know the download count for my extension.
From the developer's dashboard I can access to Statistics, but the graphic starts in 21/5/2015 (three months ago) and the CSV file too.
How can I see the complete download history?
Creating a Google Analytics account using it to track installs is probably a pretty close estimate of downloads.
Once you create your Analytics account, you create a new property with the default URL being your extension page. For example, https://chrome.google.com/webstore/detail/<extension-name>/<extension-id>
Once you get your tracking id, add that to the edit page for your extension in the webstore developer dashboard.
Once you have done that go to the Analytics admin panel and on the right click Goals. Add a new Custom goal of Destination type for the RegEx match of /track_install/.*.
You can now add a graph of this goal completion to track installs.
Here is a comparison of the data collected by Google Analytics and the Statistics in the webstore developer dashboard.

Chrome store statistics

I'm building a funnel for our chrome extension using Google analytics.
When it comes to the chrome store stats at the beginning of the funnel, the data the developer's dashboard provides is limited (impressions & installations only).
I'm looking for data such as referrals to my extension page, the amount of people who clicked on the extension page but didn't install it (not impressions).
Can this data be found in the dashboard or GA? where? and if not, how can I otherwise track this?
Thank you very much!
Efrat
You can add a Google Analytics ID to your projects from the Developer Dashboard. Create a new account in Analytics, click on "Edit" next to your project in the Chrome Developer Dashboard, and add the ID near the bottom of the page. (I'm not sure how new this feature is, but it is a little hard to find).
Inside Analytics, I have a goal set up for the URL /track_install/detail/ext/free/{% my extension id %}, which tracks installations. This shows the number of views without an install in the goal funnel. Referrals are available like any other Analytics page. GA is much more granular and updates in real time instead of once a day like the dashboard.