Skip to content

Commit

Permalink
CLOUDTECH-55
Browse files Browse the repository at this point in the history
  • Loading branch information
MsNatali committed Oct 17, 2024
1 parent b8b479a commit 9cb0b10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ return [
],
'http_requests_stats_groups' => [
'<stats-group-name>' => [
// don't use type 'summary', if your app is running in multiple containers, such as in k8s
// If your app runs in multiple containers and each of them is responsible for its own metrics,
// then you don't need to use the "summary"
'type' => 'summary',
'route_names' => ['*'], // or use prefix, like ['catalog.*', 'profile.favorites'],
'time_window' => 30,
'quantiles' => [0.5, 0.75, ,0.95],
],
'<stats-group-name>' => [
// In k8s we recommended this setting
'type' => 'histogram',
'route_names' => ['*'], // or use prefix, like ['catalog.*', 'profile.favorites'],
'buckets' => [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10],
Expand Down

0 comments on commit 9cb0b10

Please sign in to comment.