log_processing_rules:
- type: exclude_at_match
name: exclude_sensitive_info
pattern: (?:sensitive\-info)
| custom_metrics: | |
| - name: sqlserver.buffer.page_lookups | |
| counter_name: Page lookups/sec | |
| - name: sqlserver.buffer.page_reads | |
| counter_name: Page reads/sec | |
| - name: sqlserver.workload.queued_requests | |
| counter_name: Queued Requests |
The AWS Auto Scaling Goup, configured with a customised Cloud-Init file, sends a notification to an SNS Topic, which in turn passes it onto an SQS queue that the Salt Master is subscribed to. A Reactor watches for the auto scaling events and pre-approves the new minion based on its Auto Scaling group name and instance ID.
| ## credit: http://fabian-affolter.ch/blog/the-lineinfile-module-of-ansible/ | |
| --- | |
| - hosts: alpine_install | |
| user: root | |
| tasks: | |
| # - name: create a complete empty file | |
| # command: /usr/bin/touch /test/test.conf | |
| - name: create a new file with lineinfile |
I hereby claim:
To claim this, I am signing this object:
#System Design Cheatsheet
Picking the right architecture = Picking the right battles + Managing trade-offs
##Basic Steps
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |