Extended downtime

Servers are still not up after DT? nothing on CCP twitter or forums? ESI server is also down accoriding to eve offline?

edit: of course after writing that it is letting me in now

Don’t get our hopes up like that.

4fzmYi71
Dunno… still offline

Oh. Ok. Need to restart launcher

image

Launcher restart was needed

Use this in PowerShell to check

PS> Invoke-RestMethod https://esi.evetech.net/latest/status/?datasource=tranquility

1 Like

Thanks! I like it.
And for us greybeards:
$ wget -q “https://esi.evetech.net/latest/status/?datasource=tranquility” -O -
{“players”:18600,“server_version”:“2039640”,“start_time”:“2022-05-02T11:11:42Z”}

I guess I could put this in a little loop and collect player counts over the day.

Thanks again.

Consider using curl to query and jq to reshape the output to a table.

PowerShell can run on Linux, if you have .Net SDK on Linux for developing installed chances are you want to have that tool also.

That was Cygwin on Windows. Yeah. I’m that guy.

You can use something like this to have it as a HUD on the desktop on Windows, like Conky on Linux Windows equivalent of Conky - DesktopInfo - polv's coding blog see https://www.glenn.delahoy.com/desktopinfo/

Nice looking coffee cup. I’m a sucker for a nice looking coffee cup. So why doesn’t CCP have a set of nice looking coffee cups for sale?

Nice little app.
Eve not running: 6.6 of 15.8 Gig used memory. CPU less than 5%
Eve Launcher : 6.9 of 15.8 Gig used memory. CPU less than 5%
Eve one acct, burning away from station with mwd on: 9.0 of 15.8 Gig of used memory. CPU 10% +
Eve two acct, burning away from stations with mwd on: 11.0 of 15.8 Gig of used memory. CPU ~15%

But I’m too lazy to visit Jita and really see what’s what.

1 Like

CCP, Take My Money!

I suggest creating a module if you’re using PowerShell for doing things and putting your functions in there and it will autoload them.

PS> $env:PSModulePath

Will show the module path locations (you can use -split “delimiter” to output on individual lines for easier reading

For Linux / BSD

PS> $env:PSModulePath -split ":"

For Windows

PS> $env:PSModulePath -split ";"

Create a folder called something like “EveModule” under the “Modules” folder and create a text file called the same “EveModule.psm1” (psm1 is the module filetype extension) there.

In that file you can add functions such like

function Get-EveStatus(){
  Invoke-RestMethod https://esi.evetech.net/latest/status/?datasource=tranquility
}

You can also pipe that output to other cmdlets if you want more processing.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.