Can't see the Writing Data Statistics
See original GitHub issueCan’t see the Writing Data Statistics as timeseries even after setting enable_stat_monitor
as true
in iotdb-engine.properties
Steps to reproduce the behavior:
- Create the following Dockerfile (make sure to set
enable_stat_monitor
astrue
iniotdb-engine.properties
):
FROM apache/iotdb:0.11.0
COPY iotdb-engine.properties /iotdb/conf/
ENTRYPOINT ["/iotdb/sbin/start-server.sh"]
- Build the
Dockerfile
and run it.
docker build -t iotdb .
docker run -d -p 0.0.0.0:6667:6667 -p 0.0.0.0:31999:31999 -p 0.0.0.0:8181:8181 --name custom-iotdb iotdb
- Go to the IoTDB CLI inside the container.
docker exec -it custom-iotdb /bin/bash
start-cli.sh
- Run a few commands to populate two timeseries with data:
set storage group to root.ln
create timeseries root.ln.wf02.wt02.status with datatype=BOOLEAN,encoding=RLE
create timeseries root.ln.wf02.wt02.temperature with datatype=FLOAT,encoding=RLE
insert into root.ln.wf02.wt02(time,temperature,status) values(2017-11-01T16:37:50.000,30.34,true)
insert into root.ln.wf02.wt02(time,temperature,status) values(2017-11-01T17:00:50.000,20.34,false)
- Run
SHOW TIMESERIES
Expected behavior
I was expecting to see the root.stats.write.global.TOTAL_POINTS
and root.stats.write.root_ln.TOTAL_POINTS
timeseries (as indicated in the Monitor and Log Tools page) but the only new timeseries I see are root.stats.file_size.WAL
and root.stats.file_size.SYS
.
- OS: Windows but using Docker
- Version 0.11.0
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Statistics - UNC Writing Center
Many writers lack a firm grasp of the statistics they are using. The average reader does not know how to properly evaluate and...
Read more >Science Forum: Ten common statistical mistakes to watch out ...
Science Forum: Ten common statistical mistakes to watch out for when writing or reviewing a manuscript | eLife.
Read more >Statistics and Visuals - Purdue OWL
Don't be afraid to use graphics. Statistics can contain a lot of information. Visuals can display a lot of information in a manner...
Read more >Issues with data and analyses: Errors, underlying themes, and ...
In this work, we first discuss the importance of focusing on statistical and data errors to continually improve the practice of science.
Read more >Get your document's readability and level statistics
See the reading level and readability scores for documents according to the Flesch-Kincaid Grade Level and Flesch Reading Ease tests.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ah, got it! I will try the version in master later today and I will let you know if these are available there.
Hi, actually the version 0.11.1 you tried still does not support the monitor feature… The next 0.11.x will be the bug-fixed version of 0.11.1, we are not going to put new features in that version.
If you’d like to try, you can try to build the master branch as I said before. And I can tell that the 0.12 is coming soon, maybe next month. 😀