Delete commented out code

main
Max Ignatenko 2024-03-28 18:46:39 +00:00
parent 3da7228f35
commit 337f3ef2b8
1 changed files with 0 additions and 29 deletions

View File

@ -39,25 +39,6 @@ type Config struct {
var config Config var config Config
// todo figure out how to use this shit
// type LangTimestampCollector struct {
// metric *prometheus.Desc
// }
// func (c *LangTimestampCollector) Describe(ch chan<- *prometheus.Desc) {
// ch <- c.metric
// }
// func (c *LangTimestampCollector) Collect(ch chan<- prometheus.Metric) {
// // your logic should be placed here
// t := time.Date(2009, time.November, 10, 23, 0, 0, 12345678, time.UTC)
// s := prometheus.NewMetricWithTimestamp(t, prometheus.MustNewConstMetric(c.metric, prometheus.CounterValue, 123))
// ch <- s
// }
func runMain(ctx context.Context) error { func runMain(ctx context.Context) error {
ctx = setupLogging(ctx) ctx = setupLogging(ctx)
log := zerolog.Ctx(ctx) log := zerolog.Ctx(ctx)
@ -91,16 +72,6 @@ func runMain(ctx context.Context) error {
} }
} }
// collector := &LangTimestampCollector{
// metric: prometheus.NewDesc(
// "indexer_posts_by_language_timestamp_count",
// "Language metric with custom TS",
// nil,
// nil,
// ),
// }
// prometheus.MustRegister(collector)
log.Info().Msgf("Starting HTTP listener on %q...", config.MetricsPort) log.Info().Msgf("Starting HTTP listener on %q...", config.MetricsPort)
http.Handle("/metrics", promhttp.Handler()) http.Handle("/metrics", promhttp.Handler())
srv := &http.Server{Addr: fmt.Sprintf(":%s", config.MetricsPort)} srv := &http.Server{Addr: fmt.Sprintf(":%s", config.MetricsPort)}