Skip to content

Instantly share code, notes, and snippets.

View apaskulin's full-sized avatar

Alex Paskulin apaskulin

  • California
View GitHub Profile
@apaskulin
apaskulin / ports.md
Last active January 15, 2019 17:54

Which ports does Sensu use?

The Sensu backend uses:

  • 2379 (TCP) Sensu storage client listener: Required for Sensu backends using an external etcd instance
  • 2380 (HTTP/HTTPS) Sensu storage peer listener: Required for other Sensu backends in a cluster
  • 3000 (HTTP/HTTPS) Sensu dashboard: Required for all Sensu backends using a Sensu dashboard
  • 8080 (HTTP/HTTPS) Sensu API: Required for all users accessing the Sensu API
  • 8081 (WS/WSS) Agent API: Required for all Sensu agents connecting to a Sensu backend
@apaskulin
apaskulin / hack2.md
Last active September 24, 2018 17:43
Hack Session #2: Alerts in Sensu 2.0
@apaskulin
apaskulin / git-cheat-sheet.md
Created September 18, 2018 17:36
Git Cheat Sheet
# Interactive rebase, replace 4 with number of commits into the past you'd like to rebase
git rebase -i HEAD~4

# To resolve merge conflicts
git fetch [remote org]
git pull -—rebase [remote org] master
# Open a text editor (like Atom), detect and resolve conflicts
git rebase -—continue
@apaskulin
apaskulin / sensu-q3.md
Last active April 26, 2018 19:17
Sensu Docs: Hugo Experimentation

Sensu Docs: Hugo Experimentation

April 25, 2018

New Version

This commit adds version 4.10 to the Sensu Core docs.

New content for https://github.com/sensu/sensu-docs/wiki/Hugo-Formatting-and-Layouts:

@apaskulin
apaskulin / sensu-q2.md
Created April 25, 2018 16:41
Sensu Docs: Contributor Experience

Sensu Docs: Contributor Experience

April 25, 2018

Local Setup

Installing and running the docs was super quick and easy. I'm very impressed with Yarn, especially in contrast with Ruby package management.

@apaskulin
apaskulin / sensu-q1.md
Last active May 21, 2018 23:56
Sensu Docs: Information Review
@apaskulin
apaskulin / advanced-formatting-github-markdown.md
Created April 15, 2018 17:49
Tips and tricks for more formatting options in GitHub Markdown

Advanced Formatting in GitHub Markdown

GitHub Flavored Markdown lets you create useful documents in GitHub and GitHub Enterprise using .md files. Like other varieties of markdown, GitHub Markdown tries to be as readable as possible in its raw form, resulting in an intentionally limited set of formatting options. However, these options can feel restrictive when dealing with complex content.

Although GitHub Markdown strips out most HTML tags, here are a few tricks that can give you more flexibility when formatting your documents. These advanced formatting options can make your documents more useable, but they come at the expense of plain text readability, so use with caution.