// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// serverCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
serverCmd.Flags().StringVar(&listeningAddress,"web.listen-address",":9253","Address on which to expose metrics and web interface.")
serverCmd.Flags().StringVar(&metricsEndpoint,"web.telemetry-path","/metrics","Path under which to expose metrics.")
serverCmd.Flags().StringSliceVar(&scrapeURIs,"phpfpm.scrape-uri",[]string{"tcp://127.0.0.1:9000/status"},"FastCGI address, e.g. unix:///tmp/php.sock;/status or tcp://127.0.0.1:9000/status")
serverCmd.Flags().StringSliceVar(&customLabelNames,"phpfpm.label-name",[]string{},"Name of the custom label that will be inserted.")
serverCmd.Flags().StringSliceVar(&customLabelValues,"phpfpm.label-value",[]string{},"Value of the custom label that will be inserted.")