function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
meyerdmeyerd 

@future monitoring

How can I monitor the total number future method calls used versus the limit of

No more than 200 method calls per Salesforce license per 24 hours?

 

 

 

 

 

cheenathcheenath

Setup->Monitoring->Apex Jobs

 

will show you the list of apex jobs. That is the only monitoring info available.

 

 

MikeHonchoMikeHoncho
So if you have an org with say 5,000 users you have to go into Apex Jobs and count each job within the past 24 hours to see if you're close to 1,000,000 calls?
cheenathcheenath

Ya, this information is not available in the setup pages. Sounds like a good feature

to have. Please add it to ideas.salesforce.com.

 

In the mean time, you can use the api to find out how many async apex jobs are

there using the following query:

 

sforce.connection.query("select count() from AsyncApexJob where createdDate = today");

 

 

 

 

Chinu_SFDCChinu_SFDC
https://help.salesforce.com/articleView?id=code_apex_job.htm&type=5