diff --git a/lucene/site/changes/changes2html.pl b/lucene/site/changes/changes2html.pl index 11a0fabd050..5b866fc6fd4 100755 --- a/lucene/site/changes/changes2html.pl +++ b/lucene/site/changes/changes2html.pl @@ -26,7 +26,6 @@ use warnings; my $jira_url_prefix = 'http://issues.apache.org/jira/browse/'; my $github_pull_request_prefix = 'https://github.com/apache/lucene-solr/pull/'; -my $bugzilla_url_prefix = 'http://issues.apache.org/bugzilla/show_bug.cgi?id='; my $month_regex = &setup_month_regex; my %month_nums = &setup_month_nums; my %lucene_bugzilla_jira_map = &setup_lucene_bugzilla_jira_map; @@ -643,6 +642,7 @@ sub markup_trailing_attribution { (?!inverse\ ) (?![Tt]he\ ) (?!use\ the\ bug\ number) + (?!e\.?g\.?\b) [^()"]+?\))\s*$} {\n${extra_newline}$1}x) { # If attribution is not found, then look for attribution with a @@ -668,6 +668,7 @@ sub markup_trailing_attribution { (?!inverse\ ) (?![Tt]he\ ) (?!use\ the\ bug\ number) + (?!e\.?g\.?\b) [^()"]+?\))) ((?:\.|(?i:\.?\s*Issue\s+\d{3,}|LUCENE-\d+)\.?)\s*)$} { diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index cfd7a4c5abd..1f32c24ceef 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -225,15 +225,15 @@ New Features * SOLR-9805: Use metrics-jvm library to instrument jvm internals such as GC, memory usage and others. (shalin) -* SOLR-9812: SOLR-9911, SOLR-9960: Added a new /admin/metrics API to return all metrics collected by Solr via API. +* SOLR-9812, SOLR-9911, SOLR-9960: Added a new /admin/metrics API to return all metrics collected by Solr via API. API supports four optional multi-valued parameters: - * 'group' (all,jvm,jetty,node,core), - * 'type' (all,counter,timer,gauge,histogram), - * 'prefix' that filters the returned metrics, - * 'registry' that selects one or more registries by prefix (eg. solr.jvm,solr.core.collection1) - Example: http://localhost:8983/solr/admin/metrics?group=jvm,jetty&type=counter - Example: http://localhost:8983/solr/admin/metrics?group=jvm&prefix=buffers,os - Example: http://localhost:8983/solr/admin/metrics?registry=solr.node,solr.core&prefix=ADMIN + - 'group' (all,jvm,jetty,node,core), + - 'type' (all,counter,timer,gauge,histogram), + - 'prefix' that filters the returned metrics, + - 'registry' that selects one or more registries by prefix (eg. solr.jvm,solr.core.collection1) + - Example: http://localhost:8983/solr/admin/metrics?group=jvm,jetty&type=counter + - Example: http://localhost:8983/solr/admin/metrics?group=jvm&prefix=buffers,os + - Example: http://localhost:8983/solr/admin/metrics?registry=solr.node,solr.core&prefix=ADMIN (shalin, ab) * SOLR-9884: Add version to segments handler output (Steven Bower via Erick Erickson)