Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
418 changes: 277 additions & 141 deletions Monitoring/monitor-ontap-services/README.md

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Monitoring/monitor-ontap-services/buildLambdaLayer
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
#
# This script builds the Lambda Layer required for the monitor_ontap_services to function.
rm -rf python lambda_layer.zip
mkdir python
pip3 install --target ./python 'cronsim>=2.6' pytz
zip -r lambda_layer.zip python
Loading