Failed Runs Monitor avatar
Failed Runs Monitor
Try for free

No credit card required

View all Actors
Failed Runs Monitor

Failed Runs Monitor

jannovotny/failed-runs-monitor
Try for free

No credit card required

This actor will let you know about failed or time outed runs of your actors and tasks via Slack or email. It can also notice you about successful runs with empty dataset, check JSON schema of dataset items, or about runs that are running for too long.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "config": [
11        {
12            "actorId": "apify/web-scraper",
13            "minDatasetItems": 0,
14            "maxRunTimeSecs": 3600
15        }
16    ]
17};
18
19(async () => {
20    // Run the Actor and wait for it to finish
21    const run = await client.actor("jannovotny/failed-runs-monitor").call(input);
22
23    // Fetch and print Actor results from the run's dataset (if any)
24    console.log('Results from dataset');
25    const { items } = await client.dataset(run.defaultDatasetId).listItems();
26    items.forEach((item) => {
27        console.dir(item);
28    });
29})();
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 99.9% runs succeeded
  • Created in Mar 2019
  • Modified over 1 year ago
Categories