This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################################################## | |
| ## ## | |
| ## To run this script by command line in background issue this command ## | |
| ## ./monitoring-odoo-postgresql-lock > /dev/null 2>&1 & ## | |
| ## To kill this script if running issue this command ## | |
| ## pkill -f monitoring-odoo-postgresql-lock ## | |
| ## To add this script to crontab: ## | |
| ## @reboot /path/to/monitoring-odoo-postgresql-lock > /dev/null 2>&1 || true ## | |
| ## ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| quants = env['stock.quant'].search([]) | |
| move_line_ids = [] | |
| warning = '' | |
| for quant in quants: | |
| move_lines = env["stock.move.line"].search([ | |
| ('product_id', '=', quant.product_id.id), | |
| ('location_id', '=', quant.location_id.id), | |
| ('lot_id', '=', quant.lot_id.id), | |
| ('package_id', '=', quant.package_id.id), | |
| ('owner_id', '=', quant.owner_id.id), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <!-- google's material design colours from | |
| http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
| <!--reds--> | |
| <color name="md_red_50">#FFEBEE</color> | |
| <color name="md_red_100">#FFCDD2</color> | |
| <color name="md_red_200">#EF9A9A</color> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| pid=`head -1 $PGDATA/postmaster.pid` | |
| echo "Pid: $pid" | |
| peak=`grep ^VmPeak /proc/$pid/status | awk '{ print $2 }'` | |
| echo "VmPeak: $peak kB" | |
| hps=`grep ^Hugepagesize /proc/meminfo | awk '{ print $2 }'` | |
| echo "Hugepagesize: $hps kB" | |
| hp=$((peak/hps)) | |
| echo Set Huge Pages: $hp |