Skip to content

Commit c736f61

Browse files
authored
Merge pull request #145 from unixorn/update-awesomebot-configuration
Make awesomebot ignore timeouts
2 parents cb7e741 + a40b518 commit c736f61

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/workflows/awesomebot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v2
1616
- uses: docker://dkhamsing/awesome_bot:latest
1717
with:
18-
args: /github/workspace/README.md README.md --request-delay 1 --allow 502,503,504,509,521 --allow-ssl --allow-redirect --allow-dupe -w www.terraform.io,signup.hangops.com,kitchen.ci --white-list https://vimeo.com,kubernetes.io,kitchen.ci,debuggex.com,smile.amazon.com,scalability.org
18+
args: /github/workspace/README.md README.md --allow-timeout --request-delay 1 --allow 502,503,504,509,521 --allow-ssl --allow-redirect --allow-dupe -w www.terraform.io,signup.hangops.com,kitchen.ci --white-list https://vimeo.com,kubernetes.io,kitchen.ci,debuggex.com,smile.amazon.com

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Have you ever wondered exactly what happens when you type something like `kubect
333333
There are several good projects for monitoring.
334334

335335
- [Grafana](https://www.grafana.com) - Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture.
336-
- [OSquery](https://osquery.readthedocs.io/en/stable/) for Windows, linux, OS X, and FreeBSD. Use SQL queries to look into items such as installed programs, running processes, and other events for inventory and monitoring.
336+
- [OSquery](https://osquery.readthedocs.io/en/stable/) for Windows, linux, macOS, and FreeBSD - Use SQL queries to look into items such as installed programs, running processes, and other events for inventory and monitoring.
337337
- [Prometheus](https://www.prometheus.io/docs) - Prometheus is an open-source systems monitoring and alerting toolkit originally built at SoundCloud. Since its inception in 2012, many companies and organizations have adopted Prometheus, and the project has a very active developer and user community. It is now a standalone open source project and maintained independently of any company.
338338

339339
#### Articles/Tutorials
@@ -357,22 +357,22 @@ Enter regexes and the `grep` family of tools.
357357
When you have a multi-gigabyte logfile, it's a lot less painful to look at just the entries generated by the service that you got alerted about. Even better to only look at the error messages from the service, and something as basic as `grep -i yourservice < log | grep -i errorcode` can convert a potentially multi-hour ordeal into a quick minute or two task.
358358

359359
- [autoregex](https://www.autoregex.xyz/home) - This site will let you paste a regex in and have it translate it to English, or make an English statement like "First character A, second character B, up to three B characters, then a C and end of line" and have that translated to `^A.{0,3}BC$`.
360-
- [debuggex.com/](https://www.debuggex.com/) will visualize regular expressions graphically.
361-
- [Introducing Regular Expressions](http://shop.oreilly.com/product/0636920012337.do)
360+
- [debuggex.com](https://www.debuggex.com/) will visualize regular expressions graphically.
361+
- [Introducing Regular Expressions](http://shop.oreilly.com/product/0636920012337.do) - Michael Fitzgerald's O'Reilly Book is a good place to start.
362362
- [Regex for Noobs](https://www.janmeppe.com/blog/regex-for-noobs/) - An illustrated guide to regex that aims to provide a gentle introduction for people who never have fiddled with regex, want to, but are kind of intimidated by the whole thing.
363363
- [Regular Expressions Cookbook](http://shop.oreilly.com/product/0636920023630.do)
364364

365365
### Sed & Awk
366366

367-
- [sed and awk Pocket Reference](http://shop.oreilly.com/product/9780596003524.do) presents a concise summary of regular expressions and pattern matching, and summaries of sed and awk and how to use them to edit files and convert data from one format to another.
367+
- [Sed and Awk Pocket Reference](http://shop.oreilly.com/product/9780596003524.do) presents a concise summary of regular expressions and pattern matching, and summaries of sed and awk and how to use them to edit files and convert data from one format to another.
368368

369369
### Serverless
370370

371371
Serverless doesn't mean no sysadmins, even though there aren't instances to administer. We need to change common processes that we rely on to monitor and manage services that run on serverless platforms. There are not system level metrics to understand how our application is working.
372372

373373
Here are a few resources to help:
374374

375-
- [Building observability into a serverless application](https://vimeo.com/289905221) (Video) Yan Cui presents some guidelines to implementing observability into serverless on AWS. The patterns in this talk can be applied to other platforms as well.
375+
- [Building Observability Into a Serverless Application](https://vimeo.com/289905221) (Video) Yan Cui presents some guidelines to implementing observability into serverless on AWS. The patterns in this talk can be applied to other platforms as well.
376376

377377
### Source control
378378

@@ -467,14 +467,13 @@ Use tools with which you are productive. If you want to use a GUI Text Editor o
467467

468468
There are GUI versions of `vim` and `emacs` that have ardent followers.
469469

470-
- [Atom](https://atom.io/) is a fairly new editor with significant traction and plugin ecosystem.
471470
- [Sublime Text](http://sublimetext.com) is another editor with an extensive plugin ecosystem and arguably one of the inspirations for Atom.
472471
- [Visual Studio Code](https://code.visualstudio.com) is a cross platform editor that is gaining traction in the community.
473472

474473
## Blogs and Podcasts
475474

476-
- [Arrested Devops](https://www.arresteddevops.com/) is hosted by Matt Stratton, Trevor Hess, and Bridget Kromhout. ADO is the podcast that helps you achieve understanding, develop good practices, and operate your team and organization for maximum DevOps awesomeness.
477-
- [Code as Craft](http://codeascraft.com/) is Etsy's ops blog and is full of well written examples of dealing with real-world problems at scale.
475+
- [Arrested Devops](https://www.arresteddevops.com/) - hosted by Matt Stratton, Trevor Hess, and Bridget Kromhout. ADO is the podcast that helps you achieve understanding, develop good practices, and operate your team and organization for maximum DevOps awesomeness.
476+
- [Code as Craft](http://codeascraft.com/) - Etsy's ops blog and is full of well written examples of dealing with real-world problems at scale.
478477
- [Corecursive](https://corecursive.com/) - Each episode someone shares the fascinating story behind a piece of software being built.
479478
- [DevOps'ish](https://devopsish.com/) - A weekly newsletter assembled by open source contributor, DevOps leader, and Cloud Native Computing Foundation (CNCF) Ambassador Chris Short.
480479
- [Hey, Scripting Guy! Blog](https://blogs.technet.microsoft.com/heyscriptingguy/) is a blog that answers common (and some uncommon) PowerShell queries.
@@ -483,8 +482,8 @@ There are GUI versions of `vim` and `emacs` that have ardent followers.
483482
- [Last Week in AWS](https://www.lastweekinaws.com/) - Corey Quinn's weekly newsletter about the latest goings-on in the world of AWS.
484483
- [Last Week in Kubernetes Development](https://lwkd.info/) - Weekly newsletter summarizing code activity in the Kubernetes project: merges, PRs, deprecations, version updates, release schedules, and the weekly community meeting.
485484
- [Monitoring Weekly](https://monitoring.love/) - Weekly compilation of curated articles, news and tools related to monitoring.
486-
- [On the Metal](https://oxide.computer/podcasts) - Bryan Cantrill and Jessie Frazelle host a podcast about all sorts of interesting aspects of computing.
487-
- [PowerScripting Podcast](https://powershell.org/category/podcast/) is hosted by Jon Walz and Hal Rottenberg.
485+
- [On the Metal](https://oxide.computer/podcasts/on-the-metal) - Bryan Cantrill and Jessie Frazelle host a podcast about all sorts of interesting aspects of computing.
486+
- [PowerScripting Podcast](https://powershell.org/category/podcast/) - hosted by Jon Walz and Hal Rottenberg.
488487
- [SRE Weekly](https://sreweekly.com/) - SRE Weekly is a newsletter devoted to everything related to keeping a site or service available as consistently as possible.
489488

490489
## Online Communities

0 commit comments

Comments
 (0)