{"id":13761668,"url":"https://github.com/census-ecosystem/opencensus-go-exporter-signalfx","last_synced_at":"2025-05-10T14:30:32.603Z","repository":{"id":57537092,"uuid":"146041443","full_name":"census-ecosystem/opencensus-go-exporter-signalfx","owner":"census-ecosystem","description":"OpenCensus Go exporters for SignalFX","archived":true,"fork":false,"pushed_at":"2023-05-02T19:08:35.000Z","size":23,"stargazers_count":0,"open_issues_count":3,"forks_count":3,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-11-16T20:30:47.261Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/census-ecosystem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"AUTHORS"}},"created_at":"2018-08-24T21:25:53.000Z","updated_at":"2023-07-31T17:43:19.000Z","dependencies_parsed_at":"2024-01-17T16:58:08.406Z","dependency_job_id":"21932164-e04d-49ee-895f-caa794fded18","html_url":"https://github.com/census-ecosystem/opencensus-go-exporter-signalfx","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-go-exporter-signalfx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-go-exporter-signalfx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-go-exporter-signalfx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/census-ecosystem%2Fopencensus-go-exporter-signalfx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/census-ecosystem","download_url":"https://codeload.github.com/census-ecosystem/opencensus-go-exporter-signalfx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253428174,"owners_count":21906863,"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":[],"created_at":"2024-08-03T14:00:21.770Z","updated_at":"2025-05-10T14:30:32.327Z","avatar_url":"https://github.com/census-ecosystem.png","language":"Go","funding_links":[],"categories":["Exporters"],"sub_categories":["Go"],"readme":"\u003e **Warning**\n\u003e\n\u003e OpenCensus and OpenTracing have merged to form [OpenTelemetry](https://opentelemetry.io), which serves as the next major version of OpenCensus and OpenTracing.\n\u003e\n\u003e OpenTelemetry has now reached feature parity with OpenCensus, with tracing and metrics SDKs available in .NET, Golang, Java, NodeJS, and Python. **All OpenCensus Github repositories, except [census-instrumentation/opencensus-python](https://github.com/census-instrumentation/opencensus-python), will be archived on July 31st, 2023**. We encourage users to migrate to OpenTelemetry by this date.\n\u003e\n\u003e To help you gradually migrate your instrumentation to OpenTelemetry, bridges are available in Java, Go, Python, and JS. [**Read the full blog post to learn more**](https://opentelemetry.io/blog/2023/sunsetting-opencensus/).\n\n# OpenCensus SignalFx Stats Exporter for Go\n[![Gitter chat][gitter-image]][gitter-url]\n\nThe _OpenCensus SignalFx Stats Exporter for Go_ is a stats exporter that\nexports data to [SignalFx](https://signalfx.com), a real-time monitoring\nsolution for cloud and distributed applications. SignalFx ingests that\ndata and offers various visualizations on charts, dashboards and service\nmaps, as well as real-time anomaly detection.\n\n## Quickstart\n\n### Import\n\n```\nimport \"opencensus-go-signalfx/exporter/signalfx\"\n```\n\nThe API of this project is still evolving.\nThe use of vendoring or a dependency management tool is recommended.\n\n\n### Prerequisites\n\nTo use this exporter, one must have a [SignalFx](https://signalfx.com)\naccount and corresponding [data ingest\ntoken](https://docs.signalfx.com/en/latest/admin-guide/tokens.html).\n\nOpenCensus Go libraries require Go 1.8 or later.\n\n### Register the exporter\n\n```go\nfunc main() {\n    // SignalFx token is part of the Options struct.\n    // Stats will be reported every second by default.\n    exporter, err := signalfx.NewExporter(signalfx.Options{Token: \"token\"})\n    ...\n}\n```\n\nIt is possible to set a different endpoint for SignalFx, use:\n\n```go\nfunc main() {\n    exporter, err := signalfx.NewExporter(signalfx.Options{Token: \"token\", DatapointEndpoint: \"Endpoint\"})\n    ....\n}\n```\n\nIt is possible to set different reporting intervals by using `SetReportingPeriod()`, for example:\n\n```go\nfunc main() {\n    exporter, err := signalfx.NewExporter(signalfx.Options{Token: \"token\"})\n    view.RegisterExporter(exporter)\n    ....\n    view.SetReportingPeriod(5 * time.Second)\n}\n```\n\n[gitter-image]: https://badges.gitter.im/census-instrumentation/lobby.svg\n[gitter-url]: https://gitter.im/census-instrumentation/lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcensus-ecosystem%2Fopencensus-go-exporter-signalfx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcensus-ecosystem%2Fopencensus-go-exporter-signalfx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcensus-ecosystem%2Fopencensus-go-exporter-signalfx/lists"}