Ben Johnson
9ebf0e2119
Upgrade go.mod to featurebase/v3
2022-01-21 10:57:05 -07:00
reesporte
48aef0c8a4
add copyright notice back in
...
```bash
for file in `cat diffys`; do
printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file;
done
```
2021-12-10 11:01:04 -06:00
reesporte
4c53f86e82
removed license from each go file
...
i used this script, a little clunky but it got the job done
```bash
for file in `find . -type f -print | grep '\.go'`; do
sed '1,/^\/\/ limitations under the License.$/d' $file > $file.tmp;
result=`cat $file.tmp`
if [[ result != "" ]]; then
gofmt $file.tmp &> /dev/null;
if [[ $? == 0 ]]; then
mv $file.tmp $file && gofmt -w $file;
else
rm $file.tmp;
fi
else
rm $file.tmp;
fi
done
```
2021-12-10 09:17:17 -06:00
Mahesh Arumugam
858f889745
FeatureBase Renaming: changing go.mod module name for featurebase
2021-07-19 09:20:30 -07:00
Travis
4b494c3ec3
Update metric names to use "featurebase" prefix
...
If the `--future.rename` flag is set (to true), this commit will cause
metric names to be prefixed with "featurebase" instead of "pilosa".
2021-07-12 17:51:59 -05:00
Alan Bernstein
285d0a0af8
Add log prefix levels
2021-04-12 20:33:39 -05:00
Alan Bernstein
a7bfacbee2
Revert "Add tags to MaxRow metric"
...
This reverts commit 6013e7211b3aef93d0880401c8ef74b34a620328.
2020-04-10 20:59:19 -05:00
Alan Bernstein
b37a0addb3
Add tags to MaxRow metric
2020-04-10 20:59:19 -05:00
Alan Bernstein
b1838159f2
Minor fixes
2020-04-10 20:59:19 -05:00
Alan Bernstein
389acfc8ed
Fix minor issues with metric labels and tests
2020-04-10 20:59:18 -05:00
Alan Bernstein
c2c0a5c32f
Address review feedback
2020-04-10 20:59:18 -05:00
Alan Bernstein
8c9db373d0
Fix some metrics names
2020-04-10 20:59:18 -05:00
Alan Bernstein
34c6d42063
Fix broken metrics label and log when others are encountered
2020-04-10 20:59:17 -05:00
Alan Bernstein
dad4ccf103
Propagate namespace to tags client
2020-04-02 19:29:46 -05:00
Alan Bernstein
110d2b6024
Restore lost comment
2020-04-02 19:07:43 -05:00
Alan Bernstein
f15d031c55
Add options to prometheus client to support setting namespace
2020-04-02 19:05:55 -05:00
Ben Johnson
c7c9c1e1d7
v2.0.0
...
Co-authored-by: Cody Soyland <codysoyland@gmail.com>
2019-10-08 14:56:17 -06:00
Cody Soyland
430becdd3f
Add tests for prometheus stats client
2019-06-07 09:58:40 -05:00
Cody Soyland
04b5d4b79b
Use seconds, not milliseconds for timings
2019-06-07 09:13:38 -05:00
Cody Soyland
2d6e948c83
Return after errors
2019-06-07 09:13:37 -05:00
Cody Soyland
2de8060f2c
Use prometheus-compatible metric naming
2019-06-05 21:23:11 -05:00
Cody Soyland
d3db48a1fd
Add missing fields
2019-06-05 21:23:11 -05:00
Cody Soyland
68e89c63f8
Implement prometheus timing
2019-06-05 21:23:11 -05:00
Cody Soyland
c5ce27d7ef
Implement histogram/observer/summary stats
2019-06-05 21:23:11 -05:00
Cody Soyland
dfc7cfa4aa
Fix linter errors and add gauge support to prometheus
2019-06-05 21:23:11 -05:00
Cody Soyland
4c7aa4af81
Add Prometheus stats client with Count support
2019-06-05 21:23:11 -05:00