{"id":24568522,"url":"https://github.com/ccin2p3/collectd-plugins-riemann","last_synced_at":"2025-03-17T05:14:26.116Z","repository":{"id":30905092,"uuid":"34462897","full_name":"ccin2p3/Collectd-Plugins-Riemann","owner":"ccin2p3","description":"Collectd plugin to query riemann","archived":false,"fork":false,"pushed_at":"2015-04-30T13:44:27.000Z","size":168,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-01-23T14:41:28.586Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ccin2p3.png","metadata":{"files":{"readme":"README","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}},"created_at":"2015-04-23T14:55:44.000Z","updated_at":"2015-04-30T13:41:47.000Z","dependencies_parsed_at":"2022-09-09T01:52:28.629Z","dependency_job_id":null,"html_url":"https://github.com/ccin2p3/Collectd-Plugins-Riemann","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccin2p3%2FCollectd-Plugins-Riemann","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccin2p3%2FCollectd-Plugins-Riemann/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccin2p3%2FCollectd-Plugins-Riemann/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccin2p3%2FCollectd-Plugins-Riemann/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccin2p3","download_url":"https://codeload.github.com/ccin2p3/Collectd-Plugins-Riemann/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243976485,"owners_count":20377691,"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":"2025-01-23T14:40:34.245Z","updated_at":"2025-03-17T05:14:26.100Z","avatar_url":"https://github.com/ccin2p3.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Collectd-Plugins-Riemann\n\n# NAME\n\nCollectd::Plugins::Riemann::Query - Collectd plugin for querying Riemann Events\n\n# SYNOPSIS\n\nTo be used with [Collectd](https://metacpan.org/pod/Collectd).\n\n- From the collectd configfile\n\n        \u003cLoadPlugin \"perl\"\u003e\n          Globals true\n        \u003c/LoadPlugin\u003e\n\n        \u003cPlugin \"perl\"\u003e\n          BaseName \"Collectd::Plugins\"\n          LoadPlugin \"Riemann::Query\"\n          \u003cPlugin \"Riemann::Query\"\u003e\n            Host     myriemann\n            Port     5555\n            Protocol TCP\n            # Static plugin metadata\n            \u003cPlugin foo\u003e\n              Query          \"tagged \\\"foo\\\" and service =~ \\\"bar%\\\"\"\n              Plugin         foo\n              PluginInstance bar\n              Type           gauge\n            \u003c/Plugin\u003e\n            # plugin metadata from riemann attributes\n            \u003cPlugin\u003e\n              Query              \"tagged \\\"aggregation\\\"\"\n              PluginFrom         plugin\n              PluginInstanceFrom plugin_instance\n              TypeFrom           ds_type\n              TypeInstanceFrom   type_instance\n            \u003c/Plugin\u003e\n          \u003c/Plugin\u003e\n        \u003c/Plugin\u003e\n\n# Root block configuration options\n\n- Host STRING\n\n    riemann host to query. defaults to localhost\n\n- Port STRING\n\n    riemann port to query. defaults to 5555\n\n- Protocol STRING\n\n    defaults to TCP\n\n# Plugin block configuration options\n\n- Query STRING\n\n    Riemann Query. Mandatory\n\n- Host STRING\n\n    Static host part of collectd plugin. If unset, the host part of the riemann event will be used instead.\n\n- PluginFrom/TypeFrom/PluginInstanceFrom/TypeInstanceFrom STRING\n\n    Dynamic plugin metadata: riemann attribute to be used to set corresponding collectd metadata. service and host are also possible. Defaults to plugin, type, plugin\\_instance and type\\_instance respectively.\n\n- Plugin/Type/PluginInstance/TypeInstance STRING\n\n    Will be used instead if no \\*From counterpart is used or found in riemann event. Can be used as a fallback. Default for Type is gauge and for Plugin is riemann service of the event.\n\n# SUBROUTINES\n\nPlease refer to the [Collectd](https://metacpan.org/pod/Collectd) documentation.\nOr `man collectd-perl`\n\n# FILES\n\n/etc/collectd.conf\n/etc/collectd.d/\n\n# SEE ALSO\n\n* [collectd](https://github.com/collectd/collectd)\n* [riemann](https://github.com/aphyr/riemann)\n* [Collectd](https://github.com/collectd/collectd/blob/master/bindings/perl/lib/Collectd.pm) perl module\n* [collectd-perl](https://github.com/collectd/collectd/blob/master/src/collectd-perl.pod) manpage\n* [collmann](https://github.com/exoscale/collmann) embedding riemann into collectd\n\n## INSTALLATION\n\nTo install this module, run the following commands:\n\n\tperl Makefile.PL\n\tmake\n\tmake test\n\tmake install\n\n## SUPPORT AND DOCUMENTATION\n\nAfter installing, you can find documentation for this module with the\nperldoc command.\n\n    perldoc Collectd::Plugins::Riemann\n\n## DEVELOPMENT\n\nhttps://gitlab.in2p3.fr/wernli/collectd-plugins-riemann\nhttps://gitlab.in2p3.fr/wernli/collectd-plugins-riemann/issues\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccin2p3%2Fcollectd-plugins-riemann","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccin2p3%2Fcollectd-plugins-riemann","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccin2p3%2Fcollectd-plugins-riemann/lists"}