Skip to content

Commit

Permalink
Change default namespace to cf version 6.22.1+6b7af9c-2016-09-24, Clo…
Browse files Browse the repository at this point in the history
…ud Foundry command line tool

Usage: cf [global options] command [arguments...] [command options]

�[38;1mBefore getting started:�[0m
  config    login,l      target,t
  help,h    logout,lo

�[38;1mApplication lifecycle:�[0m
  apps,a        logs      set-env,se
  push,p        ssh       create-app-manifest
  start,st      app
  stop,sp       env,e
  restart,rs    scale
  restage,rg    events

�[38;1mServices integration:�[0m
  marketplace,m        create-user-provided-service,cups
  services,s           update-user-provided-service,uups
  create-service,cs    create-service-key,csk
  update-service       delete-service-key,dsk
  delete-service,ds    service-keys,sk
  service              service-key
  bind-service,bs      bind-route-service,brs
  unbind-service,us    unbind-route-service,urs

�[38;1mRoute and domain management:�[0m
  routes,r        delete-route    create-domain
  domains         map-route
  create-route    unmap-route

�[38;1mSpace management:�[0m
  spaces         create-space    set-space-role
  space-users    delete-space    unset-space-role

�[38;1mOrg management:�[0m
  orgs,o       set-org-role
  org-users    unset-org-role

�[38;1mCLI plugin management:�[0m
  plugins           add-plugin-repo      repo-plugins
  install-plugin    list-plugin-repos

�[38;1mCommands offered by installed plugins:�[0m
  create-autoscale-policy    dev

�[38;1mGlobal options:�[0m
  --help, -h                         Show help
  -v                                 Print API request diagnostics to stdout

'cf help -a' lists all commands with short descriptions. See 'cf help <command>' to read about a specific command.
  • Loading branch information
frodenas committed Nov 9, 2016
1 parent dfe9c25 commit d7d7e26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This exporter can be deployed using the [Prometheus BOSH Release][prometheus-bos
| cf.username<br />CF_EXPORTER_CF_USERNAME | Yes | | Cloud Foundry Username |
| cf.password<br />CF_EXPORTER_CF_PASSWORD | Yes | | Cloud Foundry Password |
| filter.collectors<br />CF_EXPORTER_FILTER_COLLECTORS | No | | Comma separated collectors to filter (`Applications`, `Organizations`, `Services`, `Spaces`) |
| metrics.namespace<br />CF_EXPORTER_METRICS_NAMESPACE | No | cf_exporter | Metrics Namespace |
| metrics.namespace<br />CF_EXPORTER_METRICS_NAMESPACE | No | cf | Metrics Namespace |
| skip-ssl-verify<br />CF_EXPORTER_SKIP_SSL_VERIFY | No | false | Disable SSL Verify |
| web.listen-address<br />CF_EXPORTER_WEB_LISTEN_ADDRESS | No | :9193 | Address to listen on for web interface and telemetry |
| web.telemetry-path<br />CF_EXPORTER_WEB_TELEMETRY_PATH | No | /metrics | Path under which to expose Prometheus metrics |
Expand Down
2 changes: 1 addition & 1 deletion cf_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var (
)

metricsNamespace = flag.String(
"metrics.namespace", "cf_exporter",
"metrics.namespace", "cf",
"Metrics Namespace ($CF_EXPORTER_METRICS_NAMESPACE).",
)

Expand Down

0 comments on commit d7d7e26

Please sign in to comment.