{"id":37713625,"url":"https://github.com/infrasonar/esx-probe","last_synced_at":"2026-01-16T13:22:29.667Z","repository":{"id":64504632,"uuid":"574928369","full_name":"infrasonar/esx-probe","owner":"infrasonar","description":"InfraSonar VMware ESX Probe","archived":false,"fork":false,"pushed_at":"2025-04-09T09:39:19.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-14T05:02:58.767Z","etag":null,"topics":["cesbit","esx","esxi","infrasonar","monitoring","vmware","vmware-esxi"],"latest_commit_sha":null,"homepage":"https://docs.infrasonar.com/collectors/probes/vmware/esx/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/infrasonar.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2022-12-06T11:37:56.000Z","updated_at":"2025-04-09T09:39:05.000Z","dependencies_parsed_at":"2023-09-23T11:05:19.591Z","dependency_job_id":"7bc80f2a-c8e7-474b-bd7d-2a9064cda7a9","html_url":"https://github.com/infrasonar/esx-probe","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/infrasonar/esx-probe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infrasonar%2Fesx-probe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infrasonar%2Fesx-probe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infrasonar%2Fesx-probe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infrasonar%2Fesx-probe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/infrasonar","download_url":"https://codeload.github.com/infrasonar/esx-probe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infrasonar%2Fesx-probe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479033,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cesbit","esx","esxi","infrasonar","monitoring","vmware","vmware-esxi"],"created_at":"2026-01-16T13:22:28.978Z","updated_at":"2026-01-16T13:22:29.657Z","avatar_url":"https://github.com/infrasonar.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/infrasonar/esx-probe/workflows/CI/badge.svg)](https://github.com/infrasonar/esx-probe/actions)\n[![Release Version](https://img.shields.io/github/release/infrasonar/esx-probe)](https://github.com/infrasonar/esx-probe/releases)\n\n# InfraSonar VMware ESX Probe\n\nDocumentation: https://docs.infrasonar.com/collectors/probes/vmware/esx/\n\n## Environment variable\n\nVariable            | Default                        | Description\n------------------- | ------------------------------ | ------------\n`AGENTCORE_HOST`    | `127.0.0.1`                    | Hostname or Ip address of the AgentCore.\n`AGENTCORE_PORT`    | `8750`                         | AgentCore port to connect to.\n`INFRASONAR_CONF`   | `/data/config/infrasonar.yaml` | File with probe and asset configuration like credentials.\n`MAX_PACKAGE_SIZE`  | `500`                          | Maximum package size in kilobytes _(1..2000)_.\n`MAX_CHECK_TIMEOUT` | `300`                          | Check time-out is 80% of the interval time with `MAX_CHECK_TIMEOUT` in seconds as absolute maximum.\n`DRY_RUN`           | _none_                         | Do not run demonized, just return checks and assets specified in the given yaml _(see the [Dry run section](#dry-run) below)_.\n`LOG_LEVEL`         | `warning`                      | Log level (`debug`, `info`, `warning`, `error` or `critical`).\n`LOG_COLORIZED`     | `0`                            | Log using colors (`0`=disabled, `1`=enabled).\n`LOG_FMT`           | `%y%m%d %H:%M:%S`              | Log format prefix.\n`COLLECT_PERFORMANCE_METRICS` | `1`                  | Collect additional performance metrics (`0`=disabled, `1`=enabled).\n\n## Docker build\n\n```\ndocker build -t esx-probe . --no-cache\n```\n\n## Config\n\n```yaml\nvcenter:\n  config:\n    username: \"my_account\"\n    password: \"my_password\"\n```\n\n## Dry run\n\nAvailable checks:\n- `alarms`\n- `capabilities`\n- `configIssues`\n- `datastore`\n- `hardwareStatus`\n- `host`\n- `hostVMs`\n- `licenses`\n- `network`\n- `sensor`\n\nCreate a yaml file, for example _(test.yaml)_:\n\n```yaml\nasset:\n  name: \"foo.local\"\n  check: \"host\"\n  config:\n    address: \"192.168.1.2\"\n```\n\nRun the probe with the `DRY_RUN` environment variable set the the yaml file above.\n\n```\nDRY_RUN=test.yaml python main.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfrasonar%2Fesx-probe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfrasonar%2Fesx-probe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfrasonar%2Fesx-probe/lists"}