source_monitor 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.rubocop.yml +12 -0
- data/.ruby-version +1 -0
- data/AGENTS.md +132 -0
- data/CHANGELOG.md +66 -0
- data/CONTRIBUTING.md +31 -0
- data/Gemfile +30 -0
- data/Gemfile.lock +411 -0
- data/MIT-LICENSE +20 -0
- data/README.md +108 -0
- data/Rakefile +8 -0
- data/app/assets/builds/.keep +0 -0
- data/app/assets/config/source_monitor_manifest.js +4 -0
- data/app/assets/images/source_monitor/.keep +0 -0
- data/app/assets/javascripts/source_monitor/application.js +20 -0
- data/app/assets/javascripts/source_monitor/controllers/async_submit_controller.js +36 -0
- data/app/assets/javascripts/source_monitor/controllers/dropdown_controller.js +109 -0
- data/app/assets/javascripts/source_monitor/controllers/modal_controller.js +56 -0
- data/app/assets/javascripts/source_monitor/controllers/notification_controller.js +53 -0
- data/app/assets/javascripts/source_monitor/turbo_actions.js +13 -0
- data/app/assets/stylesheets/source_monitor/application.tailwind.css +13 -0
- data/app/assets/svgs/source_monitor/.keep +0 -0
- data/app/controllers/concerns/.keep +0 -0
- data/app/controllers/concerns/source_monitor/sanitizes_search_params.rb +81 -0
- data/app/controllers/source_monitor/application_controller.rb +62 -0
- data/app/controllers/source_monitor/dashboard_controller.rb +27 -0
- data/app/controllers/source_monitor/fetch_logs_controller.rb +9 -0
- data/app/controllers/source_monitor/health_controller.rb +10 -0
- data/app/controllers/source_monitor/items_controller.rb +116 -0
- data/app/controllers/source_monitor/logs_controller.rb +15 -0
- data/app/controllers/source_monitor/scrape_logs_controller.rb +9 -0
- data/app/controllers/source_monitor/source_bulk_scrapes_controller.rb +35 -0
- data/app/controllers/source_monitor/source_fetches_controller.rb +22 -0
- data/app/controllers/source_monitor/source_health_checks_controller.rb +34 -0
- data/app/controllers/source_monitor/source_health_resets_controller.rb +27 -0
- data/app/controllers/source_monitor/source_retries_controller.rb +22 -0
- data/app/controllers/source_monitor/source_turbo_responses.rb +115 -0
- data/app/controllers/source_monitor/sources_controller.rb +179 -0
- data/app/helpers/source_monitor/application_helper.rb +327 -0
- data/app/jobs/source_monitor/application_job.rb +13 -0
- data/app/jobs/source_monitor/fetch_feed_job.rb +117 -0
- data/app/jobs/source_monitor/item_cleanup_job.rb +48 -0
- data/app/jobs/source_monitor/log_cleanup_job.rb +47 -0
- data/app/jobs/source_monitor/schedule_fetches_job.rb +29 -0
- data/app/jobs/source_monitor/scrape_item_job.rb +47 -0
- data/app/jobs/source_monitor/source_health_check_job.rb +77 -0
- data/app/mailers/source_monitor/application_mailer.rb +17 -0
- data/app/models/concerns/.keep +0 -0
- data/app/models/concerns/source_monitor/loggable.rb +18 -0
- data/app/models/source_monitor/application_record.rb +5 -0
- data/app/models/source_monitor/fetch_log.rb +31 -0
- data/app/models/source_monitor/health_check_log.rb +28 -0
- data/app/models/source_monitor/item.rb +102 -0
- data/app/models/source_monitor/item_content.rb +11 -0
- data/app/models/source_monitor/log_entry.rb +56 -0
- data/app/models/source_monitor/scrape_log.rb +31 -0
- data/app/models/source_monitor/source.rb +115 -0
- data/app/views/layouts/source_monitor/application.html.erb +54 -0
- data/app/views/source_monitor/dashboard/_fetch_schedule.html.erb +90 -0
- data/app/views/source_monitor/dashboard/_job_metrics.html.erb +82 -0
- data/app/views/source_monitor/dashboard/_recent_activity.html.erb +39 -0
- data/app/views/source_monitor/dashboard/_stat_card.html.erb +6 -0
- data/app/views/source_monitor/dashboard/_stats.html.erb +9 -0
- data/app/views/source_monitor/dashboard/index.html.erb +48 -0
- data/app/views/source_monitor/fetch_logs/show.html.erb +90 -0
- data/app/views/source_monitor/items/_details.html.erb +234 -0
- data/app/views/source_monitor/items/_details_wrapper.html.erb +3 -0
- data/app/views/source_monitor/items/index.html.erb +147 -0
- data/app/views/source_monitor/items/show.html.erb +3 -0
- data/app/views/source_monitor/logs/index.html.erb +208 -0
- data/app/views/source_monitor/scrape_logs/show.html.erb +73 -0
- data/app/views/source_monitor/shared/_toast.html.erb +34 -0
- data/app/views/source_monitor/sources/_bulk_scrape_form.html.erb +64 -0
- data/app/views/source_monitor/sources/_bulk_scrape_modal.html.erb +53 -0
- data/app/views/source_monitor/sources/_details.html.erb +302 -0
- data/app/views/source_monitor/sources/_details_wrapper.html.erb +3 -0
- data/app/views/source_monitor/sources/_empty_state_row.html.erb +5 -0
- data/app/views/source_monitor/sources/_fetch_interval_heatmap.html.erb +46 -0
- data/app/views/source_monitor/sources/_form.html.erb +143 -0
- data/app/views/source_monitor/sources/_health_status_badge.html.erb +46 -0
- data/app/views/source_monitor/sources/_row.html.erb +102 -0
- data/app/views/source_monitor/sources/edit.html.erb +28 -0
- data/app/views/source_monitor/sources/index.html.erb +153 -0
- data/app/views/source_monitor/sources/new.html.erb +22 -0
- data/app/views/source_monitor/sources/show.html.erb +3 -0
- data/config/coverage_baseline.json +2010 -0
- data/config/initializers/feedjira.rb +19 -0
- data/config/routes.rb +18 -0
- data/config/tailwind.config.js +17 -0
- data/db/migrate/20241008120000_create_source_monitor_sources.rb +40 -0
- data/db/migrate/20241008121000_create_source_monitor_items.rb +44 -0
- data/db/migrate/20241008122000_create_source_monitor_fetch_logs.rb +32 -0
- data/db/migrate/20241008123000_create_source_monitor_scrape_logs.rb +25 -0
- data/db/migrate/20251008183000_change_fetch_interval_to_minutes.rb +23 -0
- data/db/migrate/20251009090000_create_source_monitor_item_contents.rb +38 -0
- data/db/migrate/20251009103000_add_feed_content_readability_to_sources.rb +5 -0
- data/db/migrate/20251010090000_add_adaptive_fetching_toggle_to_sources.rb +7 -0
- data/db/migrate/20251010123000_add_deleted_at_to_source_monitor_items.rb +8 -0
- data/db/migrate/20251010153000_add_type_to_source_monitor_sources.rb +8 -0
- data/db/migrate/20251010154500_add_fetch_status_to_source_monitor_sources.rb +9 -0
- data/db/migrate/20251010160000_create_solid_cable_messages.rb +16 -0
- data/db/migrate/20251011090000_add_fetch_retry_state_to_sources.rb +14 -0
- data/db/migrate/20251012090000_add_health_fields_to_sources.rb +17 -0
- data/db/migrate/20251012100000_optimize_source_monitor_database_performance.rb +13 -0
- data/db/migrate/20251014064947_add_not_null_constraints_to_items.rb +30 -0
- data/db/migrate/20251014171659_add_performance_indexes.rb +29 -0
- data/db/migrate/20251014172525_add_fetch_status_check_constraint.rb +18 -0
- data/db/migrate/20251015100000_create_source_monitor_log_entries.rb +89 -0
- data/db/migrate/20251022100000_create_source_monitor_health_check_logs.rb +22 -0
- data/db/migrate/20251108120116_refresh_fetch_status_constraint.rb +29 -0
- data/docs/configuration.md +170 -0
- data/docs/deployment.md +63 -0
- data/docs/gh-cli-workflow.md +44 -0
- data/docs/installation.md +144 -0
- data/docs/troubleshooting.md +76 -0
- data/eslint.config.mjs +27 -0
- data/lib/generators/source_monitor/install/install_generator.rb +59 -0
- data/lib/generators/source_monitor/install/templates/source_monitor.rb.tt +155 -0
- data/lib/source_monitor/analytics/source_activity_rates.rb +53 -0
- data/lib/source_monitor/analytics/source_fetch_interval_distribution.rb +57 -0
- data/lib/source_monitor/analytics/sources_index_metrics.rb +92 -0
- data/lib/source_monitor/assets/bundler.rb +49 -0
- data/lib/source_monitor/assets.rb +6 -0
- data/lib/source_monitor/configuration.rb +654 -0
- data/lib/source_monitor/dashboard/queries.rb +356 -0
- data/lib/source_monitor/dashboard/quick_action.rb +7 -0
- data/lib/source_monitor/dashboard/quick_actions_presenter.rb +26 -0
- data/lib/source_monitor/dashboard/recent_activity.rb +30 -0
- data/lib/source_monitor/dashboard/recent_activity_presenter.rb +77 -0
- data/lib/source_monitor/dashboard/turbo_broadcaster.rb +87 -0
- data/lib/source_monitor/dashboard/upcoming_fetch_schedule.rb +126 -0
- data/lib/source_monitor/engine.rb +107 -0
- data/lib/source_monitor/events.rb +110 -0
- data/lib/source_monitor/feedjira_extensions.rb +103 -0
- data/lib/source_monitor/fetching/advisory_lock.rb +54 -0
- data/lib/source_monitor/fetching/completion/event_publisher.rb +22 -0
- data/lib/source_monitor/fetching/completion/follow_up_handler.rb +37 -0
- data/lib/source_monitor/fetching/completion/retention_handler.rb +30 -0
- data/lib/source_monitor/fetching/feed_fetcher.rb +627 -0
- data/lib/source_monitor/fetching/fetch_error.rb +88 -0
- data/lib/source_monitor/fetching/fetch_runner.rb +142 -0
- data/lib/source_monitor/fetching/retry_policy.rb +85 -0
- data/lib/source_monitor/fetching/stalled_fetch_reconciler.rb +146 -0
- data/lib/source_monitor/health/source_health_check.rb +100 -0
- data/lib/source_monitor/health/source_health_monitor.rb +210 -0
- data/lib/source_monitor/health/source_health_reset.rb +68 -0
- data/lib/source_monitor/health.rb +46 -0
- data/lib/source_monitor/http.rb +85 -0
- data/lib/source_monitor/instrumentation.rb +52 -0
- data/lib/source_monitor/items/item_creator.rb +601 -0
- data/lib/source_monitor/items/retention_pruner.rb +146 -0
- data/lib/source_monitor/items/retention_strategies/destroy.rb +26 -0
- data/lib/source_monitor/items/retention_strategies/soft_delete.rb +50 -0
- data/lib/source_monitor/items/retention_strategies.rb +9 -0
- data/lib/source_monitor/jobs/cleanup_options.rb +85 -0
- data/lib/source_monitor/jobs/fetch_failure_subscriber.rb +129 -0
- data/lib/source_monitor/jobs/solid_queue_metrics.rb +199 -0
- data/lib/source_monitor/jobs/visibility.rb +133 -0
- data/lib/source_monitor/logs/entry_sync.rb +69 -0
- data/lib/source_monitor/logs/filter_set.rb +163 -0
- data/lib/source_monitor/logs/query.rb +81 -0
- data/lib/source_monitor/logs/table_presenter.rb +161 -0
- data/lib/source_monitor/metrics.rb +77 -0
- data/lib/source_monitor/model_extensions.rb +109 -0
- data/lib/source_monitor/models/sanitizable.rb +76 -0
- data/lib/source_monitor/models/url_normalizable.rb +84 -0
- data/lib/source_monitor/pagination/paginator.rb +90 -0
- data/lib/source_monitor/realtime/adapter.rb +97 -0
- data/lib/source_monitor/realtime/broadcaster.rb +237 -0
- data/lib/source_monitor/realtime.rb +17 -0
- data/lib/source_monitor/release/changelog.rb +59 -0
- data/lib/source_monitor/release/runner.rb +73 -0
- data/lib/source_monitor/scheduler.rb +82 -0
- data/lib/source_monitor/scrapers/base.rb +105 -0
- data/lib/source_monitor/scrapers/fetchers/http_fetcher.rb +97 -0
- data/lib/source_monitor/scrapers/parsers/readability_parser.rb +101 -0
- data/lib/source_monitor/scrapers/readability.rb +156 -0
- data/lib/source_monitor/scraping/bulk_result_presenter.rb +85 -0
- data/lib/source_monitor/scraping/bulk_source_scraper.rb +233 -0
- data/lib/source_monitor/scraping/enqueuer.rb +125 -0
- data/lib/source_monitor/scraping/item_scraper/adapter_resolver.rb +44 -0
- data/lib/source_monitor/scraping/item_scraper/persistence.rb +189 -0
- data/lib/source_monitor/scraping/item_scraper.rb +84 -0
- data/lib/source_monitor/scraping/scheduler.rb +43 -0
- data/lib/source_monitor/scraping/state.rb +79 -0
- data/lib/source_monitor/security/authentication.rb +85 -0
- data/lib/source_monitor/security/parameter_sanitizer.rb +42 -0
- data/lib/source_monitor/sources/turbo_stream_presenter.rb +54 -0
- data/lib/source_monitor/turbo_streams/stream_responder.rb +95 -0
- data/lib/source_monitor/version.rb +3 -0
- data/lib/source_monitor.rb +149 -0
- data/lib/tasks/recover_stalled_fetches.rake +16 -0
- data/lib/tasks/source_monitor_assets.rake +28 -0
- data/lib/tasks/source_monitor_tasks.rake +29 -0
- data/lib/tasks/test_smoke.rake +12 -0
- data/package-lock.json +3997 -0
- data/package.json +29 -0
- data/postcss.config.js +6 -0
- data/source_monitor.gemspec +46 -0
- data/stylelint.config.js +12 -0
- metadata +469 -0
data/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "feed-monitor",
|
|
3
|
+
"private": true,
|
|
4
|
+
"scripts": {
|
|
5
|
+
"build": "npm run build:css && npm run build:js",
|
|
6
|
+
"build:css": "tailwindcss -c ./config/tailwind.config.js -i ./app/assets/stylesheets/source_monitor/application.tailwind.css -o ./app/assets/builds/source_monitor/application.css",
|
|
7
|
+
"build:css:watch": "tailwindcss -c ./config/tailwind.config.js -i ./app/assets/stylesheets/source_monitor/application.tailwind.css -o ./app/assets/builds/source_monitor/application.css --watch",
|
|
8
|
+
"build:js": "esbuild app/assets/javascripts/source_monitor/application.js --bundle --format=esm --sourcemap --outfile=app/assets/builds/source_monitor/application.js --log-level=warning --alias:stimulus-use=stimulus-use",
|
|
9
|
+
"build:js:watch": "npm run build:js -- --watch",
|
|
10
|
+
"lint:js": "eslint \"app/assets/javascripts/**/*.js\"",
|
|
11
|
+
"lint:css": "stylelint \"app/assets/**/*.css\"",
|
|
12
|
+
"lint": "npm run lint:js && npm run lint:css",
|
|
13
|
+
"check:assets": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@hotwired/stimulus": "^3.2.2",
|
|
17
|
+
"stimulus-use": "^0.52.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@eslint/js": "^9.11.0",
|
|
21
|
+
"autoprefixer": "^10.4.20",
|
|
22
|
+
"esbuild": "^0.23.0",
|
|
23
|
+
"eslint": "^9.11.0",
|
|
24
|
+
"postcss": "^8.4.45",
|
|
25
|
+
"stylelint": "^16.8.0",
|
|
26
|
+
"stylelint-config-standard": "^36.0.0",
|
|
27
|
+
"tailwindcss": "^3.4.10"
|
|
28
|
+
}
|
|
29
|
+
}
|
data/postcss.config.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
require_relative "lib/source_monitor/version"
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |spec|
|
|
4
|
+
spec.name = "source_monitor"
|
|
5
|
+
spec.version = SourceMonitor::VERSION
|
|
6
|
+
spec.authors = [ "dchuk" ]
|
|
7
|
+
spec.email = [ "me@dchuk.com" ]
|
|
8
|
+
spec.homepage = "https://github.com/dchuk/source_monitor"
|
|
9
|
+
spec.summary = "SourceMonitor engine for ingesting, scraping, and monitoring RSS/Atom/JSON feeds"
|
|
10
|
+
spec.description = "SourceMonitor is a mountable Rails 8 engine that ingests RSS, Atom, and JSON feeds, scrapes full article content, and surfaces Solid Queue powered dashboards for monitoring and remediation."
|
|
11
|
+
spec.license = "MIT"
|
|
12
|
+
|
|
13
|
+
spec.required_ruby_version = ">= 3.4.0"
|
|
14
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
15
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
16
|
+
spec.metadata["changelog_uri"] = "https://github.com/dchuk/source_monitor/blob/main/CHANGELOG.md"
|
|
17
|
+
spec.metadata["documentation_uri"] = "https://github.com/dchuk/source_monitor#readme"
|
|
18
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/dchuk/source_monitor/issues"
|
|
19
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
20
|
+
|
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
22
|
+
tracked_files = `git ls-files -z`.split("\x0")
|
|
23
|
+
tracked_files.reject do |file|
|
|
24
|
+
file.start_with?(".ai/", ".github/", "coverage/", "node_modules/", "pkg/", "spec/", "test/", "tmp/", "vendor/", "examples/", "bin/")
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
spec.files += [ "CHANGELOG.md" ].select { |path| File.exist?(File.join(__dir__, path)) }
|
|
28
|
+
spec.files.uniq!
|
|
29
|
+
|
|
30
|
+
spec.require_paths = [ "lib" ]
|
|
31
|
+
|
|
32
|
+
spec.add_dependency "rails", ">= 8.0.3", "< 9.0"
|
|
33
|
+
spec.add_dependency "cssbundling-rails", "~> 1.4"
|
|
34
|
+
spec.add_dependency "jsbundling-rails", "~> 1.3"
|
|
35
|
+
spec.add_dependency "turbo-rails", "~> 2.0"
|
|
36
|
+
spec.add_dependency "feedjira", ">= 3.2", "< 5.0"
|
|
37
|
+
spec.add_dependency "faraday", "~> 2.9"
|
|
38
|
+
spec.add_dependency "faraday-retry", "~> 2.2"
|
|
39
|
+
spec.add_dependency "faraday-follow_redirects", "~> 0.4"
|
|
40
|
+
spec.add_dependency "faraday-gzip", "~> 3.0"
|
|
41
|
+
spec.add_dependency "nokolexbor", "~> 0.5"
|
|
42
|
+
spec.add_dependency "ruby-readability", "~> 0.7"
|
|
43
|
+
spec.add_dependency "solid_queue", ">= 0.3", "< 3.0"
|
|
44
|
+
spec.add_dependency "solid_cable", ">= 3.0", "< 4.0"
|
|
45
|
+
spec.add_dependency "ransack", "~> 4.2"
|
|
46
|
+
end
|
data/stylelint.config.js
ADDED
metadata
ADDED
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: source_monitor
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- dchuk
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 8.0.3
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '9.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: 8.0.3
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '9.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: cssbundling-rails
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.4'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.4'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: jsbundling-rails
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '1.3'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '1.3'
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: turbo-rails
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '2.0'
|
|
67
|
+
type: :runtime
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - "~>"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '2.0'
|
|
74
|
+
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: feedjira
|
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '3.2'
|
|
81
|
+
- - "<"
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '5.0'
|
|
84
|
+
type: :runtime
|
|
85
|
+
prerelease: false
|
|
86
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
- - ">="
|
|
89
|
+
- !ruby/object:Gem::Version
|
|
90
|
+
version: '3.2'
|
|
91
|
+
- - "<"
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '5.0'
|
|
94
|
+
- !ruby/object:Gem::Dependency
|
|
95
|
+
name: faraday
|
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - "~>"
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '2.9'
|
|
101
|
+
type: :runtime
|
|
102
|
+
prerelease: false
|
|
103
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - "~>"
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '2.9'
|
|
108
|
+
- !ruby/object:Gem::Dependency
|
|
109
|
+
name: faraday-retry
|
|
110
|
+
requirement: !ruby/object:Gem::Requirement
|
|
111
|
+
requirements:
|
|
112
|
+
- - "~>"
|
|
113
|
+
- !ruby/object:Gem::Version
|
|
114
|
+
version: '2.2'
|
|
115
|
+
type: :runtime
|
|
116
|
+
prerelease: false
|
|
117
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - "~>"
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '2.2'
|
|
122
|
+
- !ruby/object:Gem::Dependency
|
|
123
|
+
name: faraday-follow_redirects
|
|
124
|
+
requirement: !ruby/object:Gem::Requirement
|
|
125
|
+
requirements:
|
|
126
|
+
- - "~>"
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: '0.4'
|
|
129
|
+
type: :runtime
|
|
130
|
+
prerelease: false
|
|
131
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
132
|
+
requirements:
|
|
133
|
+
- - "~>"
|
|
134
|
+
- !ruby/object:Gem::Version
|
|
135
|
+
version: '0.4'
|
|
136
|
+
- !ruby/object:Gem::Dependency
|
|
137
|
+
name: faraday-gzip
|
|
138
|
+
requirement: !ruby/object:Gem::Requirement
|
|
139
|
+
requirements:
|
|
140
|
+
- - "~>"
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: '3.0'
|
|
143
|
+
type: :runtime
|
|
144
|
+
prerelease: false
|
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - "~>"
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '3.0'
|
|
150
|
+
- !ruby/object:Gem::Dependency
|
|
151
|
+
name: nokolexbor
|
|
152
|
+
requirement: !ruby/object:Gem::Requirement
|
|
153
|
+
requirements:
|
|
154
|
+
- - "~>"
|
|
155
|
+
- !ruby/object:Gem::Version
|
|
156
|
+
version: '0.5'
|
|
157
|
+
type: :runtime
|
|
158
|
+
prerelease: false
|
|
159
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
160
|
+
requirements:
|
|
161
|
+
- - "~>"
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: '0.5'
|
|
164
|
+
- !ruby/object:Gem::Dependency
|
|
165
|
+
name: ruby-readability
|
|
166
|
+
requirement: !ruby/object:Gem::Requirement
|
|
167
|
+
requirements:
|
|
168
|
+
- - "~>"
|
|
169
|
+
- !ruby/object:Gem::Version
|
|
170
|
+
version: '0.7'
|
|
171
|
+
type: :runtime
|
|
172
|
+
prerelease: false
|
|
173
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
174
|
+
requirements:
|
|
175
|
+
- - "~>"
|
|
176
|
+
- !ruby/object:Gem::Version
|
|
177
|
+
version: '0.7'
|
|
178
|
+
- !ruby/object:Gem::Dependency
|
|
179
|
+
name: solid_queue
|
|
180
|
+
requirement: !ruby/object:Gem::Requirement
|
|
181
|
+
requirements:
|
|
182
|
+
- - ">="
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '0.3'
|
|
185
|
+
- - "<"
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: '3.0'
|
|
188
|
+
type: :runtime
|
|
189
|
+
prerelease: false
|
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - ">="
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '0.3'
|
|
195
|
+
- - "<"
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '3.0'
|
|
198
|
+
- !ruby/object:Gem::Dependency
|
|
199
|
+
name: solid_cable
|
|
200
|
+
requirement: !ruby/object:Gem::Requirement
|
|
201
|
+
requirements:
|
|
202
|
+
- - ">="
|
|
203
|
+
- !ruby/object:Gem::Version
|
|
204
|
+
version: '3.0'
|
|
205
|
+
- - "<"
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '4.0'
|
|
208
|
+
type: :runtime
|
|
209
|
+
prerelease: false
|
|
210
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
211
|
+
requirements:
|
|
212
|
+
- - ">="
|
|
213
|
+
- !ruby/object:Gem::Version
|
|
214
|
+
version: '3.0'
|
|
215
|
+
- - "<"
|
|
216
|
+
- !ruby/object:Gem::Version
|
|
217
|
+
version: '4.0'
|
|
218
|
+
- !ruby/object:Gem::Dependency
|
|
219
|
+
name: ransack
|
|
220
|
+
requirement: !ruby/object:Gem::Requirement
|
|
221
|
+
requirements:
|
|
222
|
+
- - "~>"
|
|
223
|
+
- !ruby/object:Gem::Version
|
|
224
|
+
version: '4.2'
|
|
225
|
+
type: :runtime
|
|
226
|
+
prerelease: false
|
|
227
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
228
|
+
requirements:
|
|
229
|
+
- - "~>"
|
|
230
|
+
- !ruby/object:Gem::Version
|
|
231
|
+
version: '4.2'
|
|
232
|
+
description: SourceMonitor is a mountable Rails 8 engine that ingests RSS, Atom, and
|
|
233
|
+
JSON feeds, scrapes full article content, and surfaces Solid Queue powered dashboards
|
|
234
|
+
for monitoring and remediation.
|
|
235
|
+
email:
|
|
236
|
+
- me@dchuk.com
|
|
237
|
+
executables: []
|
|
238
|
+
extensions: []
|
|
239
|
+
extra_rdoc_files: []
|
|
240
|
+
files:
|
|
241
|
+
- ".gitignore"
|
|
242
|
+
- ".rubocop.yml"
|
|
243
|
+
- ".ruby-version"
|
|
244
|
+
- AGENTS.md
|
|
245
|
+
- CHANGELOG.md
|
|
246
|
+
- CONTRIBUTING.md
|
|
247
|
+
- Gemfile
|
|
248
|
+
- Gemfile.lock
|
|
249
|
+
- MIT-LICENSE
|
|
250
|
+
- README.md
|
|
251
|
+
- Rakefile
|
|
252
|
+
- app/assets/builds/.keep
|
|
253
|
+
- app/assets/config/source_monitor_manifest.js
|
|
254
|
+
- app/assets/images/source_monitor/.keep
|
|
255
|
+
- app/assets/javascripts/source_monitor/application.js
|
|
256
|
+
- app/assets/javascripts/source_monitor/controllers/async_submit_controller.js
|
|
257
|
+
- app/assets/javascripts/source_monitor/controllers/dropdown_controller.js
|
|
258
|
+
- app/assets/javascripts/source_monitor/controllers/modal_controller.js
|
|
259
|
+
- app/assets/javascripts/source_monitor/controllers/notification_controller.js
|
|
260
|
+
- app/assets/javascripts/source_monitor/turbo_actions.js
|
|
261
|
+
- app/assets/stylesheets/source_monitor/application.tailwind.css
|
|
262
|
+
- app/assets/svgs/source_monitor/.keep
|
|
263
|
+
- app/controllers/concerns/.keep
|
|
264
|
+
- app/controllers/concerns/source_monitor/sanitizes_search_params.rb
|
|
265
|
+
- app/controllers/source_monitor/application_controller.rb
|
|
266
|
+
- app/controllers/source_monitor/dashboard_controller.rb
|
|
267
|
+
- app/controllers/source_monitor/fetch_logs_controller.rb
|
|
268
|
+
- app/controllers/source_monitor/health_controller.rb
|
|
269
|
+
- app/controllers/source_monitor/items_controller.rb
|
|
270
|
+
- app/controllers/source_monitor/logs_controller.rb
|
|
271
|
+
- app/controllers/source_monitor/scrape_logs_controller.rb
|
|
272
|
+
- app/controllers/source_monitor/source_bulk_scrapes_controller.rb
|
|
273
|
+
- app/controllers/source_monitor/source_fetches_controller.rb
|
|
274
|
+
- app/controllers/source_monitor/source_health_checks_controller.rb
|
|
275
|
+
- app/controllers/source_monitor/source_health_resets_controller.rb
|
|
276
|
+
- app/controllers/source_monitor/source_retries_controller.rb
|
|
277
|
+
- app/controllers/source_monitor/source_turbo_responses.rb
|
|
278
|
+
- app/controllers/source_monitor/sources_controller.rb
|
|
279
|
+
- app/helpers/source_monitor/application_helper.rb
|
|
280
|
+
- app/jobs/source_monitor/application_job.rb
|
|
281
|
+
- app/jobs/source_monitor/fetch_feed_job.rb
|
|
282
|
+
- app/jobs/source_monitor/item_cleanup_job.rb
|
|
283
|
+
- app/jobs/source_monitor/log_cleanup_job.rb
|
|
284
|
+
- app/jobs/source_monitor/schedule_fetches_job.rb
|
|
285
|
+
- app/jobs/source_monitor/scrape_item_job.rb
|
|
286
|
+
- app/jobs/source_monitor/source_health_check_job.rb
|
|
287
|
+
- app/mailers/source_monitor/application_mailer.rb
|
|
288
|
+
- app/models/concerns/.keep
|
|
289
|
+
- app/models/concerns/source_monitor/loggable.rb
|
|
290
|
+
- app/models/source_monitor/application_record.rb
|
|
291
|
+
- app/models/source_monitor/fetch_log.rb
|
|
292
|
+
- app/models/source_monitor/health_check_log.rb
|
|
293
|
+
- app/models/source_monitor/item.rb
|
|
294
|
+
- app/models/source_monitor/item_content.rb
|
|
295
|
+
- app/models/source_monitor/log_entry.rb
|
|
296
|
+
- app/models/source_monitor/scrape_log.rb
|
|
297
|
+
- app/models/source_monitor/source.rb
|
|
298
|
+
- app/views/layouts/source_monitor/application.html.erb
|
|
299
|
+
- app/views/source_monitor/dashboard/_fetch_schedule.html.erb
|
|
300
|
+
- app/views/source_monitor/dashboard/_job_metrics.html.erb
|
|
301
|
+
- app/views/source_monitor/dashboard/_recent_activity.html.erb
|
|
302
|
+
- app/views/source_monitor/dashboard/_stat_card.html.erb
|
|
303
|
+
- app/views/source_monitor/dashboard/_stats.html.erb
|
|
304
|
+
- app/views/source_monitor/dashboard/index.html.erb
|
|
305
|
+
- app/views/source_monitor/fetch_logs/show.html.erb
|
|
306
|
+
- app/views/source_monitor/items/_details.html.erb
|
|
307
|
+
- app/views/source_monitor/items/_details_wrapper.html.erb
|
|
308
|
+
- app/views/source_monitor/items/index.html.erb
|
|
309
|
+
- app/views/source_monitor/items/show.html.erb
|
|
310
|
+
- app/views/source_monitor/logs/index.html.erb
|
|
311
|
+
- app/views/source_monitor/scrape_logs/show.html.erb
|
|
312
|
+
- app/views/source_monitor/shared/_toast.html.erb
|
|
313
|
+
- app/views/source_monitor/sources/_bulk_scrape_form.html.erb
|
|
314
|
+
- app/views/source_monitor/sources/_bulk_scrape_modal.html.erb
|
|
315
|
+
- app/views/source_monitor/sources/_details.html.erb
|
|
316
|
+
- app/views/source_monitor/sources/_details_wrapper.html.erb
|
|
317
|
+
- app/views/source_monitor/sources/_empty_state_row.html.erb
|
|
318
|
+
- app/views/source_monitor/sources/_fetch_interval_heatmap.html.erb
|
|
319
|
+
- app/views/source_monitor/sources/_form.html.erb
|
|
320
|
+
- app/views/source_monitor/sources/_health_status_badge.html.erb
|
|
321
|
+
- app/views/source_monitor/sources/_row.html.erb
|
|
322
|
+
- app/views/source_monitor/sources/edit.html.erb
|
|
323
|
+
- app/views/source_monitor/sources/index.html.erb
|
|
324
|
+
- app/views/source_monitor/sources/new.html.erb
|
|
325
|
+
- app/views/source_monitor/sources/show.html.erb
|
|
326
|
+
- config/coverage_baseline.json
|
|
327
|
+
- config/initializers/feedjira.rb
|
|
328
|
+
- config/routes.rb
|
|
329
|
+
- config/tailwind.config.js
|
|
330
|
+
- db/migrate/20241008120000_create_source_monitor_sources.rb
|
|
331
|
+
- db/migrate/20241008121000_create_source_monitor_items.rb
|
|
332
|
+
- db/migrate/20241008122000_create_source_monitor_fetch_logs.rb
|
|
333
|
+
- db/migrate/20241008123000_create_source_monitor_scrape_logs.rb
|
|
334
|
+
- db/migrate/20251008183000_change_fetch_interval_to_minutes.rb
|
|
335
|
+
- db/migrate/20251009090000_create_source_monitor_item_contents.rb
|
|
336
|
+
- db/migrate/20251009103000_add_feed_content_readability_to_sources.rb
|
|
337
|
+
- db/migrate/20251010090000_add_adaptive_fetching_toggle_to_sources.rb
|
|
338
|
+
- db/migrate/20251010123000_add_deleted_at_to_source_monitor_items.rb
|
|
339
|
+
- db/migrate/20251010153000_add_type_to_source_monitor_sources.rb
|
|
340
|
+
- db/migrate/20251010154500_add_fetch_status_to_source_monitor_sources.rb
|
|
341
|
+
- db/migrate/20251010160000_create_solid_cable_messages.rb
|
|
342
|
+
- db/migrate/20251011090000_add_fetch_retry_state_to_sources.rb
|
|
343
|
+
- db/migrate/20251012090000_add_health_fields_to_sources.rb
|
|
344
|
+
- db/migrate/20251012100000_optimize_source_monitor_database_performance.rb
|
|
345
|
+
- db/migrate/20251014064947_add_not_null_constraints_to_items.rb
|
|
346
|
+
- db/migrate/20251014171659_add_performance_indexes.rb
|
|
347
|
+
- db/migrate/20251014172525_add_fetch_status_check_constraint.rb
|
|
348
|
+
- db/migrate/20251015100000_create_source_monitor_log_entries.rb
|
|
349
|
+
- db/migrate/20251022100000_create_source_monitor_health_check_logs.rb
|
|
350
|
+
- db/migrate/20251108120116_refresh_fetch_status_constraint.rb
|
|
351
|
+
- docs/configuration.md
|
|
352
|
+
- docs/deployment.md
|
|
353
|
+
- docs/gh-cli-workflow.md
|
|
354
|
+
- docs/installation.md
|
|
355
|
+
- docs/troubleshooting.md
|
|
356
|
+
- eslint.config.mjs
|
|
357
|
+
- lib/generators/source_monitor/install/install_generator.rb
|
|
358
|
+
- lib/generators/source_monitor/install/templates/source_monitor.rb.tt
|
|
359
|
+
- lib/source_monitor.rb
|
|
360
|
+
- lib/source_monitor/analytics/source_activity_rates.rb
|
|
361
|
+
- lib/source_monitor/analytics/source_fetch_interval_distribution.rb
|
|
362
|
+
- lib/source_monitor/analytics/sources_index_metrics.rb
|
|
363
|
+
- lib/source_monitor/assets.rb
|
|
364
|
+
- lib/source_monitor/assets/bundler.rb
|
|
365
|
+
- lib/source_monitor/configuration.rb
|
|
366
|
+
- lib/source_monitor/dashboard/queries.rb
|
|
367
|
+
- lib/source_monitor/dashboard/quick_action.rb
|
|
368
|
+
- lib/source_monitor/dashboard/quick_actions_presenter.rb
|
|
369
|
+
- lib/source_monitor/dashboard/recent_activity.rb
|
|
370
|
+
- lib/source_monitor/dashboard/recent_activity_presenter.rb
|
|
371
|
+
- lib/source_monitor/dashboard/turbo_broadcaster.rb
|
|
372
|
+
- lib/source_monitor/dashboard/upcoming_fetch_schedule.rb
|
|
373
|
+
- lib/source_monitor/engine.rb
|
|
374
|
+
- lib/source_monitor/events.rb
|
|
375
|
+
- lib/source_monitor/feedjira_extensions.rb
|
|
376
|
+
- lib/source_monitor/fetching/advisory_lock.rb
|
|
377
|
+
- lib/source_monitor/fetching/completion/event_publisher.rb
|
|
378
|
+
- lib/source_monitor/fetching/completion/follow_up_handler.rb
|
|
379
|
+
- lib/source_monitor/fetching/completion/retention_handler.rb
|
|
380
|
+
- lib/source_monitor/fetching/feed_fetcher.rb
|
|
381
|
+
- lib/source_monitor/fetching/fetch_error.rb
|
|
382
|
+
- lib/source_monitor/fetching/fetch_runner.rb
|
|
383
|
+
- lib/source_monitor/fetching/retry_policy.rb
|
|
384
|
+
- lib/source_monitor/fetching/stalled_fetch_reconciler.rb
|
|
385
|
+
- lib/source_monitor/health.rb
|
|
386
|
+
- lib/source_monitor/health/source_health_check.rb
|
|
387
|
+
- lib/source_monitor/health/source_health_monitor.rb
|
|
388
|
+
- lib/source_monitor/health/source_health_reset.rb
|
|
389
|
+
- lib/source_monitor/http.rb
|
|
390
|
+
- lib/source_monitor/instrumentation.rb
|
|
391
|
+
- lib/source_monitor/items/item_creator.rb
|
|
392
|
+
- lib/source_monitor/items/retention_pruner.rb
|
|
393
|
+
- lib/source_monitor/items/retention_strategies.rb
|
|
394
|
+
- lib/source_monitor/items/retention_strategies/destroy.rb
|
|
395
|
+
- lib/source_monitor/items/retention_strategies/soft_delete.rb
|
|
396
|
+
- lib/source_monitor/jobs/cleanup_options.rb
|
|
397
|
+
- lib/source_monitor/jobs/fetch_failure_subscriber.rb
|
|
398
|
+
- lib/source_monitor/jobs/solid_queue_metrics.rb
|
|
399
|
+
- lib/source_monitor/jobs/visibility.rb
|
|
400
|
+
- lib/source_monitor/logs/entry_sync.rb
|
|
401
|
+
- lib/source_monitor/logs/filter_set.rb
|
|
402
|
+
- lib/source_monitor/logs/query.rb
|
|
403
|
+
- lib/source_monitor/logs/table_presenter.rb
|
|
404
|
+
- lib/source_monitor/metrics.rb
|
|
405
|
+
- lib/source_monitor/model_extensions.rb
|
|
406
|
+
- lib/source_monitor/models/sanitizable.rb
|
|
407
|
+
- lib/source_monitor/models/url_normalizable.rb
|
|
408
|
+
- lib/source_monitor/pagination/paginator.rb
|
|
409
|
+
- lib/source_monitor/realtime.rb
|
|
410
|
+
- lib/source_monitor/realtime/adapter.rb
|
|
411
|
+
- lib/source_monitor/realtime/broadcaster.rb
|
|
412
|
+
- lib/source_monitor/release/changelog.rb
|
|
413
|
+
- lib/source_monitor/release/runner.rb
|
|
414
|
+
- lib/source_monitor/scheduler.rb
|
|
415
|
+
- lib/source_monitor/scrapers/base.rb
|
|
416
|
+
- lib/source_monitor/scrapers/fetchers/http_fetcher.rb
|
|
417
|
+
- lib/source_monitor/scrapers/parsers/readability_parser.rb
|
|
418
|
+
- lib/source_monitor/scrapers/readability.rb
|
|
419
|
+
- lib/source_monitor/scraping/bulk_result_presenter.rb
|
|
420
|
+
- lib/source_monitor/scraping/bulk_source_scraper.rb
|
|
421
|
+
- lib/source_monitor/scraping/enqueuer.rb
|
|
422
|
+
- lib/source_monitor/scraping/item_scraper.rb
|
|
423
|
+
- lib/source_monitor/scraping/item_scraper/adapter_resolver.rb
|
|
424
|
+
- lib/source_monitor/scraping/item_scraper/persistence.rb
|
|
425
|
+
- lib/source_monitor/scraping/scheduler.rb
|
|
426
|
+
- lib/source_monitor/scraping/state.rb
|
|
427
|
+
- lib/source_monitor/security/authentication.rb
|
|
428
|
+
- lib/source_monitor/security/parameter_sanitizer.rb
|
|
429
|
+
- lib/source_monitor/sources/turbo_stream_presenter.rb
|
|
430
|
+
- lib/source_monitor/turbo_streams/stream_responder.rb
|
|
431
|
+
- lib/source_monitor/version.rb
|
|
432
|
+
- lib/tasks/recover_stalled_fetches.rake
|
|
433
|
+
- lib/tasks/source_monitor_assets.rake
|
|
434
|
+
- lib/tasks/source_monitor_tasks.rake
|
|
435
|
+
- lib/tasks/test_smoke.rake
|
|
436
|
+
- package-lock.json
|
|
437
|
+
- package.json
|
|
438
|
+
- postcss.config.js
|
|
439
|
+
- source_monitor.gemspec
|
|
440
|
+
- stylelint.config.js
|
|
441
|
+
homepage: https://github.com/dchuk/source_monitor
|
|
442
|
+
licenses:
|
|
443
|
+
- MIT
|
|
444
|
+
metadata:
|
|
445
|
+
homepage_uri: https://github.com/dchuk/source_monitor
|
|
446
|
+
source_code_uri: https://github.com/dchuk/source_monitor
|
|
447
|
+
changelog_uri: https://github.com/dchuk/source_monitor/blob/main/CHANGELOG.md
|
|
448
|
+
documentation_uri: https://github.com/dchuk/source_monitor#readme
|
|
449
|
+
bug_tracker_uri: https://github.com/dchuk/source_monitor/issues
|
|
450
|
+
rubygems_mfa_required: 'true'
|
|
451
|
+
rdoc_options: []
|
|
452
|
+
require_paths:
|
|
453
|
+
- lib
|
|
454
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
455
|
+
requirements:
|
|
456
|
+
- - ">="
|
|
457
|
+
- !ruby/object:Gem::Version
|
|
458
|
+
version: 3.4.0
|
|
459
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
460
|
+
requirements:
|
|
461
|
+
- - ">="
|
|
462
|
+
- !ruby/object:Gem::Version
|
|
463
|
+
version: '0'
|
|
464
|
+
requirements: []
|
|
465
|
+
rubygems_version: 3.7.1
|
|
466
|
+
specification_version: 4
|
|
467
|
+
summary: SourceMonitor engine for ingesting, scraping, and monitoring RSS/Atom/JSON
|
|
468
|
+
feeds
|
|
469
|
+
test_files: []
|