Hi there,
I have Grafana Alloy running on my Linux VM, see here version:
alloy, version v1.11.2 (branch: HEAD, revision: 4a8f93c)
build user: root@31639bb605ab
build date: 2025-10-10T14:11:53Z
go version: go1.24.6
platform: linux/amd64
tags: netgo,builtinassets,promtail_journal_enabled
I want to sent logs to Loki with Faro receiver, but it seems like that the alloy version doesn’t allow it? Is that correct?
This is what I have found:
It does not have Alloy Faro features (logs send / Faro HTTP receiver). The tag promtail_journal_enabled only means it can read from systemd/journal or Promtail, not Faro logging.
curl -X POST http://127.0.0.1:12347/v1/logs gives 404 page not found
Frontend:
The browser sent the logs successfully to the alloy receiver (status 202 accepted)
Loki: The logs are not in the database (queries returned_lines=0).
Thanks for your help!
Here my config.alloy:
faro.receiver “default” {
server {
listen_address = “0.0.0.0”
listen_port = 12347
cors_allowed_origins = [“*”]
}
output {
logs = [loki.write.default.receiver]
}
}
loki.write “default” {
endpoint {
url = “http://10.x.x.x:30577/loki/api/v1/push”
}
}
