You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,12 @@ NBomberRunner
107
107
108
108
For more code samples and examples, please refer to the [samples](samples) directory.
109
109
110
+
## Known Issues & Limitations
111
+
112
+
When using Rider and want or any other ide and try to start with a "green play button" it will not work when using `LoadInfraConfig`, please create Program.cs with Main method and run from terminal using `dotnet run`
113
+
114
+
The export interval is currently fixed to the OtelExporter default of `60` seconds and cannot be changed via configuration (the only thing that can be changed is the reporting interval in NBomber using `WithReportingInterval` which is independent from the export interval)
115
+
110
116
## Contributing
111
117
112
118
Contributions are welcome! If you find a bug or want to add a new feature, please open an issue or submit a pull request. Happy coding! 🎉
internalstaticreadonlySynchronousGauge<int>NodeCount=new(Meter,"cluster.node_count",description:"Number of nodes involved in the test run");
16
-
internalstaticreadonlySynchronousGauge<int>CpuCount=new(Meter,"cluster.node_cpu_count",description:"Number of CPU cores involved in the test run");
19
+
internalstaticreadonlySynchronousGauge<int>NodeCount=new(Meter,PrefixMetric("cluster.node_count"),description:"Number of nodes involved in the test run");
20
+
internalstaticreadonlySynchronousGauge<int>CpuCount=new(Meter,PrefixMetric("cluster.node_cpu_count"),description:"Number of CPU cores involved in the test run");
17
21
18
-
internalstaticreadonlyHistogram<double>SuccessfulRequestLatency=Meter.CreateHistogram<double>("ok.request.latency",description:"Latency for successful requests",unit:"ms");
19
-
internalstaticreadonlyHistogram<double>FailedRequestLatency=Meter.CreateHistogram<double>("fail.request.latency",description:"Latency for failed requests",unit:"ms");
22
+
internalstaticreadonlyHistogram<double>SuccessfulRequestLatency=Meter.CreateHistogram<double>(PrefixMetric("ok.request.latency"),description:"Latency for successful requests",unit:"ms");
23
+
internalstaticreadonlyHistogram<double>FailedRequestLatency=Meter.CreateHistogram<double>(PrefixMetric("fail.request.latency"),description:"Latency for failed requests",unit:"ms");
0 commit comments