I hereby claim:
- I am 2color on github.
- I am 2color (https://keybase.io/2color) on keybase.
- I have a public key whose fingerprint is EF85 B9E9 3F47 D488 56BF 37AF C466 A8FA 57F3 9905
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
Emoji | Meaning |
---|---|
WIP | |
✅ | Done |
❌ | Not Done |
🎆 | Serendipitous |
-- show running queries (pre 9.2) | |
SELECT procpid, age(query_start, clock_timestamp()), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(query_start, clock_timestamp()), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
requests_total
be used across all http services or should one introduce a prefix for services?nginx_lb_requests_total
and some_service_requests_total
?http_requests_total{code="200"}
and http_requests_total{code="500"}
are two new series created when the new prometheus container scrapes that target (not sure if same storage is mounted in k8s)?import { Observable } from 'rxjs' | |
import 'rxjs/add/observable/of' | |
import 'rxjs/add/operator/map' | |
import 'rxjs/add/operator/merge' | |
import { createAction } from 'redux-actions' | |
export const SESSION_STORAGE_KEY = 'SESSION_STORAGE_KEY' | |
export const GET_SESSION_REQUESTED = 'payout/GET_SESSION_REQUESTED' | |
export const GET_SESSION_FOUND = 'payout/GET_SESSION_FOUND' |