Small fixes
A selection of 80 fixes from 174 pull requests.
40.Attribute order
The same metric labels in a different insertion order created a second series. Sort a fresh entries array before building the key.
1123return JSON.stringify(Array.isArray(attributes) ? attributes : Object.entries(attributes))const entries = Array.isArray(attributes) ? [...attributes] : Object.entries(attributes)entries.sort((a, b) => a[0] < b[0] ? -1 : a[0] > b[0] ? 1 : 0)return JSON.stringify(entries)