Page 1 of 1

Log file into dashticz

Posted: Sunday 17 February 2019 17:36
by poudenes
Hi all,

Is it possible to create a extra screen and tail domoticz.log -f into a iframe of something with a refresh or realtime?
I want check sometimes the log to see for some errors, but don't want open de browser all the time, but lazy swipe tablet on the wall..

Cheers
Peter

Re: Log file into dashticz

Posted: Sunday 17 February 2019 22:12
by Lokonli
poudenes wrote: Sunday 17 February 2019 17:36 Hi all,

Is it possible to create a extra screen and tail domoticz.log -f into a iframe of something with a refresh or realtime?
I want check sometimes the log to see for some errors, but don't want open de browser all the time, but lazy swipe tablet on the wall..

Cheers
Peter
'log' already is defined as custom block.
Use it like:

Code: Select all

columns[5]['blocks'] = [
  'log'
]
Is that what you are looking for?

Re: Log file into dashticz

Posted: Monday 18 February 2019 5:10
by poudenes
yes :) now search for the height setting to get it full screen

Re: Log file into dashticz

Posted: Monday 18 February 2019 20:48
by Lokonli
poudenes wrote: Monday 18 February 2019 5:10 yes :) now search for the height setting to get it full screen
Add the following to custom/custom.css:

Code: Select all

.containslog .items {
	height: 554px;
}
(or any other value for 554)

Re: Log file into dashticz

Posted: Monday 18 February 2019 21:29
by poudenes
Thanks!!


Verzonden vanaf mijn iPhone met Tapatalk Pro

Re: Log file into dashticz

Posted: Thursday 26 May 2022 17:40
by usky73
I am looking the same feature but I am facing issue for the height, it seems not working.

I have added this line :

Code: Select all

.containslog .items {
        height: 1000px;
        background: black;
}
Background becomes black but no height updae.
What's wrong ?

Re: Log file into dashticz

Posted: Monday 13 June 2022 19:45
by usky73
any answer ?

Re: Log file into dashticz

Posted: Sunday 19 June 2022 14:31
by Lokonli
usky73 wrote: Monday 13 June 2022 19:45any answer ?
Try:

Code: Select all

.containslog {
    height: 1000px
}