Discussion DSL Metrics
See original GitHub issueIn https://github.com/cdsap/Talaiot/pull/167 @MyDogTom commented:
Customising which metrics are executed might be very confusing. For example, the following
talaiot { metrics { customMetrics(new MyMetric()) } }
will disable all metrics and use only MyMetric, because standard set of metrics is used only when there is no custom configuration. This might be not what people expect and not useful if I just want to add something on top of the standard configuration. Similar issue with the following configuration
talaiot { metrics { gitMetrics() } }
From the DSL it’s not obvious what is actually happening.
It’s a very valid point. This issue is to discuss how we can offer a better approach for customizing metrics
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Which DSL metric to monitor? :: Technical Issues
I'm planning on collecting the data using the SNMP ADSL-MIB (which is the same MIB used for VDSL2) At the moment my options...
Read more >Metrics helpful in assessing Internet Quality
This paper presents some Internet quality metrics that have proven to work well in real-world deployments and proposes additional metrics to further refine ......
Read more >DSL Quality Suite - Broadband Forum
The DQS scope mainly takes into account ADSL, ADSL2, ADSL2plus and VDSL2 technologies and focuses on DSL parameters and metrics to guarantee and ......
Read more >Measuring Fixed Broadband - Eleventh Report
DSL broadband ISPs, however, continue to advertise “up-to” speeds that, ... The metrics discussed in this Report are derived from active ...
Read more >Metric computation for multiple backends - Microsoft Research
In our DSL, metrics are defined at levels. These levels are just columns in the data whose values can be used as units...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I propose the following DSL
Like that built-in metrics are disabled only when it’s explicitly specified. I believe this should eliminate possibility for confusion while keeping the same flexibility level.
yep, you’re right. I merged the PR.