{"id":28501937,"url":"https://github.com/fluent/fluent-plugin-opensearch","last_synced_at":"2025-07-05T02:31:23.320Z","repository":{"id":37766780,"uuid":"445032872","full_name":"fluent/fluent-plugin-opensearch","owner":"fluent","description":"OpenSearch Plugin for Fluentd ","archived":false,"fork":false,"pushed_at":"2025-03-25T01:42:12.000Z","size":1569,"stargazers_count":64,"open_issues_count":36,"forks_count":22,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-06-08T16:08:24.843Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","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/fluent.png","metadata":{"files":{"readme":"README.OpenSearchGenID.md","changelog":"History.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","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,"publiccode":null,"codemeta":null}},"created_at":"2022-01-06T03:53:04.000Z","updated_at":"2025-04-03T08:06:21.000Z","dependencies_parsed_at":"2025-02-12T09:27:28.064Z","dependency_job_id":"23673892-d126-4f8a-a1c6-36019966dff0","html_url":"https://github.com/fluent/fluent-plugin-opensearch","commit_stats":{"total_commits":973,"total_committers":110,"mean_commits":8.845454545454546,"dds":0.6166495375128469,"last_synced_commit":"7c8ff50d960b19823304549061ba60937e1bdbc2"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/fluent/fluent-plugin-opensearch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent%2Ffluent-plugin-opensearch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent%2Ffluent-plugin-opensearch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent%2Ffluent-plugin-opensearch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent%2Ffluent-plugin-opensearch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluent","download_url":"https://codeload.github.com/fluent/fluent-plugin-opensearch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent%2Ffluent-plugin-opensearch/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263671742,"owners_count":23494024,"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-06-08T16:08:30.319Z","updated_at":"2025-07-05T02:31:23.314Z","avatar_url":"https://github.com/fluent.png","language":"Ruby","readme":"## Index\n\n* [Usage](#usage)\n* [Configuration](#configuration)\n  + [hash_id_key](#hash_id_key)\n  + [include_tag_in_seed](#include_tag_in_seed)\n  + [include_time_in_seed](#include_time_in_seed)\n  + [use_record_as_seed](#use_record_as_seed)\n  + [use_entire_record](#use_entire_record)\n  + [record_keys](#record_keys)\n  + [separator](#separator)\n  + [hash_type](#hash_type)\n* [Advanced Usage](#advanced-usage)\n\n## Usage\n\nIn your Fluentd configuration, use `@type opensearch_genid`. Additional configuration is optional, default values would look like this:\n\n```\n\u003cfilter\u003e\n  @type opensearch_genid\n  hash_id_key _hash\n  include_tag_in_seed false\n  include_time_in_seed false\n  use_record_as_seed false\n  use_entire_record false\n  record_keys []\n  separator _\n  hash_type sha1\n\u003c/filter\u003e\n```\n\n## Configuration\n\n### hash_id_key\n\n```\nhash_id_key _id\n```\n\nYou can specify generated hash storing key.\n\n### include_tag_in_seed\n\n```\ninclude_tag_in_seed true\n```\n\nYou can specify to use tag for hash generation seed.\n\n### include_time_in_seed\n\n```\ninclude_time_in_seed true\n```\n\nYou can specify to use time for hash generation seed.\n\n### use_record_as_seed\n\n```\nuse_record_as_seed true\n```\n\nYou can specify to use record in events for hash generation seed. This parameter should be used with [record_keys](#record_keys) parameter in practice.\n\n### record_keys\n\n```\nrecord_keys request_id,pipeline_id\n```\n\nYou can specify keys which are record in events for hash generation seed. This parameter should be used with [use_record_as_seed](#use_record_as_seed) parameter in practice.\n\n### use_entire_record\n\n```\nuse_entire_record true\n```\n\nYou can specify to use entire record in events for hash generation seed.\n\n\n### separator\n\n```\nseparator |\n```\n\nYou can specify separator charactor to creating seed for hash generation.\n\n### hash_type\n\n```\nhash_type sha1\n```\n\nYou can specify hash algorithm. Support algorithms `md5`, `sha1`, `sha256`, `sha512`. Default: `sha1`\n\n## Advanced Usage\n\nOpensearch GenID plugin can handle record contents differing with the following parameters:\n\n```aconf\n\u003cfilter the.awesome.your.routing.tag\u003e\n  @type opensearch_genid\n  use_entire_record true\n  hash_type sha1\n  hash_id_key _hash\n  separator _\n  inc_time_as_key true\n  inc_tag_as_key true\n\u003c/filter\u003e\n```\n\nThe above configuration can handle tag, time, and record differing and generate different base64 encoded hash per record.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent%2Ffluent-plugin-opensearch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent%2Ffluent-plugin-opensearch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent%2Ffluent-plugin-opensearch/lists"}