message count, message added and schedule count all are same , while upgrading to wildfly21 - ejb

message count is not changing all are same.
message count should reduce as we consume the messages

Related

Not getting all events with session info

Does anybody know how to be sure that all the events get the 'ga_session_number' and 'ga_session_id' parameters with firebase?
Right now I'm getting only a 3% of the total events with those parameters and it should be on every event. Last sdk version is loaded on the app.
Thanks in advance for the help
The query I'm making is the following:
SELECT
user_pseudo_id, event.value.int_value session,
MIN(event_previous_timestamp), MAX(event_previous_timestamp),
MAX(event_timestamp) - MIN(event_timestamp),
COUNT(*)
FROM
`table`,
UNNEST(event_params) AS event
WHERE
event.key = 'ga_session_number'
GROUP BY
1, 2
ORDER BY
2
The total event rows on the table are more than 3 million, and getting only 100k with the query.
UPDATE:
Firebase support team has updated the analitycs SDK solving this issue.

why does google analytics showing only 99999 results in Top Events reports?

today , one of my ga profile showing only 99999 results in Top Events reports , not sure whether it's because one thing i did yesterday .
yesterday , i run google v4 api in R, by the package of googleanalyticsR,and getting quota error :
Quota Error: The number of recent failed writes is too high.
so , my questing is , if i can only get 99999 results in the profile from now on ?
many thanks.
The Analytics Core Reporting API returns a maximum of 10,000 rows per request but you can use 'max-results' parameter to specify the maximum number of rows to include in the response in combination with 'start-index' to retrieve a subset of elements:
https://developers.google.com/analytics/devguides/reporting/core/v3/reference#maxResults

SAP: RPTCORTMAIL doesn't send a mail

I tried to use the Report RPTCORTMAIL but no matter what I choose no mail is send.
I chose a period and a person with errors but the protocol shows "0 mails send".
Even when I don't enter a person nothing happens.
While debugging I saw that the table PERNR_TAB_LANG is empty at the moment the receivers should be picked.
Am I doing something wrong? I'm thankful for every hint.
This report is used to tell employees to correct their errors from time evaluation (via IT2011). There are several reasons no employees are selected:
1) B1 Cluster timestamp is higher than last run of report (which means there no current errors to be sent)
2) There are no errors in B2 Cluster (check FEHLER table)

Get complete data of a transaction in Stripe

How can I get the complete information of transaction in Stripe?
For the fields which I filled at the Charge::create(), I want to get all the details: number,cvc,exp_month,exp_year ect.
I can get amount and id by using this server call
BalanceTransaction::retrieve($data['transactionID']);
Thanks.
You can use
charge:retrive("ch_%yourid");
you give you complete charge data , but give you last 4 digits of card number only.

How do I get the current count of a metric from Graphite

I am trying to get the value of a metric 'activelogins' from Graphite. I increment the value by 1 every time a user logs in and decrements it when he logs out. I need to show the current number of 'activelogins' in my dashboard.
Querying using
summarize(stats_counts.user.activelogins,"99years", "sum")
as expected just gives me the sum and not the current which I actually want.
How do I get the current count of 'activelogins' from Graphite ?
I imagine you could use the absolute of the derivative of stats_counts.user.activelogins and than summarize this, as in absolute(derivative(stats_counts.user.activelogins)).

Resources