{"id":32164941,"url":"https://github.com/conduitframework/conduit_appsignal","last_synced_at":"2025-10-21T14:56:21.545Z","repository":{"id":48289922,"uuid":"91204515","full_name":"conduitframework/conduit_appsignal","owner":"conduitframework","description":"Incorporates AppSignal instrumentation into Conduit","archived":false,"fork":false,"pushed_at":"2021-08-03T05:21:04.000Z","size":33,"stargazers_count":2,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-21T14:55:55.209Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/conduitframework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-13T21:44:55.000Z","updated_at":"2023-05-14T14:50:35.000Z","dependencies_parsed_at":"2022-08-26T11:10:34.557Z","dependency_job_id":null,"html_url":"https://github.com/conduitframework/conduit_appsignal","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/conduitframework/conduit_appsignal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conduitframework%2Fconduit_appsignal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conduitframework%2Fconduit_appsignal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conduitframework%2Fconduit_appsignal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conduitframework%2Fconduit_appsignal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/conduitframework","download_url":"https://codeload.github.com/conduitframework/conduit_appsignal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conduitframework%2Fconduit_appsignal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280281397,"owners_count":26303709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-21T02:00:06.614Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-21T14:56:20.442Z","updated_at":"2025-10-21T14:56:21.539Z","avatar_url":"https://github.com/conduitframework.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ConduitAppsignal\n\nA plug to add Appsignal instrumentation to your conduit pipelines.\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed\nby adding `conduit_appsignal` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [{:conduit_appsignal, \"~\u003e 0.6.3\"}]\nend\n```\n\n## Usage\n\nIn your broker, early in an incoming pipeline, include the `ConduitAppsignal.Plug.Transaction`. Early\nin an outgoing pipeline include `ConduitAppsignal.Plug.Publish`. If you are using `Conduit.Plug.Retry`,\nadd `ConduitAppsignal.Plug.Attempt` directly after it. If you want to capture errors, add\n`ConduitAppsignal.Plug.CaptureError` before anything that will handle exceptions, like `Conduit.Plug.AckException`.\n\n``` elixir\n# broker.ex\npipeline :in_tracking do\n  plug ConduitAppsignal.Plug.Transaction\nend\n\npipeline :out_tracking do\n  plug ConduitAppsignal.Plug.Publish\nend\n\npipeline :error_handling do\n  plug Conduit.Plug.AckException\n  plug Conduit.Plug.DeadLetter, broker: MiddleOut.Broker, publish_to: :error\n  plug Conduit.Plug.Retry, attempts: 5\n  plug ConduitAppsignal.Plug.Attempt\n  plug ConduitAppsignal.Plug.CaptureError\nend\n\nincoming MyApp do\n  pipe_through [:in_tracking, :error_handling, :deserialize] # Include tracking early\n\n  # subscribes ...\nend\n\noutgoing do\n  pipe_through [:out_tracking, :serialize] # Include tracking early\n\n  # publishes ...\nend\n```\n\nIn each subscriber:\n\n``` elixir\ndefmodule MySubscriber do\n  use Conduit.Subscriber\n  plug ConduitAppsignal.Plug.Subscriber, subscriber: __MODULE__\n\n  # ...\nend\n```\n\nDocumentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)\nand published on [HexDocs](https://hexdocs.pm). Once published, the docs can\nbe found at [https://hexdocs.pm/conduit_appsignal](https://hexdocs.pm/conduit_appsignal).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconduitframework%2Fconduit_appsignal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconduitframework%2Fconduit_appsignal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconduitframework%2Fconduit_appsignal/lists"}