{"id":13529328,"url":"https://github.com/lexmag/fluxter","last_synced_at":"2025-04-05T21:10:23.240Z","repository":{"id":47039358,"uuid":"52401197","full_name":"lexmag/fluxter","owner":"lexmag","description":"High-performance and reliable InfluxDB writer for Elixir","archived":false,"fork":false,"pushed_at":"2023-12-19T20:38:46.000Z","size":62,"stargazers_count":105,"open_issues_count":8,"forks_count":20,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-29T20:07:32.262Z","etag":null,"topics":["elixir","influxdb","instrumentation","metrics"],"latest_commit_sha":null,"homepage":"https://hexdocs.pm/fluxter","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lexmag.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2016-02-24T00:10:14.000Z","updated_at":"2024-05-09T09:00:41.000Z","dependencies_parsed_at":"2024-04-13T01:58:25.391Z","dependency_job_id":"a97812ce-b655-4815-b051-b09a5f901b63","html_url":"https://github.com/lexmag/fluxter","commit_stats":{"total_commits":65,"total_committers":6,"mean_commits":"10.833333333333334","dds":"0.36923076923076925","last_synced_commit":"850fe0b03a43f91bd7baab0b73db79db863f5808"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexmag%2Ffluxter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexmag%2Ffluxter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexmag%2Ffluxter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lexmag%2Ffluxter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lexmag","download_url":"https://codeload.github.com/lexmag/fluxter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247399885,"owners_count":20932880,"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","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":["elixir","influxdb","instrumentation","metrics"],"created_at":"2024-08-01T07:00:35.421Z","updated_at":"2025-04-05T21:10:23.212Z","avatar_url":"https://github.com/lexmag.png","language":"Elixir","funding_links":[],"categories":["Client libraries","Metrics"],"sub_categories":["Unofficial"],"readme":"# Fluxter\n\n![CI Status](https://github.com/lexmag/fluxter/workflows/CI/badge.svg)\n[![Hex Version](https://img.shields.io/hexpm/v/fluxter.svg \"Hex Version\")](https://hex.pm/packages/fluxter)\n\nFluxter is an [InfluxDB](https://www.influxdata.com/) writer for Elixir. It uses the InfluxDB line protocol over UDP.\n\n## Installation\n\nAdd Fluxter as a dependency to your `mix.exs` file:\n\n```elixir\ndefp deps() do\n  [{:fluxter, \"~\u003e 0.8\"}]\nend\n```\n\nThen run `mix deps.get` in your shell to fetch the dependencies.\n\n## Usage\n\nSee [the documentation](https://hexdocs.pm/fluxter) for detailed usage information.\n\nA module that uses Fluxter becomes an InfluxDB connection pool:\n\n```elixir\ndefmodule MyApp.Fluxter do\n  use Fluxter\nend\n```\n\nEach Fluxter pool provides a `start_link/1` function that starts the pool and connects to InfluxDB; this function needs to be invoked before the pool can be used.\nTypically, you won't call `start_link/1` directly as you'll want to\nadd a Fluxter pool to your application's supervision tree.\nFor this use case, pools provide a `child_spec/1` function:\n\n```elixir\ndef start(_type, _args) do\n  children = [\n    MyApp.Fluxter,\n    #...\n  ]\n  Supervisor.start_link(children, strategy: :one_for_one)\nend\n```\n\nOnce the Fluxter pool is started, its `write/2,3`, `measure/2,3,4`, and other functions can successfully be used to send points to the data store.\n\n## License\n\nThis software is licensed under [the ISC license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexmag%2Ffluxter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flexmag%2Ffluxter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flexmag%2Ffluxter/lists"}