Skip to content

Commit

Permalink
fix(rules): add Healthchecks.io
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 12, 2023
1 parent 127745b commit efc4b12
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ exports[`all > should match everything 1`] = `
"googleanalytics",
"grafana",
"hashicorp_vault",
"healthchecksio",
"helm",
"heroku",
"hotjar",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/monitoring/healthchecksio.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'healthchecksio',
name: 'Healthchecks.io',
type: 'monitoring',
});
1 change: 1 addition & 0 deletions src/rules/monitoring/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import './betterstack.js';
import './blackfire.js';
import './datadog.js';
import './gcp.logging.js';
import './healthchecksio.js';
import './newrelic.js';
import './onlineornot.js';
import './pingdom.js';
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export type AllowedKeys =
| 'googleanalytics'
| 'grafana'
| 'hashicorp_vault'
| 'healthchecksio'
| 'helm'
| 'heroku'
| 'hotjar'
Expand Down

0 comments on commit efc4b12

Please sign in to comment.