Basically i was trying to create metrics from raw logs of nginx sent through promtail with below config.
server:
http_listen_port: 9080
grpc_listen_port: 0
scrape_configs:
- job_name: nginx_jlog
static_configs:- targets:
- localhost
labels:
job: onion-nginx
mylabel: nginx-jdev
path: /var/log/nginx/access.log
- localhost
- targets:
i am able to execute below querry but result is not as expected.
sum by (statuscode) (count_over_time({filename="/var/log/nginx/access.log"} |~ “HTTP/1.1” (?P\d{3}) "[$__interval]))
it gives me over all count but its not giving able to sum by status code.
Any help on this would be much appreciated!