You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticdescription="Check if elements(apex class and field) are at least in one permission set";
36
+
publicstaticdescription=`Check if elements(apex class and field) are at least in one permission set
37
+
38
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-missing-access/) and can output Grafana, Slack and MsTeams Notifications.
publicstaticdescription="Check if elements(flows) are inactive in the project";
26
+
publicstaticdescription=`Check if elements (flows and validation rules) are inactive in the project
27
+
28
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-inactive-metadata/) and can output Grafana, Slack and MsTeams Notifications.
publicstatictitle="check unused labels and custom permissions";
28
-
publicstaticdescription="Check if elements (custom labels and custom permissions) are used in the project";
28
+
publicstaticdescription=`Check if elements (custom labels and custom permissions) are used in the project
29
+
30
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-unused-metadata/) and can output Grafana, Slack and MsTeams Notifications.
"Some section": [] // Will ignore all actions from such section
117
117
"Some other section": ["actionType1","actionType2","actionType3"] // Will ignore only those 3 actions from section "Some other section". Other actions in the same section will be considered as suspect.
118
118
\`\`\`
119
-
`;
119
+
120
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.
Copy file name to clipboardExpand all lines: src/commands/hardis/org/diagnose/legacyapi.ts
+1
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ See article below
29
29
30
30
[](https://nicolas.vuillamy.fr/handle-salesforce-api-versions-deprecation-like-a-pro-335065f52238)
31
31
32
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-deprecated-api-calls/) and can output Grafana, Slack and MsTeams Notifications.
publicstatictitle="Detect unused Permission Set Licenses";
21
+
publicstatictitle="Detect unused Permission Set Licenses (beta)";
22
22
23
23
publicstaticdescription=`When you assign a Permission Set to a user, and that this Permission Set is related to a Permission Set License, a Permission Set License Assignment is automatically created for the user.
24
24
25
-
But when you unassign this Permission Set from the user, **the Permission Set License Assignment is not deleted**.
25
+
But when you unassign this Permission Set from the user, **the Permission Set License Assignment is not deleted**.
26
26
27
-
This leads that you can be **charged for Permission Set Licenses that are not used** !
27
+
This leads that you can be **charged for Permission Set Licenses that are not used** !
28
28
29
-
This command detects such useless Permission Set Licenses Assignments and suggests to delete them.
29
+
This command detects such useless Permission Set Licenses Assignments and suggests to delete them.
30
30
31
-
Many thanks to [Vincent Finet](https://www.linkedin.com/in/vincentfinet/) for the inspiration during his great speaker session at [French Touch Dreamin '23](https://frenchtouchdreamin.com/), and his kind agreement for reusing such inspiration in this command :)
32
-
`;
31
+
Many thanks to [Vincent Finet](https://www.linkedin.com/in/vincentfinet/) for the inspiration during his great speaker session at [French Touch Dreamin '23](https://frenchtouchdreamin.com/), and his kind agreement for reusing such inspiration in this command :)
32
+
33
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-unused-licenses/) and can output Grafana, Slack and MsTeams Notifications.
Copy file name to clipboardExpand all lines: src/commands/hardis/org/diagnose/unusedusers.ts
+2
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ licensetypes values are the following:
33
33
Note: You can see the full list of available license identifiers in [Salesforce Documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_userlicense.htm)
34
34
35
35
Use --returnactiveusers to revert the command and retrieve active users that has logged in during the period.
36
+
37
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-inactive-users/) and can output Grafana, Slack and MsTeams Notifications.
publicstaticdescription=`Retrieve sfdx sources in the context of a monitoring backup
29
-
29
+
30
+
Automatically skips metadatas from installed packages with namespace.
31
+
30
32
You can remove more metadata types from backup, especially in case you have too many metadatas and that provokes a crash, using:
31
33
32
34
- Manual update of \`manifest/package-skip-items.xml\` config file (then commit & push in the same branch)
33
35
34
36
- Environment variable MONITORING_BACKUP_SKIP_METADATA_TYPES (example: \`MONITORING_BACKUP_SKIP_METADATA_TYPES=CustomLabel,StaticResource,Translation\`): that will be applied to all monitoring branches.
37
+
38
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-metadata-backup/) and can output Grafana, Slack and MsTeams Notifications.
publicstaticdescription=`Check limits of a SF org and send related notifications
24
-
25
-
Used in [sfdx-hardis monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-org-limits/) to send messages to Slack, Teams, Email and Grafana.
23
+
publicstaticdescription=`Check limits of a SF org and send notifications about limits are superior to 50%, 75% or 100%.
26
24
25
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-org-limits/) and can output Grafana, Slack and MsTeams Notifications.
Copy file name to clipboardExpand all lines: src/commands/hardis/org/test/apex.ts
+3-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,9 @@ If following configuration is defined, it will fail if apex coverage target is n
26
26
- Env \`APEX_TESTS_MIN_COVERAGE_ORG_WIDE\` or \`.sfdx-hardis\` property \`apexTestsMinCoverageOrgWide\`
27
27
- Env \`APEX_TESTS_MIN_COVERAGE_ORG_WIDE\` or \`.sfdx-hardis\` property \`apexTestsMinCoverageOrgWide\`
28
28
29
-
You can override env var SFDX_TEST_WAIT_MINUTES to wait more than 60 minutes
29
+
You can override env var SFDX_TEST_WAIT_MINUTES to wait more than 60 minutes.
30
+
31
+
This command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-apex-tests/) and can output Grafana, Slack and MsTeams Notifications.
0 commit comments