並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 18 件 / 18件

新着順 人気順

dispatchの検索結果1 - 18 件 / 18件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

dispatchに関するエントリは18件あります。 githubtechfeednetflix などが関連タグです。 人気エントリには 『無料&オープンソースでシステム障害のレポートを一元化できるNetflix製インシデント管理ツール「Dispatch」』などがあります。
  • 無料&オープンソースでシステム障害のレポートを一元化できるNetflix製インシデント管理ツール「Dispatch」

    システムの保守・運用を行うインフラエンジニアにとって、障害対応は最も責任のある仕事のひとつであり、障害の監視や通知に関するツールは「PagerDuty」や「Zabbix」が有名です。そうした障害対応を助けてくれるツールとして、Netflixが無料のオープンソースソフトウェア「Dispatch」を公開しました。 Introducing Dispatch - Netflix TechBlog https://netflixtechblog.com/introducing-dispatch-da4b8a2a8072 About - Dispatch https://hawkins.gitbook.io/dispatch/ Netflix Dispatch - Reviews, Pros & Cons | Companies using Netflix Dispatch https://stack

      無料&オープンソースでシステム障害のレポートを一元化できるNetflix製インシデント管理ツール「Dispatch」
    • GitHub Actions: Manual triggers with workflow_dispatch

      July 6, 2020 You can now create workflows that are manually triggered with the new workflow_dispatch event. You will then see a ‘Run workflow’ button on the Actions tab, enabling you to easily trigger a run. You can choose which branch the workflow is run on. In addition, you can optionally specify inputs, which GitHub will present as form elements in the UI. Workflow dispatch inputs are specified

        GitHub Actions: Manual triggers with workflow_dispatch
      • Introducing Dispatch

        By Kevin Glisson, Marc Vilanova, Forest Monsen Netflix is pleased to announce the open-source release of our crisis management orchestration framework: Dispatch!Okay, but what is Dispatch? Put simply, Dispatch is: All of the ad-hoc things you’re doing to manage incidents today, done for you, and a bunch of other things you should’ve been doing, but have not had the time! Dispatch helps us effectiv

          Introducing Dispatch
        • workflow_dispatchを使うとGithub Actionsのデバッグも楽だった - $shibayu36->blog;

          github.blog こういうの来て便利だな〜と思ってたけど、デバッグにも有用だった。 例えばGithub Actionsのon scheduleを使ってcronのように実行したい時、これまでだと デフォルトブランチにmergeして、その時間になるまで待つ ワークフローをトリガーするイベント - GitHub Docsのrepository_dispatchを有効にして、eventを発行する ただし ノート: このイベントがワークフローの実行を引き起こすのは、そのワークフローのファイルがmasterもしくはデフォルトブランチにある場合のみです。 という制約があって、変更をデフォルトブランチにmergeしないと試せなかった のように、両方とも一回デフォルトブランチにmergeしないとお試し出来なかった。 しかしworkflow_dispatchはブランチも自由に選べるので、変更しているブラ

            workflow_dispatchを使うとGithub Actionsのデバッグも楽だった - $shibayu36->blog;
          • [GitHub Actions]ブラウザ上からWorkflow手動再実行が可能になるworkflow_dispatchイベントを試行検証してみた | DevelopersIO

            はじめに 朝起きてTwitterを眺めていたところ、以下のつぶやきがReTweetで流れていました。 GitHub Actionsを手動でスタートできるようになったのはデバッグ用途にとても便利ですね https://t.co/i08TyjMQLn — ヽ(´・肉・`)ノ (@niku_name) July 12, 2020 以前のworkflowの扱い等諸々気になり、試してみました。 workflow_dispatchを適用させる 既存のworkflowに追加することも考えましたが、比較し辛くなるため新規作成で行います。言語依存を回避するためSimple workflowを利用しました。 onの項目でEnterを押してみると、workflow_dispatchの存在に気が付きます。 追加し、他のイベントと条件を合わせた上でcommitしてみます。 workflow_dispatch未適用の

              [GitHub Actions]ブラウザ上からWorkflow手動再実行が可能になるworkflow_dispatchイベントを試行検証してみた | DevelopersIO
            • GitHub Actions: Use the GITHUB_TOKEN with workflow_dispatch and repository_dispatch

              GitHub Actions: Use the GITHUB_TOKEN with workflow_dispatch and repository_dispatch actions September 8, 2022 Customers will now be able to use the GITHUB_TOKEN with workflow_dispatch and repository_dispatch events to trigger workflows. Prior to this change, events triggered by GITHUB_TOKEN would not create a new workflow run. This was done to prevent the accidental trigger of endless workflows. T

                GitHub Actions: Use the GITHUB_TOKEN with workflow_dispatch and repository_dispatch
              • GitHub - Netflix/dispatch: All of the ad-hoc things you're doing to manage incidents today, done for you, and much more!

                Put simply, Dispatch is: All of the ad-hoc things you’re doing to manage incidents today, done for you, and a bunch of other things you should've been doing, but have not had the time! Dispatch helps us effectively manage security incidents by deeply integrating with existing tools used throughout an organization (Slack, GSuite, Jira, etc.,) Dispatch is able to leverage the existing familiarity of

                  GitHub - Netflix/dispatch: All of the ad-hoc things you're doing to manage incidents today, done for you, and much more!
                • GitHub - google/highway: Performance-portable, length-agnostic SIMD with runtime dispatch

                  CPUs provide SIMD/vector instructions that apply the same operation to multiple data items. This can reduce energy usage e.g. fivefold because fewer instructions are executed. We also often see 5-10x speedups. Highway makes SIMD/vector programming practical and workable according to these guiding principles: Does what you expect: Highway is a C++ library with carefully-chosen functions that map we

                    GitHub - google/highway: Performance-portable, length-agnostic SIMD with runtime dispatch
                  • GitHub Actionsの手動実行 workflow_dispatchを試す - notebook

                    先日GitHub Actionsで特定のworkflowの手動実行ができるようになりました GitHub Actions: Manual triggers with workflow_dispatch The GitHub Blog github.blog もう見たまんまでスクショも貼る必要なさそうな気がしますが、触ってみないと何とも言えないので触ってみます workflow_dispatch Events that trigger workflows - GitHub Docs docs.github.com 書いてあるとおりrepository_dispatchとの違いは workflow_dispatch 単一workflowに対してトリガーさせる ブランチ指定が可能 repository_dispatch リポジトリの複数workflowに対してトリガーさせる イベントタイプやカス

                      GitHub Actionsの手動実行 workflow_dispatchを試す - notebook
                    • GitHub Actionsのworkflow_dispatchが表示されない場合はデフォルトブランチの設定を確認しよう | DevelopersIO

                      こんにちは。サービスグループの武田です。 結論としてはタイトルのとおりです。手動でGitHub Actionsのワークフローを実行できるworkflow_dispatchイベントを追加しようと、ブランチを切って設定をコミットしGitHubにpushしました。ところが、GitHubの画面上に表示されません。何が悪いのかと調べているうちに、公式ドキュメントに記載されている一文を見つけました。 GitHub で workflow_dispatch イベントをトリガーするには、ワークフローがデフォルトブランチに含まれている必要があります。 ワークフローの実行を手動でトリガーするには、次の手順に従います。 引用元:ワークフローの手動実行 そのため、新しくworkflow_dispatchイベントを追加して試すためには、一度デフォルトブランチを変更し終わったら戻すという手順が必要となります。 実際に確

                        GitHub Actionsのworkflow_dispatchが表示されない場合はデフォルトブランチの設定を確認しよう | DevelopersIO
                      • GitHubActionsのrepository_dispatchを試す - Qiita

                        curl -X POST -H "Authorization: token トークン" -H "Accept: application/vnd.github.everest-preview+json" -d '{"event_type": "イベントタイプ(自分で決める)"}' -i https://api.github.com/repos/オーガナイゼーション名/リポジトリ名/dispatches 詳しくはこちら: https://developer.github.com/v3/repos/#create-a-repository-dispatch-event トークンはGitHubでSettings > Developer settings > Personal access tokensで作成できます。作成するときにはrepoスコープについての権限を付与することを忘れないでください。

                          GitHubActionsのrepository_dispatchを試す - Qiita
                        • workflow_dispatch の使い方、使い所 - Qiita

                          name: workflow_dispatch sample 1 on: workflow_dispatch: jobs: printLog: runs-on: ubuntu-latest steps: - name: print log run: echo "Hello!" デフォルトブランチにマージします。GitHub上で確認すると、Actions タブからワークフローにアクセスすることができ、手動実行できるようになっています。また、ワークフローを実行するブランチを選択できるようにもなっています。 Run workflow ボタンから実行してみます。 無事実行できました。 実行時にデータを付与したい 今度は、ブランチを選択できるだけではなく、挨拶する人の名前を実行時に指定できるようにします。workflow_dispatch に続けて inputs を定義します。 name: work

                            workflow_dispatch の使い方、使い所 - Qiita
                          • The Ruby Dispatch

                            6 min Read Execute Third Party Code in a Rails App Imagine inviting random strangers from the internet to bring along their code and run it on your servers in a Rails app. Sounds like a security nightmare, doesn’t it? Where do you even start? If you run into a person at Fly.io, they might be saying s Read more Read more By Brad Gessler 9 min Read The Plan for Rails 8 Rails published an 8.0 milesto

                              The Ruby Dispatch
                            • [GitHub]保護ブランチへのマージ向けPR作成をworkflow_dispatchで手軽くやってみた | DevelopersIO

                              Workflow内で保護ブランチへのpushが失敗しており、色々と考えた末に保護を外さない前提での対策を考えた末にPRの自動作成へと行き着きました。シンプルですが使いやすいと思われます。 はじめに 何も弄ってないのにいきなり動作が変わっていると流石に慌てるものだと思ったこの頃です。 Actionsを利用してのCDを実施していたところ、普段特に問題がなかった箇所でエラーが発生していました。 remote: error: GH006: Protected branch update failed for refs/heads/master. remote: error: Waiting on code owner review from haoyayoi and/or xxxxxx. To https://github.com/xxxxxxxx/yyyyyyy ! [remote reject

                                [GitHub]保護ブランチへのマージ向けPR作成をworkflow_dispatchで手軽くやってみた | DevelopersIO
                              • Repository Dispatch - GitHub Marketplace

                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                  Repository Dispatch - GitHub Marketplace
                                • GitHub Actionsをもっと使いやすく! workflow_dispatchことはじめ - Qiita

                                  on: workflow_dispatch: inputs: # オプション項目 piyopiyo: description: "hogehoge" required: true default: fugafuga 待望の新機能 workflow_dispatch とは? 2020/07/06 に待望の機能、 workflow_dispatch がリリースされました! GitHub Actions で設定したワークフローを好きな時に実行できるイベントです。 GitHub Actions: Manual triggers with workflow_dispatch Events that trigger workflows#workflow_dispatch なにが嬉しいのか それまでは「任意タイミングでの実行」ができなかったんですよね。 どうしてもGitHub上のイベントのいずれかをトリ

                                    GitHub Actionsをもっと使いやすく! workflow_dispatchことはじめ - Qiita
                                  • Out of the Box Dynamic Dispatch — Llogiq on stuff

                                    Rust’s generics give us a whole lot of flexibility. A method that takes a trait bound argument does not need to care about the actual type of the argument it is called with. For example: fn parse_read(r: impl Read) -> MyParseableType { todo!(); } However, this will monomorphize the method: For each Read instance, one instance will be created, potentially ballooning up the code size and increasing

                                    • workflow_dispatchの誤実行防止策にinputsでの絞りを試してみた | DevelopersIO

                                      はじめに 実行できる前提が異なる複数のActionsをworkflow_dispatchで動かせるようにしたところ、名前の類似でたまたま上下に並び、選択したActionで正しいのか確認することに神経を尖らせる状態になりました。 改善策をどうするか迷いどころでしたが、S3バケット等を削除する際に対象バケット名を入力させるフォームがあることを思い出し、妥当かはともかく動作確認のため試しに真似てみることにしました。 workflow の実行条件 以下の条件での実行としてみます。 inputsでの入力を強制 入力内容がrunになっている workflow の作成 正常動作の確認にechoも実行しておきます。 name: Hello World on: workflow_dispatch: inputs: logLevel: description: 'If run flow, input "run

                                        workflow_dispatchの誤実行防止策にinputsでの絞りを試してみた | DevelopersIO
                                      1

                                      新着記事