I hereby claim:
- I am arajkumar on github.
- I am arajkumar (https://keybase.io/arajkumar) on keybase.
- I have a public key whose fingerprint is 0AC1 E8DF BE8C 30DC 0547 FD10 7DB9 3046 D468 7C2C
To claim this, I am signing this object:
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": true, | |
| "iconColor": "rgba(0, 211, 255, 1)", | |
| "name": "Annotations & Alerts", |
| javascript:(() => {const doc = document.getElementsByName('loginFrame')[0].contentWindow.document.getElementById('prodPage').contentWindow.document.getElementsByName('actionFrame')[0].contentWindow.document;const e = doc.getElementsByTagName('embed')[0];document.location.replace(`${document.location.href}/../${e.getAttribute('pprintpg')}?vRcptNo=${encodeURIComponent(e.getAttribute('vpar'))}&vUsrID=${e.getAttribute('pusrid')}&vSession=${e.getAttribute('psession')}`)}) |
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": true, | |
| "iconColor": "rgba(0, 211, 255, 1)", | |
| "name": "Annotations & Alerts", |
I hereby claim:
To claim this, I am signing this object:
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: low-priority | |
| spec: | |
| containers: | |
| - name: low-priority | |
| image: ubuntu | |
| command: ["/bin/sh"] | |
| args: ["-c", "while true; do echo hello; sleep 10;done"] |
| python-projects: | |
| redhat: | |
| backbone: https://github.com/fabric8-analytics/f8a-server-backbone/commits?author=arajkumar | |
| api-server: https://github.com/fabric8-analytics/fabric8-analytics-server/commits?author=arajkumar | |
| pcve-api-server: https://github.com/kubesecurity/osa-api-server/commits?author=arajkumar | |
| openshift-probable-vulnerabilities: https://github.com/kubesecurity/openshift-probable-vulnerabilities/commits?author=arajkumar | |
| quay: https://github.com/quay/quay/commits?author=arajkumar | |
| opensource-contributions: | |
| python-restx: https://github.com/python-restx/flask-restx/commits?author=arajkumar |
| # https://pypi.org/project/requests-futures/ | |
| from requests_futures.sessions import FuturesSession | |
| from concurrent.futures import wait, ALL_COMPLETED | |
| from time import time | |
| concurrent_limit = 10 | |
| total_reqs = 10 | |
| each_request_duration = 5 # simulated delay | |
| completion_timeout = 11 |
| # https://pypi.org/project/requests-futures/ | |
| from requests_futures.sessions import FuturesSession | |
| from concurrent.futures import wait, ALL_COMPLETED | |
| from time import time | |
| concurrent_limit = 10 | |
| total_reqs = 10 | |
| each_request_duration = 5 # simulated delay | |
| completion_timeout = 11 |
| module.exports = | |
| /******/ (function(modules) { // webpackBootstrap | |
| /******/ // The module cache | |
| /******/ var installedModules = {}; | |
| /******/ | |
| /******/ // The require function | |
| /******/ function __webpack_require__(moduleId) { | |
| /******/ | |
| /******/ // Check if module is in cache | |
| /******/ if(installedModules[moduleId]) { |
| def cleanup_db_tables(self): | |
| """Cleanup RDS data tables on a periodic basis.""" | |
| def clean_celery_taskmeta(): | |
| num_days = os.environ.get('KEEP_DB_META_NUM_DAYS', '30') | |
| self.cleanup_tables('celery_taskmeta', 'date_done', num_days) | |
| def clean_worker_results() | |
| num_days = os.environ.get('KEEP_WORKER_RESULT_NUM_DAYS', '30') | |
| self.cleanup_tables('worker_results', 'ended_at', num_days) |