{"id":31904176,"url":"https://github.com/cloudfoundry-community/cf-plugin-kibana-me-logs","last_synced_at":"2025-10-13T13:47:51.463Z","repository":{"id":28962872,"uuid":"32489095","full_name":"cloudfoundry-community/cf-plugin-kibana-me-logs","owner":"cloudfoundry-community","description":"Launches the Kibana UI (from kibana-me-logs) for an application","archived":false,"fork":false,"pushed_at":"2017-03-22T02:01:36.000Z","size":45,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-06-19T10:05:53.254Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/cloudfoundry-community.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":"2015-03-18T23:06:17.000Z","updated_at":"2024-02-09T14:28:44.000Z","dependencies_parsed_at":"2022-08-17T19:15:12.647Z","dependency_job_id":null,"html_url":"https://github.com/cloudfoundry-community/cf-plugin-kibana-me-logs","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/cloudfoundry-community/cf-plugin-kibana-me-logs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-plugin-kibana-me-logs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-plugin-kibana-me-logs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-plugin-kibana-me-logs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-plugin-kibana-me-logs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudfoundry-community","download_url":"https://codeload.github.com/cloudfoundry-community/cf-plugin-kibana-me-logs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-plugin-kibana-me-logs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015339,"owners_count":26085685,"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-13T02:00:06.723Z","response_time":61,"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-13T13:47:44.982Z","updated_at":"2025-10-13T13:47:51.449Z","avatar_url":"https://github.com/cloudfoundry-community.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Overview\n========\n\nLaunches the Kibana UI (from [kibana-me-logs](https://github.com/cloudfoundry-community/kibana-me-logs)\\) for an application.\n\n![demo](http://cl.ly/image/2H1x2m1B3m0v/cf%20kibana-me-logs%20v0.3.gif)\n\nLearn more about using CLI plugins from https://blog.starkandwayne.com/2015/03/04/installing-cloud-foundry-cli-plugins/\n\nInstallation\n------------\n\nFrom community plugin repo:\n\n```\n$ cf add-plugin-repo community https://plugins.cfapps.io/\n$ cf install-plugin kibana-me-logs -r community\n```\n\nFrom source, see the Development section below.\n\nUpgrade\n-------\n\nTo upgrade you must first uninstall the plugin and then install as above:\n\n```\n$ cf uninstall-plugin kibana-me-logs\n```\n\nUsage\n-----\n\n```\n$ cf kibana-me-logs \u003capp\u003e [--no-auth]\n```\n\nWill launch the Kibana UI and show logs for the requested app.\n\nIt assumes that `\u003capp\u003e` is the an app bound to the same `logstash14` logstash service.\n\n`cf kibana-me-logs` will automatically generate a user/password for you to use in conjunction with your kibana-me-logs app, unless you provide the --no-auth option.\n\nAdvanced Usage\n--------------\n\nTo use a custom kibana-me-logs repo, specify the repo URL in the `KIBANA_ME_LOGS_REPO`\nenvironment variable.\n\nTo bypass cloning kibana-me-logs, and use a local source directory, specify the path in the\n`KIBANA_ME_LOGS_APP_DIR` environment variable.\n\nTo use a custom temp directory (overriding `/tmp`), for holding the kibana-me-logs repo being\npushed, use the `TMP_DIR` environment variable.\n\n\nDevelopment\n-----------\n\nTo build from source, first fetch the Cloud Foundry CLI project and generate its internal go files:\n\n```\ngo get github.com/cloudfoundry/cli/cf\ncd $GOPATH/src/github.com/cloudfoundry/cli\n./bin/build\n```\n\nNext fetch this project:\n\n```\n$ go get github.com/cloudfoundry-community/cf-plugin-kibana-me-logs\n$ cf install-plugin $GOPATH/bin/cf-plugin-kibana-me-logs\n```\n\nThere is a helper to uninstall, build, install, and run the plugin:\n\n```\n./bin/run.sh \u003cARGS\u003e\n```\n\nOr manually:\n\n```\ncf uninstall-plugin kibana-me-logs\ngo get ./...\ncf install-plugin $GOPATH/bin/cf-plugin-kibana-me-logs\ncf kibana-me-logs \u003cARGS\u003e\n```\n\nOr a one-liner:\n\n```\ncf uninstall-plugin kibana-me-logs; go get ./...; cf install-plugin $GOPATH/bin/cf-plugin-kibana-me-logs \u0026\u0026 cf kibana-me-logs \u003cARGS\u003e\n```\n\n### Bump version \u0026 release\n\nThere is a helper script to bump the version number `VERSION` file and regenerate the gobindata `version.go` file:\n\n```\nexport VERSION=X.Y.Z\n./bin/bump_version.sh $VERSION\ngit commit -a -m \"bump v$VERSION\"\ngit push\n./bin/build.sh\n./bin/release.sh\n./bin/plugin_index.sh\n```\n\nPut the output from `plugin_index.sh` into the\n[cloudfoundry-incubator/cli-plugin-repo][1] repository and\nsubmit a pull request to update http://plugins.cloudfoundry.org\n\n\n[1]: https://github.com/cloudfoundry-incubator/cli-plugin-repo\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Fcf-plugin-kibana-me-logs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudfoundry-community%2Fcf-plugin-kibana-me-logs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Fcf-plugin-kibana-me-logs/lists"}