Increment exported vars for every language in a post

main
Max Ignatenko 2024-02-23 11:12:39 +00:00
parent 297e9e0347
commit 0f191b2609
1 changed files with 2 additions and 4 deletions

View File

@ -320,12 +320,10 @@ func (c *Consumer) processMessage(ctx context.Context, typ string, r io.Reader,
}
langs, _, err := repo.GetLang(ctx, v)
if err == nil {
lang := ""
if len(langs) != 0 {
lang = langs[0]
}
for _, lang := range langs {
postsByLanguageIndexed.WithLabelValues(c.remote.Host, lang).Inc()
}
}
recs = append(recs, repo.Record{
Repo: models.ID(repoInfo.ID),
Collection: parts[0],