Merge pull request #519 from influxdata/add-licenses-depends

Add license of dependencies.
pull/10616/head
Chris Goller 2016-11-14 11:06:22 -06:00 committed by GitHub
commit ed06312e22
4 changed files with 1083 additions and 2 deletions

View File

@ -6,5 +6,7 @@ RUN apk add --update ca-certificates && \
ADD chronograf /usr/bin/chronograf
ADD canned/*.json /usr/share/chronograf/canned/
ADD LICENSE /usr/share/chronograf/LICENSE
ADD agpl-3.0.md /usr/share/chronograf/agpl-3.0.md
CMD ["/usr/bin/chronograf", "-b", "/var/lib/chronograf/chronograf-v1.db", "-c", "/usr/share/chronograf/canned"]

1075
LICENSE_OF_DEPENDENCIES.md Normal file

File diff suppressed because it is too large Load Diff

View File

@ -40,7 +40,7 @@ cat > $APP_FILE << EOF
{
"id": "$UUID",
"measurement": "$measurement",
"app": "User Facing Application Name",
"app": "$measurement",
"cells": [{
"x": 0,
"y": 0,
@ -49,7 +49,7 @@ cat > $APP_FILE << EOF
"i": "$CELLID",
"name": "User facing cell Name",
"queries": [{
"query": "select used_percent from disk",
"query": "select mean(\"used_percent from\") from disk",
"db": "telegraf",
"rp": "",
"groupbys": [],

4
etc/licenses.sh Normal file
View File

@ -0,0 +1,4 @@
#!/bin/sh
for a in `gdl -no-vendored -test -repo ./... | awk 'NR>1 {print $5}'`; do echo \[\]\($a/blob/master/\) ; done
nlf -c |awk -F, '{printf "%s %s \[%s\]\(%s\)\n", $1, $2, $5, $4}'