Commit 084bc7df authored by Paul Asmuth's avatar Paul Asmuth
Browse files

first finishing touches

parent 399bed20
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -9,6 +9,9 @@ build:
	(cd fnordmetric-webui && make build)
	(cd fnordmetric-core && make build)

install:
	(cd fnordmetric-core && make install)

test:
	(cd fnordmetric-core && make test)

+3 −0
Original line number Diff line number Diff line
@@ -9,6 +9,9 @@ build:
	(cd ../fnordmetric-webui && make)
	(cd build/cmake && make)

install: build
	(cd build/cmake && make install)

devserver: build
	mkdir -p /tmp/fnordmetric-data
	DEV_ASSET_PATH=../ ./build/cmake/target/fnordmetric-server --datadir /tmp/fnordmetric-data --verbose
+2 −0
Original line number Diff line number Diff line
@@ -160,9 +160,11 @@ endif()
# fnordmetric
add_executable(fnordmetric-cli stage/src/fnordmetric/cli.cc)
target_link_libraries(fnordmetric-cli fnord-static)
install(TARGETS fnordmetric-cli DESTINATION bin)

add_executable(fnordmetric-server stage/src/fnordmetric/server.cc)
target_link_libraries(fnordmetric-server fnord-static)
install(TARGETS fnordmetric-server DESTINATION bin)

# libfnord tests
add_executable(tests/test-sql stage/src/fnordmetric/sql/sql_test.cc)
+5 −2
Original line number Diff line number Diff line
@@ -7,13 +7,16 @@ all: assets
	mkdir -p target/tests
	mkdir -p stage/src
	test -e stage/src/fnordmetric || ln -s ../../../../src stage/src/fnordmetric || true
	(cd target && cmake .. && make)
	(cd target && cmake .. -DCMAKE_BUILD_TYPE=Release && make)
	rm -f ../fnordmetric
	rm -f ../libfnordmetric-static.a
	rm -f ../libfnordmetric.dylib
	rm -f ../libfnordmetric.so
	ln -s cmake/target/fnordmetric ../fnordmetric

install:
	(cd target && cmake .. && make install)

assets:
	./assets.sh

@@ -23,4 +26,4 @@ test: all
clean:
	rm -rf target stage

.PHONY: all test clean assets
.PHONY: all test clean assets install
+7 −5
Original line number Diff line number Diff line
@@ -2,15 +2,13 @@
[ doc ]
    - frontapge: gif
    - readme for gh
    - html5 api references
    - frontpage: example query result
    - dashboard api reference
    - FM legt die timestamps der samples _immer_ selbst bei dateneingang fest?
    - pictures in getting started server
    - make all the command in installation work
    - chart 2d/3d signature doc
    - all the doc links
    - page: included agents
    - finish http api 
    - group over doc: GROUP OVER TIMEWINDOW(time_window, step) oder so

[ frontend ]
@@ -25,8 +23,6 @@
[ release ]
    - functions: round, median, percentile
    - svg: escape series names, labels!
    - ruby client
    - javascript client + doc

-----

@@ -36,6 +32,12 @@
    - do I need an external database

[ feature q ]
    - version numbers
    - deb pkg
    - homebrew pkg
    - doc: interactive queries
    - ruby client + doc
    - javascript client + doc
    - make query editor split draggable/resizable
    - functions: delta
    - vertical hover line in chartextensions
Loading