RSS feeds your EventCatalog
Added in
eventcatalog@2.21.1
EventCatalog supports RSS feeds for your messages, services, domains and flows.
How to enable RSS feeds
RSS feeds are disabled by default.
To enable RSS feeds, you need to add the rss
property to the eventcatalog.config.js
file.
//.. rest of file
rss: {
// Turn rss on or off
enabled: true,
// The number of items to return in each feed (default 15)
limit: 20
},
Items returned from the RSS feed are ordered by the last updated date of the file.
When you enable the RSS feed you will have RRS feeds at the following paths:
Messages
Returns the latest messages that have changed in your Catalog.
/rss/events/rss.xml
- RSS feed for events in EventCatalog
- View events RSS feed demo
/rss/commands/rss.xml
- RSS feed for commands in EventCatalog
- View commands RSS feed demo
/rss/queries/rss.xml
- RSS feed for queries in EventCatalog
- View queries RSS feed demo
Services and Domains
Returns the latest services and domains that have changed in your Catalog.
/rss/services/rss.xml
- RSS feed for services in EventCatalog
- View services RSS feed demo
/rss/domains/rss.xml
- RSS feed for domains in EventCatalog
- View domains RSS feed demo
Flows
Returns the latest flows that have changed in your Catalog.
/rss/flows/rss.xml
- RSS feed for flows in EventCatalog
- View flows RSS feed demo
Everything
Returns the latest items that have changed in your Catalog.
/rss/all/rss.xml
- Returns all items from all feeds
- View all RSS feed demo