英題:Fluentd Hacking Guide
30分しかないため斜線部分は今回省く
- Fluentd の起動シーケンスとプラグインの読み込み
Fluentd の設定ファイルのパース- Input Plugin から Output Plugin にデータが渡る流れ
import { useState } from "react"; | |
import TorusSdk from "@toruslabs/torus-direct-web-sdk"; | |
const App = () => { | |
const [torusSdk, setTorusSdk] = useState(); | |
const onMount = async () => { | |
const sdk = new TorusSdk({ | |
baseUrl: `${window.location.origin}/auth`, | |
enableLogging: true, |
最近、社内で私が「何者で何をしているのか見えないので可視化して欲しい」という案件が出ているらしいので、ヘコヘコと徒然なるままに書いていきたいと思うのであります。
社内向けというだけでなく社外の人にも発信出来る内容に、との仕様も要求され、社外向けには出来るだけ旬なネタで、かつ、社内向けにはそれを理解する上で必要な関連する技術を個々に触れながら基礎知識が無くても理解出来るように、との追加仕様も提示されております。
で、何をネタにしてどのように書けばいいのか迷った訳ですが、自分が実際にやって来た内容である CoreOS であればそこそこ旬であるし、それをおさらいしつつ、関連技術も Docker、Omaha、systemd、BtrFS、Golang、etcd、Kubernetes 等々多岐にわたるので、それらに関して私見も含めてわかりやすく書ければいいかなぁと、とりあえず書き始めようとしている次第であります。
#A script to post back to Slack via the webhooks API
##why this exists?
Slack's own hubot adapter needs the hubot installation to be accessible via web. This can be problematic in some cases, as a security risk.
This hack let's you run your Hubot behind a firewall, and connect to Slack via the IRC gateway.
To respond, Hubot uses the incoming webhooks end-point of Slack.
日時: | 2024-11-10 |
---|---|
作: | 時雨堂 |
バージョン: | 2024.5 |
URL: | https://shiguredo.jp/ |
時雨堂クラウドサービスを支える技術
ActionDispatch::Request.any_instance.stub(:remote_ip).and_return("192.168.0.1") |
#!/bin/bash | |
if [[ $1 == "" && $2 == "" ]] | |
then | |
echo "USAGE: $0 SINCE_DATE [AUTHOR_PATTERN]" | |
exit | |
fi | |
DATE=$1 # 10-1-2011, 2012-04-22, etc | |
AUTHOR=$2 # author pattern (regexp) |
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |