I can't use firebase because of quota (however I didn't reach it) - firebase

EDIT: I really don't know what just happened right now but I was still looking over the dashboard for some other infos and the statistics just reseted! I'm sorry for posting! For anyone wondering, I think the quotas reset at 10 AM (EET)
I'm working on a work certificate in informatics and I decided to give Firebase a try with this project. I love it :)
Two days ago, when I started, everything was good. Yesterday at 8 PM I think I reached the quota for bandwidth (1GB) so I said, "ok no problem, I'll work on it tomorrow". Now today when I opened Firebase Console I still get this error in Storage: "You have exceeded your quota for this project. Please upgrade your plan."
I will leave here a few screenshots with my statistics. Can anyone help me figure out why my limits did not reset? PS. The error first showed up at maybe 8 PM yesterday and now it's 10 AM. It's another day but 24 hours didn't pass. Is this the real reason? I read on another StackOverflow question that it resets daily so I thought that at 12 AM it resets.
Thanks in advance!
You can see in this picture that on 15 December (yesterday) I have 1GB hit but on 16 December (today) is 0.
However, if I set the calendar to show me "Today" instead of "Current billing period" it shows me that the bandwidth was used today
So my question is, the quota is working on a 24 hours base or daily base?

read the fine print ...it reads 1 GB per day for Storage.
it does not tell when it resets - and might eventually depend on the zone & region.
try to use smaller files for testing purposes.

Related

Azure Time Series Insights Gen2 slower than preview?

We have a couple of environments still running Time Series Insights Preview version. This is really fast and we are really satisfied by it. However, new environments really seem a lot slower with the official release. Warm path extraction is a lot slower, but still doable, while cold path extraction becomes unbearable.
EDIT: We need to add &storeType=WarmStore if we would like to query warm data. Cool! This works really fast again! Question about cold store still persists:
It is hard to compare the different environments, because the datasets are not exactly the same, but for our new environment we have about 4.5 TB sensor data imported in TSI.
The following screenshot shows a query that tries to retrieve one minute of data for one device (each device only sends data each 10 seconds) in the far past of 2018. However, the server returns the call after 30 seconds with a continuationtoken, saying it couldn't retrieve all the 6 values in time. Sometimes it manages to return all 6 of the values, but it still takes 30 seconds.
My internet download speed, while performing the query, was over 80 Mb per second, so that shouldn't be an issue either.
Is this something we should be worried about in the new release?
please submit a support ticket through the Azure portal with all of these details and the product team will investigate.

How can I change the graph interval in Live Metrics Stream

The current interval of 1 second and max of 60 seconds is too small and issues may be missed.
When viewing the live metrics stream page of Application Insights the interval on all graphs are 1 second, and it only goes up to 60 seconds. I am trying to use this as a monitoring page to keep an eye on recently released or updated function apps. For this I need to be able to change the interval to view more data at once without having to keep watch on it. Right now if we don't keep watch on it every minute we may miss something important.
I have searched the Microsoft documentation, the git repository, stackoverflow, and various other sites trying to find my answer but the only thing I found was from over 4 years ago and I would hope that this has changed since then.
Live Metrics Stream allows to peek at what's going one right now with 1 second resolution. But it doesn't persist data anywhere. So, data is only stored in UX (browser) and right now only for 60 seconds.
For bigger intervals it might make sense to refer to other Application Insights experiences (including Analytics).

firebase dashboard doesn't show admob revenue

I know stackoverflow is not helpdesk for google products, but google helpdesk itself is not helpful so maybe someone else here shared the same problem and can help me to solve.
I've an app published on google play for the past 3 months
all the app stuff is properly connected, firebase->admob->google play console->adsense... everything was done during the previous 3 months
but last week, without any reason, without any update in the app or any settings change in these tools, firebase dashboard stopped showing the admob revenue
as you can see at this graph, it considers from 16th to 22th nov my app just made 0.17 revenue on admob
but on admob itself i've
the blue bars are admob revenue while the green is in-app purchases, so it keeps registering, the admob graph doesn't show the sum of admob revenue but doesn't need to be a genius to see its something around 70.00 way more than 0.17
I've checked in firebase->events tab and all events like ad_click ad_reward ad_impression are still being counted
does anyone have any idea about what might be?
AGAIN: THIS WORKED FINE FOR ABOUT 3 MONTHS STOPPED WORKING LAST WEEK FOR A REASON I DONT KNOW
i asked for support on firebase but the guy just pointed me a couple of guides which i had already followed and didn't solve my problem.
https://support.google.com/firebase/answer/7378163?hl=en
https://support.google.com/firebase/answer/6387949
After 22 days I finally got google to admit what i knew since the begining:
IT'S A BUG ON FIREBASE
the link he sent is: https://firebase.google.com/support/releases
Again his is incoherent, if it is an error between admob->firebase data exchange what kind of sdk release will fix it? and why should i have an eye on it?
this interface is invisible an inacessible to all devs... as should be any fix on it
Anyway, if anyone else is having a similar problem that is the final answer from google

Is it possible to send date of transaction (not today) using Google Measurement Protocol?

I build application which pull sales data from Amazon and push it to Google Analytics.
I'm "hitting" transaction to Analytics and it's all works fine, the problem is that in Amazon the sales data updated after 48 hours (maximum) so I need to pull the report two days later.
Does anyone know if there's a way to send the date of the transaction? Can't find it in the Measurement Protocol API.
Thank you all, Peace and love :)
Not really. You have the queue time parameter (offset between current time and time the data was tracked), but as it says in the documentation:
Values greater than four hours may lead to hits not being processed.
"May" indicates that this is not a completely fixed limit but I'm pretty sure that 48 hours are not covered (Philipp Walton, a Google engineer who frequents SO once mentioned that the queue time limit is somehow related to timezones and rollover between days, so I'd guess that two days are way to long).
Apart from that there is as of yet no way to set a date for a hit.
You can try posting a Custom Dimension for each event you send, where the dimension is formatted to the date-time:-
e.g.
&t=event&cd1=20170423081321&cm1=24 etc
Only problem is: when you generate a GA custom report, the values are accumulated per day. If anyone knows how to get round that, would love to hear it!

ASP.net / VB.net / SQL Server : change variables without page request

I'm stuck with building my own, simple browser game.
My program: you can upgrade your tools which allow you to gain more points per hour.
My problem:
So for example a user logs in and upgrades his tools from 0 to 1 which would double the amount of points gained. But upgrading takes 2 hours to complete. I don't expect my user to be online for 2 hours so I save the time he was last seen in an SQL table. Now when 2 hours have passed the amount of points gained need to be doubled but it's very possible that the user doesn't visit the page for another 10 hours. So my current program keeps adding 1 point per hour until the user visits the page. So in this case he'd have 12 points. But it needs to multiply after 2 hours so he needs to have 22 points.
Another, maybe simpler example is a maximum amount of points. Let's say the max is 10 points. But the user stays offline for 15 hours which means he'd earn 15 points at a rate of 1pnt/hr.
I don't have any functionally code yet because I want to know if something like this is actually possible and how for example cityVille(facebook) does it.
Now my question:
Can anyone give me a tip or give me some info on how to get started at this or at least give me the name of what I'm searching for? I've tried google'ing things like "offline database interactions" or "changing variables without user request" but nothing useful comes up.
Thanks in advance,
BlaDrzz.
You can schedule jobs with SQL server. These jobs can run at whatever frequency you like.
http://technet.microsoft.com/en-us/library/ms191439.aspx

Resources