1923

都内と業界の隅っこで生活しているエンジニアのノート

Container

Azure Container Apps と Dapr と Go のサンプル

Azure Container Apps で動かす Goアプリから Dapr 経由でHTTPとかSMTPのサービスを使ってみます。合わせて、よく使いそうなSendGridでメール送信、Cronで定期実行も試したので記載。 まずは単純にnet/httpパッケージで、サンプルコードを実行するHTTPサーバ…

Azure Container Instances のGoアプリから Fluentd 経由で Azure Monitor にログ出力

Azure Container Instances(ACI)で動いているGoアプリのログをAzure Monitorに送信してみます。今回はGoアプリから直接送らずに同じコンテナグループ内のFluentd経由でAzure Monitorにログを転送しています アプリの準備 fluent-logger-golangを使って、Goア…

Azure Functions カスタム コンテナーで Golang を使う

Azure Functions のカスタム ハンドラーが GA です。カスタム ハンドラーを使うと Golang でもで関数アプリを実装することができます。 ですが・・・今回は、Azure Functions カスタム コンテナーです。Azure Functions Core Tools 使って function app と D…