File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 44
55flagsmith_build_info = prometheus_client .Gauge (
66 "flagsmith_build_info" ,
7- "Flagsmith version and build information" ,
7+ "Flagsmith version and build information. " ,
88 ["ci_commit_sha" , "version" ],
99 multiprocess_mode = "livemax" ,
1010)
Original file line number Diff line number Diff line change 66
77flagsmith_http_server_requests_total = prometheus_client .Counter (
88 "flagsmith_http_server_requests_total" ,
9- "Total number of HTTP requests" ,
9+ "Total number of HTTP requests. " ,
1010 ["route" , "method" , "response_status" ],
1111)
1212flagsmith_http_server_request_duration_seconds = Histogram (
1313 "flagsmith_http_server_request_duration_seconds" ,
14- "HTTP request duration in seconds" ,
14+ "HTTP request duration in seconds. " ,
1515 ["route" , "method" , "response_status" ],
1616)
1717flagsmith_http_server_response_size_bytes = Histogram (
1818 "flagsmith_http_server_response_size_bytes" ,
19- "HTTP response size in bytes" ,
19+ "HTTP response size in bytes. " ,
2020 ["route" , "method" , "response_status" ],
2121 buckets = getattr (
2222 settings ,
Original file line number Diff line number Diff line change 55
66flagsmith_task_processor_enqueued_tasks_total = prometheus_client .Counter (
77 "flagsmith_task_processor_enqueued_tasks_total" ,
8- "Total number of enqueued tasks" ,
8+ "Total number of enqueued tasks. " ,
99 ["task_identifier" ],
1010)
1111
1212if settings .DOCGEN_MODE or settings .TASK_PROCESSOR_MODE :
1313 flagsmith_task_processor_finished_tasks_total = prometheus_client .Counter (
1414 "flagsmith_task_processor_finished_tasks_total" ,
15- "Total number of finished tasks" ,
15+ "Total number of finished tasks. Only collected by Task Processor. `task_type` label is either `recurring` or `standard`. " ,
1616 ["task_identifier" , "task_type" , "result" ],
1717 )
1818 flagsmith_task_processor_task_duration_seconds = Histogram (
1919 "flagsmith_task_processor_task_duration_seconds" ,
20- "Task processor task duration in seconds" ,
20+ "Task processor task duration in seconds. Only collected by Task Processor. `task_type` label is either `recurring` or `standard`. " ,
2121 ["task_identifier" , "task_type" , "result" ],
2222 )
You can’t perform that action at this time.
0 commit comments